/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0b1d33;
  color: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  font-style: normal;
  color: inherit;
}
/* ================= CONTAINERS ================= */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 40px auto;
}

/* ================= HEADER ================= */
.header {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2000;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.logo span {
  color: #5aa8ff;
}

/* NAV */
.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  color: #dfe9ff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav a:hover {
  color: #6ab3ff;
}

/* ================= BURGER ================= */
.menu-btn {
  display: none;
  cursor: pointer;
  z-index: 3000;
}

.menu-btn div {
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 3px;
  transition: 0.3s ease;
}

.menu-btn.active div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-btn.active div:nth-child(2) {
  opacity: 0;
}
.menu-btn.active div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #0d1b2a;
  padding-top: 80px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: 0.4s ease;
  z-index: 2500;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.mobile-menu.open {
  right: 0;
}

/* ================= HERO ================= */
.hero {
  width: 100%;
  border-radius: 28px;
  padding: 120px 50px;
  background: linear-gradient(145deg, #0a2a65, #164fb1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.92;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  background: #fff;
  color: #0a2a65;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
}

.btn:hover {
  background: #e5e5e5;
}

/* ================= FEATURE CARDS ================= */
.features {
  margin-top: 70px;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  color: #0b1d33;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.icon {
  color: #1e4dd8;
  margin-bottom: 15px;
  font-size: 50px;
}

/* ================= CATEGORIES ================= */
.categories h2 {
  font-size: 36px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.cat-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 25px;
  color: #0b1d33;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.cat-card:hover {
  transform: translateY(-6px);
}

.cat-card .icon {
  color: #0b1d33;
}

/* ================= PRODUCTS ================= */
.products h2 {
  text-align: center;
  font-size: 34px;
  margin-top: 80px;
  margin-bottom: 25px;
}

.product-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 25px;
  color: #0b1d33;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* ================= ABOUT SERVICE ================= */
.about-service {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.as-text {
  width: 50%;
}

.as-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.as-text p {
  font-size: 17px;
  margin-bottom: 20px;
}

.icon-service {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #0b1d33;
}

/* ================= CONTACT ================= */
.contact-box {
  margin-top: 80px;
  background: #ffffff;
  color: #0b1d33;
  padding: 40px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ================= FOOTER ================= */
footer {
  margin-top: 80px;
  padding: 30px 0;
  text-align: center;
  opacity: 0.5;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #6ab3ff;
  text-decoration: none;
  margin: 0 10px;
}

/* ================= COOKIE ================= */
#cookie-banner {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 18px;
  z-index: 3000;
}

.cookie-box {
  background: #fff;
  color: #0b1d33;
  padding: 20px;
  border-radius: 14px;
  max-width: 320px;
}
/* ================= PAGE LAYOUT ================= */

.page {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.page h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.page p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ================= SUB HERO (PAGE HEADER) ================= */

.sub-hero {
  text-align: center;
  padding: 80px 20px;
  margin-top: 30px;
}

.sub-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 800;
}

.sub-hero p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ================= ABOUT MISSION ================= */

.about-mission {
  margin-top: 60px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.icon-list {
  margin-top: 20px;
  list-style: none;
}

.icon-list li {
  font-size: 17px;
  margin-bottom: 12px;
}

.icon-list li i {
  color: #5aa8ff;
  margin-right: 10px;
}

/* ================= MISSION IMG ================= */

.mission-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ================= VALUES SECTION ================= */

.about-values {
  margin-top: 80px;
  text-align: center;
}

.about-values h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.about-values .grid-3 {
  gap: 25px;
}

.about-values .card {
  padding: 35px;
}

/* ================= GALLERY ================= */

.about-gallery {
  margin-top: 80px;
  text-align: center;
}

.about-gallery h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.gallery-desc {
  opacity: 0.8;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ================= CTA ================= */

.cta-offer {
  margin: 100px auto;
  text-align: center;
  max-width: 700px;
}

.cta-offer h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.cta-offer p {
  opacity: 0.9;
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page h1 {
    font-size: 32px;
  }

  .sub-hero h1 {
    font-size: 34px;
  }

  .cta-offer h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.offer-info {
  margin: 40px auto;
}

/* ================= CONTACT PAGE IMPROVED ================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;

  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-align: left;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.contact-card p {
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.5;
}

/* FORM SECTION */
.contact-form-section {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* FORM ELEMENTS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  opacity: 0.9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: #fff;
  font-size: 16px;
  color: #0b1d33;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: #ffffff;
  color: #0b1d33;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #e3e3e3;
}

/* MAP */
.map-section {
  margin-top: 80px;
}

.map-box img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* MOBILE FIXES */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 25px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .about-service {
    flex-direction: column;
    text-align: center;
  }

  .contact-box {
    flex-direction: column;
  }
}
