/* =============================================
   MANGROVE LAKEMOUNT KAYAK — styles.css
   Brand Colors:
     Navy:       #0d2137
     Dark Navy:  #1a3a5c
     Green:      #2e7d46
     Light Green:#4caf50
     Sky Blue:   #4fc3f7
     Water Blue: #1e88e5
     Cream BG:   #f0f7f4
     White:      #ffffff
============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0d2137;
  --dark-navy:   #1a3a5c;
  --green:       #2e7d46;
  --green-light: #4caf50;
  --blue:        #1e88e5;
  --sky:         #4fc3f7;
  --cream:       #f0f7f4;
  --cream-dark:  #e1f0e8;
  --white:       #ffffff;
  --text-dark:   #0d2137;
  --text-mid:    #3a5a4a;
  --text-light:  #6b8f7a;
  --shadow-sm:   0 2px 12px rgba(13,33,55,.08);
  --shadow-md:   0 6px 30px rgba(13,33,55,.13);
  --shadow-lg:   0 16px 50px rgba(13,33,55,.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
  --font-body:   'Outfit', sans-serif;
  --font-display:'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.is-hidden { display: none !important; }
.text-green { color: var(--green-light); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46,125,70,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,125,70,.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-outline-green {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* =============================================
   SECTION HEADERS
============================================= */
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--sky));
  border-radius: 4px;
  margin: 16px auto 0;
}

.section-subtitle {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(13,33,55,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
  transition: var(--transition);
}
.navbar.scrolled #nav-logo-img { border-color: rgba(76,175,80,.5); }

.nav-brand {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.25;
}
.nav-brand strong { color: var(--green-light); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  margin-left: 8px;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(46,125,70,.4);
}
.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,125,70,.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy) 0%, #0b3355 40%, #0e4d38 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* animated background shapes */
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.shape-1 {
  width: 700px; height: 700px;
  background: var(--sky);
  top: -200px; right: -150px;
  animation: floatShape 12s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--green-light);
  bottom: -100px; left: -80px;
  animation: floatShape 9s ease-in-out infinite reverse;
}
.shape-3 {
  width: 250px; height: 250px;
  background: var(--sky);
  top: 40%; left: 30%;
  animation: floatShape 14s ease-in-out infinite 3s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 820px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,.15);
  box-shadow: 0 0 0 12px rgba(76,175,80,.1), 0 20px 60px rgba(0,0,0,.35);
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 0 12px rgba(76,175,80,.1), 0 20px 60px rgba(0,0,0,.35); }
  50%       { box-shadow: 0 0 0 20px rgba(76,175,80,.15), 0 20px 60px rgba(0,0,0,.35); }
}

.hero-eyebrow {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: -8px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.15;
}
.hero-title span { color: var(--green-light); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s 1.5s both;
}
.hero-scroll-indicator span {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounceDown .9s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 100%; }

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
  background: var(--cream);
  padding: 48px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px 48px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--cream-dark);
  flex-shrink: 0;
}

/* =============================================
   OFFER BOX
============================================= */
.offer-strip {
  padding-top: 24px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, #f0f7f4 0%, #ffffff 100%);
}

.offer-box {
  background: linear-gradient(140deg, #0d2137 0%, #19415b 58%, #246c4b 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 36px 34px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(79, 195, 247, 0.25);
}

.offer-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(79, 195, 247, 0.2);
  color: #e8f8ff;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.offer-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 12px;
  color: var(--white);
}

.offer-copy {
  max-width: 740px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

/* =============================================
   ABOUT
============================================= */
.about { background: var(--white); }

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

.about-img-col { display: flex; flex-direction: column; gap: 24px; }

.about-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-display {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  margin: 0 auto;
}

.about-badge {
  position: absolute;
  bottom: -10px; right: 30px;
  background: var(--green);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
}
.about-badge i { width: 16px; height: 16px; }

.about-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
}
.about-feature i { width: 15px; height: 15px; color: var(--green); }

.about-text-col h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.about-text-col p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}
.about-list li i { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* =============================================
   SERVICES
============================================= */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,125,70,.15);
}

