@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0f2744;
  --teal: #1a6b72;
  --teal-light: #2a8f99;
  --cream: #f8f4ef;
  --warm-white: #fdfbf8;
  --gold: #c9a84c;
  --text: #1c1c1c;
  --muted: #626975;
  --border: #e8e0d5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,251,248,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px; display: flex; align-items: center; justify-content: space-between;
  height: 72px; transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(15,39,68,0.08); }
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.nav-logo-text span { font-size: 0.82rem; font-weight: 400; color: var(--muted); }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.84rem; font-weight: 500; color: var(--navy); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: white !important; padding: 9px 20px; border-radius: 4px; font-size: 0.81rem !important; font-weight: 600 !important; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 24px 32px; z-index: 99; flex-direction: column; gap: 16px; box-shadow: 0 12px 32px rgba(15,39,68,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--navy); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 140px 80px 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 50%, rgba(26,107,114,0.25) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(201,168,76,0.1) 0%, transparent 40%); }
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero .section-tag { color: #6dd8e0; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 400; color: white; line-height: 1.1; margin-top: 12px; }
.page-hero h1 em { font-style: italic; color: #6dd8e0; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-top: 16px; font-weight: 300; max-width: 520px; }

/* TYPOGRAPHY UTILS */
.section-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--navy); line-height: 1.15; }
.section-title em { font-style: italic; color: var(--teal); }

/* BUTTONS */
.btn-primary { background: var(--teal); color: white; padding: 13px 30px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.25s; border: 2px solid var(--teal); display: inline-block; }
.btn-primary:hover { background: transparent; color: var(--teal); }
.btn-navy { background: var(--navy); color: white; padding: 13px 30px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.25s; border: 2px solid var(--navy); display: inline-block; }
.btn-navy:hover { background: transparent; color: var(--navy); }

/* CTA BANNER */
.cta-banner { padding: 72px 80px; background: var(--teal); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: white; line-height: 1.2; }
.cta-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 300; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white { background: white; color: var(--teal); padding: 13px 32px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.25s; white-space: nowrap; }
.btn-white:hover { background: var(--navy); color: white; }
.btn-outline-white { background: transparent; color: white; padding: 13px 32px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; border: 2px solid rgba(255,255,255,0.5); transition: all 0.25s; white-space: nowrap; }
.btn-outline-white:hover { border-color: white; }

/* FOOTER */
footer { background: var(--navy); padding: 64px 80px 40px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 14px; }
.footer-desc { font-size: 0.84rem; line-height: 1.7; }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-contact a:hover { color: white; }
.footer-col h4 { color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.84rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease both; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .page-hero { padding: 120px 40px 64px; }
  .cta-banner { padding: 60px 40px; }
  footer { padding: 56px 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 110px 24px 56px; }
  .cta-banner { padding: 52px 24px; flex-direction: column; }
  footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Footer Social Icons */
.footer-social { display:flex; gap:12px; align-items:center; }
.social-icon { color:rgba(255,255,255,0.45); transition:color 0.2s; display:flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); }
.social-icon:hover { color:white; border-color:rgba(255,255,255,0.4); }

/* ── FLOATING CONTACT BUTTONS ── */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(15,39,68,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(15,39,68,0.3); }
.float-btn-call { background: var(--navy); color: white; }
.float-btn-text { background: var(--teal); color: white; }
.float-btn svg { flex-shrink: 0; }
@media(max-width:640px) {
  .float-contact { bottom: 16px; right: 16px; gap: 8px; }
  .float-btn { padding: 11px 16px; font-size: 0.82rem; }
}

/* Footer Cities */
.footer-cities { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; margin-bottom: 24px; }
.footer-cities-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.footer-cities-list { display: flex; flex-wrap: wrap; gap: 6px 0; }
.footer-cities-list a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; padding-right: 10px; }
.footer-cities-list a::after { content: "·"; margin-left: 10px; color: rgba(255,255,255,0.15); }
.footer-cities-list a:last-child::after { display: none; }
.footer-cities-list a:hover { color: rgba(255,255,255,0.7); }

/* ── DROPDOWN NAV (global) ─────────────────────────────────── */
.has-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(15,39,68,0.14);
  padding: 20px 24px 24px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(3,200px);
  gap: 0 24px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility 0s linear .25s;
  min-width: 660px;
  margin-top: 0;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s, transform .2s, visibility 0s;
}
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
  background: transparent;
}
.dropdown-menu::before {
  content:'';
  position:absolute;
  top:-7px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:13px; height:13px;
  background:white;
  border-left:1px solid var(--border);
  border-top:1px solid var(--border);
}
.dropdown-col { display:flex; flex-direction:column; gap:2px; }
.dropdown-col + .dropdown-col { border-left: 1px solid var(--border); padding-left: 24px; }
.dropdown-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.dropdown-menu a {
  font-size: 0.83rem;
  color: var(--navy) !important;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 5px;
  transition: all .13s;
  font-weight: 400 !important;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--teal) !important; }
.dropdown-see-all {
  margin-top: 6px !important;
  font-size: 0.78rem !important;
  color: var(--teal) !important;
  font-weight: 600 !important;
  border-top: 1px solid var(--border);
  padding-top: 8px !important;
}
@media(max-width:640px){
  .dropdown-menu { display:none !important; }
}
