/* =========================
   LOGO-BASED THEME COLORS
   Extracted from your logo:
   Gold tones + deep navy/blue-gray
========================= */
:root{
  --gold: #e3c349;        /* (227,195,73) */
  --gold-2: #d3b33d;      /* (211,179,61) */
  --gold-dark: #bc9c26;   /* (188,156,38) */

  --navy: #213343;        /* (33,51,67) */
  --navy-2: #2e3e4b;      /* (46,62,75) */
  --slate: #455662;       /* (69,86,98) */

  --white: #ffffff;
  --bg: #f4f6f9;

  --shadow: 0 10px 25px rgba(0,0,0,.12);
  --radius: 16px;
}

/* ===== Reset ===== */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin: 0 auto; }

/* ===== Header ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  border-bottom: 2px solid rgba(227,195,73,.25);
  padding: 12px 4%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand-logo{ width:52px; height:52px; object-fit:contain; }
.brand-name{ color: var(--white); font-weight:800; letter-spacing:.3px; }
.brand-tagline{ color: rgba(255,255,255,.75); font-size: 12px; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav-link{
  color: var(--white);
  padding: 10px 8px;
  font-weight: 600;
  opacity: .95;
}
.nav-link:hover{ color: var(--gold); }

/* Mobile toggle */
.nav-toggle{
  display:none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 10px;
  cursor:pointer;
}

/* ===== Dropdown (fixed so it doesn't disappear) ===== */
.nav-dropdown{ position: relative; }

.dropdown-btn{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 2000;
}

/* Invisible buffer to prevent hover gap */
.dropdown-menu::before{
  content:"";
  position:absolute;
  top:-12px;
  left:0;
  right:0;
  height:12px;
}

.dropdown-item{
  display:block;
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 700;
}
.dropdown-item:hover{
  background: rgba(227,195,73,.18);
}

/* Desktop hover behavior */
@media (min-width: 901px){
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu{
    display:block;
  }
}

/* ===== Hero ===== */
.hero{
  background:
    linear-gradient(rgba(33,51,67,.78), rgba(33,51,67,.78)),
    url("c1.jpg") center/cover no-repeat;
  color: var(--white);
  position: relative;
  padding: 80px 0 0;
}

.hero-inner{
  width:min(1100px, 92%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  padding-bottom: 80px;
  align-items: center;
}

.hero-title{
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero-title span{ color: var(--gold); }
.hero-subtitle{
  max-width: 60ch;
  color: rgba(255,255,255,.85);
}

.hero-actions{ display:flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.hero-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(227,195,73,.28);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(6px);
}
.hero-card-title{ font-weight: 900; margin-bottom: 10px; color: var(--gold); }
.hero-list{ padding-left: 18px; color: rgba(255,255,255,.9); }
.hero-list li{ margin: 6px 0; }

/* ===== Buttons ===== */
.btn{
  display:inline-block;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: .2s;
  border: 2px solid transparent;
}
.btn-primary{
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: var(--navy);
}
.btn-primary:hover{ transform: translateY(-1px); filter: brightness(.98); }

.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold); }

.small-btn{ padding: 10px 14px; font-size: 14px; }

/* ===== Waves ===== */
.wave{
  height: 80px;
  width: 100%;
  clip-path: ellipse(70% 100% at 50% 0%);
}
.wave-gold{ background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.wave-navy{ background: linear-gradient(90deg, var(--navy), var(--navy-2)); }

/* ===== Sections ===== */
.section{ padding: 70px 0; position: relative; background: var(--white); }
.section-alt{ background: #eef2f6; }

.section-title{
  font-size: 34px;
  text-align:center;
  margin-bottom: 8px;
  color: var(--navy);
}
.section-title.left{ text-align:left; }
.section-subtitle{
  text-align:center;
  color: rgba(33,51,67,.75);
  margin-bottom: 30px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card{
  background: var(--white);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  border: 1px solid rgba(33,51,67,.08);
  transition: .2s;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,.12); }
.card-img{ width:100%; height: 200px; object-fit: cover; }
.card-body{ padding: 16px; }
.card-title{ font-size: 18px; font-weight: 900; margin-bottom: 6px; }
.card-text{ color: rgba(33,51,67,.78); margin-bottom: 12px; }
.card-meta{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 10px; border-top: 1px solid rgba(33,51,67,.08);
}
.price{ font-weight: 900; color: var(--gold-dark); }
.small{ font-size: 12px; color: rgba(33,51,67,.65); }

/* ===== About ===== */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}
.about-copy p{ margin: 10px 0; color: rgba(33,51,67,.85); }

.about-badges{
  display:flex; gap: 10px; flex-wrap: wrap;
  margin-top: 14px;
}
.badge{
  background: rgba(227,195,73,.22);
  border: 1px solid rgba(188,156,38,.35);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.media-box{
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
  padding: 18px;
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(227,195,73,.25);
}
.media-title{ font-weight: 900; color: var(--gold); margin-bottom: 6px; }
.media-text{ color: rgba(255,255,255,.85); margin-bottom: 14px; }

/* ===== CTA ===== */
.cta{
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 55px 0;
}
.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta h2{ font-size: 34px; }
.cta p{ color: rgba(255,255,255,.85); max-width: 60ch; }
.cta-actions{ display:flex; gap: 12px; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer{
  background: #0f1d29;
  color: rgba(255,255,255,.88);
  padding: 24px 0 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
.footer-left{ display:flex; align-items:center; gap: 12px; }
.footer-logo{ width:44px; height:44px; object-fit:contain; }
.footer-title{ font-weight: 900; color: var(--white); }
.footer-sub{ font-size: 12px; color: rgba(255,255,255,.7); }

.footer-links{ display:flex; gap: 14px; flex-wrap: wrap; }
.footer-links a:hover{ color: var(--gold); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
  text-align:center;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .nav-toggle{ display:block; }
  .nav{
    display:none;
    position:absolute;
    top: 70px;
    right: 4%;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    border: 1px solid rgba(227,195,73,.22);
    border-radius: 14px;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    width: min(320px, 92vw);
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }

  .nav-link{ width:100%; border-radius: 12px; }
  .nav-link:hover{ background: rgba(255,255,255,.06); }

  .hero-inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
}