.featured-card {
  border: 2px solid var(--green);
  background: linear-gradient(160deg, #fff 60%, #f0faf3 100%);
}

.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--green-light));
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.service-icon-wrap i { width: 26px; height: 26px; }
.featured-card .service-icon-wrap {
  background: linear-gradient(135deg, rgba(46,125,70,.1), rgba(76,175,80,.15));
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.service-card p {
  font-size: .95rem;
  color: var(--text-light);
  flex: 1;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.service-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
}
.service-details li i { width: 15px; height: 15px; color: var(--green); }

.service-btn { margin-top: auto; text-align: center; justify-content: center; }

/* =============================================
   WHY US
============================================= */
.why-us { background: var(--navy); }
.why-us .section-eyebrow { color: var(--sky); }
.why-us .section-title { color: var(--white); }
.why-us .section-divider { background: linear-gradient(90deg, var(--sky), var(--green-light)); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: rgba(76,175,80,.3);
}

.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(46,125,70,.25), rgba(76,175,80,.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-light);
  border: 1px solid rgba(76,175,80,.2);
}
.why-icon i { width: 28px; height: 28px; }

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* =============================================
   GALLERY
============================================= */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* =============================================
   REVIEWS
============================================= */
.reviews {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 220px));
  justify-content: center;
  gap: 16px;
  margin: 0 0 34px;
}

.reviews-stat-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 18px 20px;
}

.reviews-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.1;
}

.reviews-stat-label {
  display: block;
  margin-top: 4px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(13,33,55,.08);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.review-tour {
  margin-top: 2px;
  font-size: .82rem;
  color: var(--text-light);
}

.review-stars {
  color: #f5b301;
  font-size: .95rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.review-text {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.7;
}

.review-date {
  margin-top: auto;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #7b9a8a;
}

/* =============================================
   CONTACT
============================================= */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-col h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: .95rem;
}

.loading-spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--cream-dark);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(46,125,70,.3);
}
.contact-detail-icon i { width: 19px; height: 19px; }

.contact-detail-info { flex: 1; }
.contact-detail-info strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-detail-info span, .contact-detail-info a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}
.contact-detail-info a:hover { color: var(--green); }

.contact-social { margin-top: 36px; }
.contact-social h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.social-link {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  font-size: .85rem;
  font-weight: 700;
}
.social-link:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(46,125,70,.3);
}
.social-link i { width: 18px; height: 18px; }
.social-link-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Contact Form */
.contact-form-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.05);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0baa8; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,70,.12);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,125,70,.08);
  border: 1px solid rgba(46,125,70,.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--green);
  font-weight: 600;
  font-size: .95rem;
}
.form-success i { width: 20px; height: 20px; flex-shrink: 0; }

.contact-location-box {
  margin-top: 34px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(13,33,55,.08);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.contact-location-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46,125,70,.14), rgba(79,195,247,.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.contact-location-icon i {
  width: 24px;
  height: 24px;
}

.contact-location-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}

.contact-location-content p {
  color: var(--text-light);
  font-size: .95rem;
}

/* =============================================
   FOOTER
============================================= */
.footer { background: #0a1c2e; position: relative; }

.footer-wave {
  height: 60px;
  background: var(--cream);
}
.footer-wave svg { width: 100%; height: 100%; display: block; }

.footer-body {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand { max-width: 280px; }

.footer-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 2px solid rgba(76,175,80,.3);
}

.footer-brand p {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-col h5 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}
.footer-contact-list li i { width: 15px; height: 15px; color: var(--green-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a { color: rgba(255,255,255,.5); }
.footer-contact-list li a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.35); }

/* =============================================
   ANIMATIONS (extra keyframes)
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE — TABLET
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { max-width: 100%; }
  .about-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { order: -1; }
  .about-logo-display { width: 260px; height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-col { padding: 32px 24px; }
}

/* =============================================
   RESPONSIVE — MOBILE NAV
============================================= */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .mobile-overlay { display: block; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 28px;
    gap: 4px;
    z-index: 999;
    transition: right var(--transition);
    box-shadow: -6px 0 30px rgba(0,0,0,.3);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 13px 14px;
  }
  .nav-cta-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    text-align: center;
    padding: 13px 24px;
  }

  .section-pad { padding: 72px 0; }
  .stats-grid { gap: 0; }
  .stat-item { padding: 16px 24px; min-width: 45%; }
  .stat-divider:nth-child(4) { display: none; }

  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 24px 18px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-stats { grid-template-columns: 1fr 1fr; }
  .offer-box { padding: 30px 22px; }
  .contact-location-box {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-body { padding: 48px 0 32px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE
============================================= */
@media (max-width: 480px) {
  .hero-logo { width: 160px; height: 160px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 13px 26px; font-size: .95rem; }

  .form-row { grid-template-columns: 1fr; }
  .stat-item { min-width: 100%; }
  .stat-divider { display: none; }
  .reviews-stats { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .footer-bottom .container { justify-content: center; text-align: center; }
}
