/* ============================================================
   ZEBUDES COMPANY LIMITED – OFFICIAL WEBSITE STYLESHEET
   Luxury Hospitality | Navy Blue & White Theme
   ============================================================ */

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

:root {
  --navy: #0D1B6B;
  --navy-dark: #070f40;
  --navy-mid: #1a2d8a;
  --navy-light: #2a3fa0;
  --gold: #c8a96e;
  --gold-light: #e8d5aa;
  --white: #ffffff;
  --off-white: #f8f8fb;
  --light-gray: #eef0f7;
  --text-dark: #0d1130;
  --text-mid: #3d4566;
  --text-light: #7a82aa;
  --shadow-sm: 0 4px 20px rgba(13,27,107,0.08);
  --shadow-md: 0 12px 40px rgba(13,27,107,0.14);
  --shadow-lg: 0 24px 60px rgba(13,27,107,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

p { color: var(--text-mid); font-size: 0.97rem; line-height: 1.8; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,107,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.82rem; }

/* ---- SECTION HEADER ---- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,110,0.12);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1.2rem; }
.section-desc { color: var(--text-mid); font-size: 1.05rem; max-width: 620px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.reveal { text-align: center; }
.section-header.reveal .section-desc { margin: 0 auto; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img {
  height: 56px;
  width: auto;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img { height: 48px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  color: var(--navy);
  transition: var(--transition);
  position: relative;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--light-gray);
}
.navbar:not(.scrolled) .nav-link.active { background: rgba(255,255,255,0.15); color: var(--white); }
.nav-cta-btn {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 50px;
  margin-left: 0.5rem;
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-cta-btn {
  background: var(--white);
  color: var(--navy) !important;
}
.nav-cta-btn:hover { background: var(--navy-light); transform: translateY(-1px); }

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1800&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,15,64,0.88) 0%,
    rgba(13,27,107,0.75) 50%,
    rgba(7,15,64,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
  line-height: 1.15;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  font-size: 0.88em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-actions .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}
.hero-actions .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--navy);
  padding: 2.5rem 0;
}
.intro-text {
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
  aspect-ratio: 4/3;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-year {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-text { padding-bottom: 3rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.2rem; }
.about-values {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.value-item strong { display: block; color: var(--navy); font-size: 0.97rem; margin-bottom: 0.1rem; }
.value-item p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(13,27,107,0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  display: block;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.service-card p { font-size: 0.92rem; line-height: 1.8; }
.service-link {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  padding-bottom: 2px;
}
.service-link:hover { border-color: var(--navy); letter-spacing: 0.03em; }

/* ============================================================
   PARTNERSHIPS SECTION
   ============================================================ */
.partnerships { background: var(--navy); }
.partnerships .section-label { background: rgba(200,169,110,0.15); color: var(--gold-light); }
.partnerships .section-title { color: var(--white); }
.partnerships .section-desc { color: rgba(255,255,255,0.68); }
.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.partner-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  text-align: center;
}
.partner-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.partner-icon { font-size: 3rem; display: block; margin-bottom: 1.4rem; }
.partner-card h3 { color: var(--white); margin-bottom: 1rem; }
.partner-card p { color: rgba(255,255,255,0.68); font-size: 0.93rem; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1.2rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,15,64,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--light-gray);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 1.2rem;
  opacity: 0.6;
}
.testimonial-card p { font-size: 0.93rem; font-style: italic; margin-bottom: 1.8rem; line-height: 1.8; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1540518614846-7eded433c457?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 110px 0;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,15,64,0.90) 0%, rgba(13,27,107,0.82) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.2rem;
}
.cta-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong { display: block; color: var(--navy); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { font-size: 0.92rem; color: var(--text-mid); }
.contact-item a:hover { color: var(--navy); text-decoration: underline; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13,27,107,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); color: var(--white); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 1.4rem; }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-links a:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-links ul li,
.footer-services ul li {
  margin-bottom: 0.7rem;
}
.footer-links ul li a,
.footer-services ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  transition: var(--transition);
}
.footer-links ul li a:hover,
.footer-services ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.7rem;
}
.footer-contact a { color: rgba(255,255,255,0.62); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.45); }
.footer-bottom em { color: var(--gold-light); font-style: italic; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-images { max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 2rem 3rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link, .nav-cta-btn { color: var(--navy) !important; background: none !important; width: 100%; font-size: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--light-gray); border-radius: 0; margin: 0; }
  .nav-cta-btn { background: var(--navy) !important; color: var(--white) !important; border-radius: 50px !important; border: none; text-align: center; margin-top: 1rem; }
  .hamburger { display: flex; z-index: 1000; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-accent { display: none; }
  .about-badge-float { left: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-content { padding: 0 1.2rem; padding-top: 90px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .partnerships-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-scroll-hint { display: none; }
}

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.about-badge-float { animation: floatBadge 4s ease-in-out infinite; }

/* Stagger delays for service cards */
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.2s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.3s; }
.service-card:nth-child(7) { transition-delay: 0.35s; }
