/* --- BRAND VARIABLES --- */
:root {
  --navy: #162867;
  --gold: #c5a358;
  --gold-light: #e0ca96;
  --white: #ffffff;
  --bg-light: #f9f9f7;
  --text-main: #2a2c33;
  --text-muted: #666a75;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --nav-height: 90px;
}

/* --- BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

i { font-style: italic; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 25px;
}

.section-padding {
  padding: 100px 0;
}

/* --- REUSABLE ELEMENTS --- */
.section-tag {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 15px;
}
.section-tag.gold { color: var(--gold); }
.section-tag.navy { color: var(--navy); }
.section-tag.white { color: rgba(255, 255, 255, 0.7); }

.btn {
  padding: 16px 32px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(22, 40, 103, 0.15);
}

.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--gold); }

.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 12px;
  border: 1px solid var(--gold);
  color: var(--navy);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  height: 75px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo img {
  display: block;
  max-height: 50px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-item {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item:hover { color: var(--gold); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: var(--navy);
  margin: 3px 0;
  transition: 0.4s;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  background-color: var(--white);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 68px);
  margin-bottom: 25px;
  color: var(--navy);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-image-container {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: flex-end;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

/* --- ABOUT --- */
.bg-light { background: var(--bg-light); }

.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 25px;
  color: var(--navy);
}

.lead {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 500;
}

.feature-small {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.f-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.f-item i { margin-right: 8px; }

.image-reveal-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 20px 20px 0px var(--gold);
}

/* --- SERVICES --- */
.center {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  padding: 45px 30px;
  background: var(--white);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.card-icon {
  font-size: 35px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* --- CTA SECTION --- */
.conclusion-cta {
  background: var(--navy);
  color: var(--white);
}

.cta-box {
  border: 1px solid rgba(197, 163, 88, 0.2);
  padding: 80px 40px;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 25px;
}

.cta-content p {
  max-width: 750px;
  margin: 0 auto 30px;
  opacity: 0.85;
}

.promise {
  font-style: italic;
  font-family: "Playfair Display";
  font-size: 20px;
  color: var(--gold-light);
  margin-top: 40px !important;
}

/* --- CONTACT --- */
.contact-wrapper {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-info-panel {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  padding: 60px;
}

.contact-form-panel {
  flex: 1.4;
  background: var(--white);
  padding: 60px;
}

.info-link { margin-top: 35px; }

.info-link p {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.info-link a {
  font-size: 20px;
  font-family: "Playfair Display";
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #fafafa;
  transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

.full-width { width: 100%; }

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  color: white;
  padding: 70px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.6;
}

.legal-links {
  display: flex;
  gap: 25px;
}

/* --- UTILS --- */
.mobile-only { display: none; }
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 100;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-grid { gap: 20px; }
  .about-flex { gap: 40px; }
}

@media (max-width: 991px) {
  .navbar { background: #fff; height: 75px; }
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  
  .menu-toggle { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: 0.5s ease-in-out;
    z-index: 1000;
  }
  
  .nav-links.active { left: 0; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 50px;
  }
  
  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-image-container {
    order: 1;
    height: 40vh;
    justify-content: center;
  }
  
  .hero-image-container img { object-position: center; }
  
  .hero-btns { justify-content: center; }
  
  .about-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-text { order: 1; }
  .about-image { order: 2; max-width: 500px; margin: 0 auto; }
  .feature-small { justify-content: center; }

  .contact-wrapper { flex-direction: column; }
  .contact-info-panel, .contact-form-panel { padding: 40px 25px; }
}

@media (max-width: 600px) {
  .section-padding { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
}

/* Menu Animation Classes */
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }