/* ============================================================
   Shoot Your Vacation — Main Stylesheet
   Site: https://www.shootyourvacation.com
   Operated by: Fotorod Photography | fotorod.com
   ============================================================ */

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

:root {
    --gold: #F47A20;
    --gold-light: #FBBF8A;
    --gold-dark: #C05A08;
    --gold-pale: #FEF0E6;
    --charcoal: #1C1C1E;
    --charcoal-mid: #2E2E30;
    --off-white: #FAF8F5;
    --warm-gray: #9A9590;
    --text-body: #3D3A36;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--off-white);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: rgba(28, 28, 30, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(244, 122, 32, 0.2);
    transition: var(--transition);
  }

  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .nav-logo img {
    height: 38px;
    width: auto;

  }

  .footer-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    margin-bottom: 1rem;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }

  .nav-links a {
    color: rgba(248, 246, 242, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
  }

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

  .nav-book {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    padding: 0.45rem 1.25rem;
    border-radius: 2px;
    font-weight: 600 !important;
  }

  .nav-book:hover { background: var(--gold-light) !important; }

  .hamburger { display: none; background: none; border: none; cursor: pointer; }
  .hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--gold-light); margin: 5px 0;
    transition: var(--transition);
  }

  /* HERO SLIDER */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
  }

  .slide.active { opacity: 1; }

  .slide-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65);
    transform: scale(1.05);
    transition: transform 8s ease;
  }

  .slide.active .slide-bg { transform: scale(1); }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28,28,30,0.1) 0%, rgba(28,28,30,0.55) 100%);
  }

  .hero-content {
    position: absolute;
    bottom: 12%;
    left: 5%;
    right: 5%;
    max-width: 780px;
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    border-left: 2px solid var(--gold);
    padding-left: 0.75rem;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    font-weight: 400;
  }

  .hero-title em { font-style: italic; color: var(--gold-light); }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.65;
  }

  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    display: inline-block;
  }

  .btn-primary:hover { background: var(--gold-light); }

  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 0.83rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .slider-dots {
    position: absolute;
    bottom: 5%;
    right: 5%;
    display: flex;
    gap: 8px;
  }

  .dot {
    width: 28px; height: 2px;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: var(--transition);
    border: none;
  }

  .dot.active { background: var(--gold); width: 48px; }

  /* SECTION COMMONS */
  section { padding: 100px 5%; }

  .section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.18;
    color: var(--charcoal);
    font-weight: 400;
    margin-bottom: 1.25rem;
  }

  .section-title em { font-style: italic; color: var(--gold-dark); }

  .divider {
    width: 48px; height: 1.5px;
    background: var(--gold);
    margin-bottom: 2rem;
  }

  /* ABOUT */
  .about {
    background: var(--charcoal);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 600px;
  }

  .about-img {
    overflow: hidden;
  }

  .about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .about-img:hover img { transform: scale(1.06); }

  .about-img.tall {
    grid-row: span 2;
  }

  .about-text {
    padding: 80px 10% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-text .section-label { color: var(--gold); }
  .about-text .section-title { color: var(--off-white); }

  .about-text p {
    color: rgba(248,246,242,0.72);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(244,122,32,0.2);
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 0.78rem;
    color: rgba(248,246,242,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
    display: block;
  }

  /* WHY BOOK */
  .why {
    background: var(--off-white);
    text-align: center;
  }

  .why .section-title { margin: 0 auto 0.5rem; }
  .why .divider { margin: 0 auto 1rem; }

  .why-intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    color: var(--warm-gray);
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gold-light);
  }

  .why-card {
    background: #fff;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: var(--transition);
  }

  .why-card:hover { background: var(--charcoal); }
  .why-card:hover .why-icon { color: var(--gold); }
  .why-card:hover h3 { color: var(--off-white); }
  .why-card:hover p { color: rgba(248,246,242,0.65); }

  .why-icon {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 1.25rem;
    display: block;
    transition: var(--transition);
  }

  .why-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: var(--transition);
  }

  .why-card p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.7;
    transition: var(--transition);
  }

  /* EXPERIENCES / VIATOR */
  .experiences {
    background: var(--charcoal);
    color: #fff;
  }

  .experiences .section-title { color: var(--off-white); }
  .experiences .section-label { color: var(--gold); }

  .exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .exp-header p {
    max-width: 500px;
    color: rgba(248,246,242,0.65);
    font-size: 1rem;
  }

  .viator-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244,122,32,0.12);
    border: 1px solid rgba(244,122,32,0.3);
    color: var(--gold-light);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition);
  }

  .viator-badge:hover { background: rgba(244,122,32,0.22); }

  .exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(244,122,32,0.15);
  }

  .exp-card {
    background: var(--charcoal-mid);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    color: inherit;
  }

  .exp-card:hover { background: #252527; }

  .exp-img {
    height: 220px;
    overflow: hidden;
    position: relative;
  }

  .exp-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .exp-card:hover .exp-img img { transform: scale(1.07); }

  .exp-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 1px;
  }

  .exp-body { padding: 1.5rem; }

  .exp-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .exp-body p {
    font-size: 0.88rem;
    color: rgba(248,246,242,0.55);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .exp-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(244,122,32,0.15);
  }

  .exp-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
  }

  .exp-duration {
    font-size: 0.78rem;
    color: rgba(248,246,242,0.4);
    letter-spacing: 0.05em;
  }

  .exp-cta {
    display: block;
    text-align: center;
    margin-top: 3rem;
  }

  /* LOCATIONS */
  .locations { background: var(--off-white); }

  .loc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--gold-light);
    margin-top: 3rem;
  }

  .loc-grid-7 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
  }

  .loc-wide {
    grid-column: span 2;
  }

  .loc-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
  }

  .loc-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.75);
  }

  .loc-item:hover img { transform: scale(1.08); filter: brightness(0.55); }

  .loc-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(28,28,30,0.9), transparent);
  }

  .loc-label h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
  }

  .loc-label span {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* PORTFOLIO */
  .portfolio { background: var(--charcoal); }

  .portfolio .section-title { color: var(--off-white); }
  .portfolio .section-label { color: var(--gold); }

  .portfolio-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .filter-btn {
    background: none;
    border: 1px solid rgba(244,122,32,0.3);
    color: rgba(248,246,242,0.55);
    padding: 0.4rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: var(--transition);
    font-family: var(--font-body);
  }

  .filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
  }

  .filter-btn-reels {
    border-color: rgba(244,122,32,0.5);
    color: var(--gold);
  }

  .filter-btn-reels:hover, .filter-btn-reels.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 3px;
  }

  .port-item {
    overflow: hidden;
    position: relative;
  }

  .port-item.port-tall {
    grid-row: span 2;
  }

  .port-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .port-item:hover img { transform: scale(1.08); }

  .port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,28,30,0);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .port-item:hover .port-overlay {
    background: rgba(28,28,30,0.5);
  }

  .port-overlay span {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transition: var(--transition);
  }

  .port-item:hover .port-overlay span { opacity: 1; }

  .portfolio-more {
    text-align: center;
    margin-top: 2.5rem;
  }

  /* SNAPREELS EXP CARD */
  .exp-card-reels {
    border: 1.5px solid rgba(244,122,32,0.4);
    background: linear-gradient(145deg, var(--charcoal-mid), #1a1a1c);
  }

  .exp-tag-reels {
    background: var(--charcoal);
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 0.72rem;
  }

  .reels-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.85;
  }

  .exp-card-reels:hover .reels-play-icon { opacity: 1; transform: scale(1.1); }

  /* PORTFOLIO VIDEO ITEMS */
  .port-item-video {
    position: relative;
    overflow: hidden;
    background: #000;
  }

  .port-item-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  .port-video-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(28,28,30,0.92), transparent);
    padding: 1.25rem 1rem 0.75rem;
    pointer-events: none;
  }

  .port-video-label span {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .port-video-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.18rem 0.55rem;
    border-radius: 1px;
    margin-bottom: 0.35rem;
  }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--off-white);
    text-align: center;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-card {
    background: #fff;
    padding: 2rem 1.75rem 1.75rem;
    border-bottom: 3px solid var(--gold);
    text-align: left;
    position: relative;
  }

  .testi-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.18;
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    line-height: 1;
  }

  .testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

  .testi-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }

  .testi-author {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
  }

  .testi-country {
    font-size: 0.78rem;
    color: var(--warm-gray);
    margin-top: 0.2rem;
  }

  .testi-source {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-pale);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
  }

  /* FAQ */
  .faq { background: var(--charcoal); }
  .faq .section-title { color: var(--off-white); }
  .faq .section-label { color: var(--gold); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(244,122,32,0.15);
    margin-top: 3rem;
  }

  .faq-item {
    background: var(--charcoal-mid);
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .faq-item:hover { background: #252527; }

  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
  }

  .faq-q h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--off-white);
    line-height: 1.45;
  }

  .faq-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform var(--transition);
  }

  .faq-a {
    font-size: 0.92rem;
    color: rgba(248,246,242,0.58);
    line-height: 1.75;
    margin-top: 1rem;
    display: none;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-item.open .faq-a { display: block; }

  /* BOOKING CTA */
  .booking-cta {
    background: var(--gold);
    padding: 80px 5%;
    text-align: center;
  }

  .booking-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .booking-cta p {
    color: rgba(28,28,30,0.7);
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 1rem;
  }

  .booking-cta .btn-dark {
    background: var(--charcoal);
    color: var(--gold-light);
    padding: 0.95rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-block;
    margin: 0.4rem;
    transition: var(--transition);
  }

  .booking-cta .btn-dark:hover { background: var(--charcoal-mid); }

  .booking-cta .btn-white {
    background: #fff;
    color: var(--charcoal);
    padding: 0.93rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-block;
    margin: 0.4rem;
    transition: var(--transition);
  }

  .booking-cta .btn-white:hover { background: var(--gold-light); }

  /* FOOTER */
  footer {
    background: #131315;
    padding: 60px 5% 30px;
    color: rgba(248,246,242,0.55);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(244,122,32,0.12);
  }

  .footer-brand .footer-logo {
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
  }

  .footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 1.5rem;
  }

  .social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

  .social-link {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(244,122,32,0.25);
    color: rgba(248,246,242,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition);
    border-radius: 2px;
  }

  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(244,122,32,0.08);
  }

  .footer-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li { margin-bottom: 0.65rem; }

  .footer-col ul li a {
    color: rgba(248,246,242,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p { font-size: 0.78rem; }

  .footer-bottom a {
    color: rgba(248,246,242,0.4);
    text-decoration: none;
  }

  .footer-bottom a:hover { color: var(--gold); }

  /* WHATSAPP BUTTON */
  .whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
  }

  .whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  }

  .whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

  /* MOBILE */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 72px; left: 0; right: 0;
      background: rgba(28,28,30,0.98);
      padding: 1.5rem 5%;
      gap: 1.25rem;
      border-top: 1px solid rgba(244,122,32,0.15);
    }
    .about { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr 1fr; height: 350px; grid-template-rows: auto; }
    .about-img.tall { grid-row: span 1; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-grid { grid-template-columns: 1fr 1fr; }
    .loc-grid-7 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .loc-wide { grid-column: span 2; }
    .loc-item { height: 220px; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid .port-item.port-tall { grid-row: span 2; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: repeat(3,1fr); }
  }

  @media (max-width: 600px) {
    section { padding: 70px 5%; }
    .hero-title { font-size: 2.1rem; }
    .why-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .loc-grid { grid-template-columns: 1fr; }
    .loc-grid-7 { grid-template-columns: 1fr; }
    .loc-wide { grid-column: span 1; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .port-item.port-tall { grid-row: span 1; }
    .footer-top { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
  }