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

:root {
  --bg-color: #f6f3eb; /* Sandal shade white/beige */
  --text-dark: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #eaddb6;
  --white: #ffffff;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.4);
  padding: 0.75rem 2.5rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  overflow: visible;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem 2rem 4rem;
}

.hero-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  padding: 0 2rem;
}

.hero-title {
  font-size: 8.5rem;
  font-weight: 300;
  letter-spacing: -3px;
  position: relative;
  color: var(--text-dark);
  margin-right: 0.5rem;
}

.hero-title-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 10rem;
  font-weight: 300;
  position: relative;
  top: 1rem;
  color: var(--text-dark);
}

.hero-subtitle {
  position: absolute;
  left: 0;
  top: 10rem;
  max-width: 250px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  font-weight: 300;
}

.hero-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 3px;
  transition: border-color 0.3s, color 0.3s;
}
.hero-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 65vh;
  margin-top: -2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-image {
  max-width: 100%;
  height: 110%;
  object-fit: cover;
  mix-blend-mode: multiply;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Floating Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  position: absolute;
  z-index: 3;
}

.card-left {
  bottom: 5%;
  left: 5%;
  width: 260px;
}

.card-left .stat {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.card-left .stat-text {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.avatars {
  display: flex;
}
.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
}
.avatars img:first-child {
  margin-left: 0;
}

.card-right {
  top: 35%;
  right: 2%;
  width: 250px;
}

.card-right-title {
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  color: var(--text-dark);
}

.card-right-title i {
  color: #666;
  font-style: normal;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.progress-item {
  margin-bottom: 1.2rem;
}
.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 0.6rem;
}
.progress-val {
  font-weight: 500;
  color: var(--text-dark);
}
.progress-val span {
  color: #4CAF50; /* soft green */
  font-size: 0.65rem;
  margin-left: 5px;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  position: relative;
}
.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

/* Responsiveness for smaller screens if needed */
@media (max-width: 1200px) {
  .hero-title { font-size: 6rem; left: -2rem; }
  .hero-title-italic { font-size: 7rem; right: -2rem; top: 3rem; }
  nav { padding: 1.5rem 2rem; }
  .hero { padding: 2rem; }
}

/* Services Section */
.services-section {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-title {
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.services-title span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.services-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
}

.services-stack {
  position: relative;
  padding-bottom: 5vh;
}

.service-card {
  position: sticky;
  height: 65vh;
  width: 100%;
  background: var(--white);
  border-radius: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 -20px 50px rgba(0,0,0,0.06);
  border: 1px solid #efeae0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 8vh;
}

/* Stacking logic */
.card-1 { top: 12vh; z-index: 1; }
.card-2 { top: 14vh; z-index: 2; }
.card-3 { top: 16vh; z-index: 3; }
.card-4 { top: 18vh; z-index: 4; }
.card-5 { top: 20vh; z-index: 5; }
.card-6 { top: 22vh; z-index: 6; }
.card-7 { top: 24vh; z-index: 7; }
.card-8 { top: 26vh; z-index: 8; }
.card-9 { top: 28vh; z-index: 9; }

.service-content {
  flex: 1;
  padding: 5rem;
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-style: italic;
  color: rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
  line-height: 1;
}

.service-content h3 {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.service-image {
  flex: 1.2;
  height: 100%;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-card {
    flex-direction: column;
    height: auto;
  }
  .service-content {
    padding: 3rem;
  }
  .service-image {
    height: 300px;
  }
}

/* About Us Section */
.about-section {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding: 8rem 4rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image-wrapper {
  flex: 1;
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.exp-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}

.exp-text {
  font-size: 0.85rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.about-content {
  flex: 1.1;
}

.about-subtitle {
  font-size: 0.95rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-title span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (max-width: 1000px) {
  .about-section {
    flex-direction: column;
    gap: 4rem;
  }
}

/* SEO Insights Section */
.seo-insights {
  background: var(--text-dark);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Cursor glow follower */
.seo-cursor-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
  z-index: 0;
  opacity: 0;
}

.seo-insights:hover .seo-cursor-glow {
  opacity: 1;
}

/* Scroll-reveal base state */
[data-seo-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-seo-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.seo-insights-header {
  max-width: 1400px;
  margin: 0 auto 5rem auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.seo-tag {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(212,175,55,0.3);
  margin-bottom: 1.5rem;
}

.seo-insights-header h2 {
  font-size: 4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.seo-insights-header h2 span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.seo-insights-header p {
  font-size: 1.05rem;
  color: #888;
  font-weight: 300;
}

.seo-cards {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.seo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.seo-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.seo-card:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.seo-card:hover::after {
  opacity: 1;
}

.seo-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-style: italic;
  color: rgba(212,175,55,0.18);
  line-height: 1;
}

.seo-card-body h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.seo-card-body p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.seo-read-more {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 3px;
  transition: border-color 0.3s, color 0.3s;
}

.seo-read-more:hover {
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 1000px) {
  .seo-cards {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

@media (max-width: 600px) {
  .seo-insights {
    padding: 5rem 2rem;
  }
  .seo-insights-header h2 {
    font-size: 2.8rem;
  }
}


/* Featured Reel Section */
.featured-reel {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.reel-header {
  margin-bottom: 5rem;
}

.reel-header h2 {
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--text-dark);
}

.reel-header span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.reel-header p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 1rem;
  font-weight: 300;
}

.reels-group {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  width: 100%;
}

.reel-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.reel-container {
  width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  overflow: hidden;
}

.reel-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.reel-accent-box {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: 1;
}

@media (max-width: 500px) {
  .reel-wrapper {
    max-width: 320px;
  }
}

/* WhatsApp CTA Section */
.cta-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.cta-container {
    background: var(--white);
    border-radius: 30px;
    padding: 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid var(--gold-light);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-content h2 span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 300;
}

.cta-form-wrapper {
    flex: 1;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(212,175,55,0.2);
}

.cta-form .form-group {
    margin-bottom: 1.5rem;
}

.cta-form .form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-form .form-group input, 
.cta-form .form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.cta-form .form-group input:focus,
.cta-form .form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-whatsapp {
    width: 100%;
    background: #25D366; /* WhatsApp Green */
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        padding: 3rem;
        gap: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.8rem;
    }
}

/* Footer Section */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 6rem 4rem 2rem 4rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    mix-blend-mode: normal;
    border-radius: 12px;
    height: 90px;
}

.footer-brand p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
    font-weight: 300;
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
}

.footer-links a,
.footer-social a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-number {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.contact-number:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    font-weight: 300;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 600px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp svg {
        width: 25px;
        height: 25px;
    }
}

/* ═══════════════════════════════════════════
   HAMBURGER & MOBILE NAV
═══════════════════════════════════════════ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--text-dark);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dark overlay behind mobile menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   TABLET (≤ 900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Nav */
  nav {
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 999;
  }

  .hamburger { display: flex; }

  .btn-dark.nav-cta { display: none; } /* hide consultation button on tablet */

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-color);
    border-left: 1px solid rgba(212,175,55,0.2);
    padding: 6rem 2.5rem 3rem;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
  }

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

  .mobile-nav-overlay { display: block; }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--text-dark);
  }

  .nav-links a:last-child { border-bottom: none; }

  /* Hide consultation btn inside nav-right beside hamburger; keep it visible as standalone */
  .nav-right .btn-dark {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 1rem 1.5rem 2rem;
    min-height: auto;
  }

  .hero-text-container {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0;
    gap: 0;
  }

  .hero-title {
    font-size: 4.5rem;
    letter-spacing: -2px;
    margin-right: 0.3rem;
  }

  .hero-title-italic {
    font-size: 5.5rem;
    top: 0.5rem;
  }

  .hero-subtitle {
    position: static;
    max-width: 100%;
    margin-top: 1.5rem;
    padding: 0 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image-container {
    height: 45vh;
    margin-top: 0;
  }

  .hero-image {
    height: 100%;
    object-fit: contain;
  }

  /* Hide glass cards on tablet/mobile — they overlap badly */
  .glass-card { display: none; }

  /* About */
  .about-section {
    padding: 5rem 1.5rem 3rem;
    gap: 5rem;
  }

  .experience-badge {
    right: 0;
    bottom: -1.5rem;
  }

  /* Services */
  .services-section {
    padding: 5rem 1.5rem;
  }

  .services-title { font-size: 3rem; }

  .service-card {
    position: relative;
    top: auto !important;
    flex-direction: column;
    height: auto;
    margin-bottom: 2rem;
  }

  .service-content {
    padding: 2.5rem 2rem;
  }

  .service-content h3 { font-size: 2rem; }
  .service-number { font-size: 3.5rem; }

  .service-image { height: 260px; }

  /* SEO Section */
  .seo-insights { padding: 5rem 1.5rem; }
  .seo-insights-header h2 { font-size: 3rem; }
  .seo-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Reels */
  .featured-reel { padding: 5rem 1.5rem; }
  .reel-header h2 { font-size: 3rem; }
  .reels-group { gap: 3rem; }

  /* CTA */
  .cta-section { padding: 5rem 1.5rem; }
  .cta-container {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
  .cta-content h2 { font-size: 2.5rem; }

  /* Footer */
  .footer { padding: 4rem 1.5rem 2rem; }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ═══════════════════════════════════════════
   MOBILE (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {

  .hero-title { font-size: 3.2rem; letter-spacing: -1.5px; }
  .hero-title-italic { font-size: 3.8rem; top: 0.3rem; }

  .hero-image-container { height: 38vh; }

  .about-title { font-size: 2.4rem; }

  .about-section { padding: 4rem 1.2rem 2rem; }

  .experience-badge {
    position: static;
    margin-top: 1.5rem;
    justify-content: center;
    width: fit-content;
  }

  .services-title { font-size: 2.4rem; }
  .service-content h3 { font-size: 1.7rem; }
  .service-content { padding: 2rem 1.5rem; }

  .seo-insights-header h2 { font-size: 2.4rem; }
  .seo-card { padding: 1.8rem 1.5rem; }

  .reel-header h2 { font-size: 2.4rem; }
  .reel-wrapper { max-width: 100%; }
  .reel-accent-box { display: none; } /* accent box clips off screen on tiny phones */

  .cta-content h2 { font-size: 2rem; }
  .cta-container { padding: 2rem 1.2rem; }

  .footer { padding: 3rem 1.2rem 1.5rem; }
}

