/* ============================================================
   Prime Movers Mobile Car Wash — Global Stylesheet v2
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --brand: #7e4fa0; --brand-dark: #4a2766; --brand-mid: #9b6abf;
  --brand-light: #c8a8e0; --brand-pale: #f2ebfa;
  --gold: #c8a050; --gold-light: #e0c070;
  --dark: #1a0d28; --dark-2: #241337; --mid: #2e1a44; --surface: #3a2254;
  --white: #ffffff; --text-dark: #1a0d28; --text: #f5f0fa;
  --muted: rgba(245,240,250,0.65); --border: rgba(200,168,224,0.25);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
img{display:block;max-width:100%}
a{text-decoration:none}
body{background:var(--dark);color:var(--text);font-family:'DM Sans',sans-serif;font-weight:300;overflow-x:hidden;min-width:320px}
h1,h2,h3{font-family:'Cormorant Garamond',serif;font-weight:300;line-height:1.1}
h1{font-size:clamp(3rem,5vw,5.5rem);letter-spacing:-0.01em}
h2{font-size:clamp(2rem,3.5vw,3.2rem)}
h2 em{font-style:italic;color:var(--brand-light)}
p{line-height:1.75}
.section-label{font-size:11px;letter-spacing:0.18em;text-transform:uppercase;color:var(--gold);margin-bottom:0.75rem;display:block}
.section-divider{width:48px;height:2px;background:var(--brand-light);margin:1.25rem 0 2rem}
.section-divider.centered{margin:1.25rem auto 2rem}

/* BUTTONS */
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:var(--brand);color:#fff;padding:0.9rem 2rem;border-radius:100px;font-size:13px;letter-spacing:0.08em;text-transform:uppercase;transition:background 0.25s,transform 0.25s,box-shadow 0.25s;box-shadow:0 4px 20px rgba(126,79,160,0.4)}
.btn-primary:hover{background:var(--brand-dark);transform:translateY(-2px);box-shadow:0 8px 30px rgba(126,79,160,0.55)}
.btn-secondary{display:inline-flex;align-items:center;gap:8px;border:1.5px solid rgba(200,168,224,0.45);color:rgba(245,240,250,0.92);padding:0.9rem 2rem;border-radius:100px;font-size:13px;letter-spacing:0.08em;text-transform:uppercase;transition:all 0.25s;background:transparent}
.btn-secondary:hover{border-color:var(--brand-light);color:#fff;background:rgba(200,168,224,0.08)}
.btn-secondary.dark{color:var(--brand-dark);border-color:rgba(126,79,160,0.35)}
.btn-secondary.dark:hover{border-color:var(--brand);color:var(--brand);background:var(--brand-pale)}

/* FADE IN */
.fade-in {
    opacity: 1 !important;
    transform: none !important;transition:opacity 0.75s ease,transform 0.75s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* NAV */
body>nav{position:fixed;top:0;left:0;right:0;z-index:200;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:0.6rem 4%;background:#ffffff;border-bottom:3px solid var(--brand);box-shadow:0 2px 32px rgba(126,79,160,0.18);transition:padding 0.3s,box-shadow 0.3s}
body>nav.scrolled{padding:0.4rem 4%;box-shadow:0 4px 40px rgba(126,79,160,0.28)}
.nav-logo{display:flex;align-items:center}
.nav-logo-img{height:60px;width:auto;object-fit:contain;filter:saturate(1.1)}
.nav-links{display:flex;gap:1.5rem;list-style:none;align-items:center;flex-shrink:0}
.nav-links a{font-size:11.5px;letter-spacing:0.13em;text-transform:uppercase;color:var(--brand-dark);font-weight:400;transition:color 0.2s;padding:4px 0;position:relative}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--brand);transform:scaleX(0);transition:transform 0.2s}
.nav-links a:hover{color:var(--brand)}
.nav-links a:hover::after{transform:scaleX(1)}
.nav-cta{background:var(--brand)!important;color:#fff!important;padding:0.5rem 1.3rem;border-radius:100px;font-size:11px!important;letter-spacing:0.1em;text-transform:uppercase;transition:background 0.2s,box-shadow 0.2s,transform 0.2s;box-shadow:0 2px 12px rgba(126,79,160,0.35)}
.nav-cta:hover{background:var(--brand-dark)!important;transform:translateY(-1px);box-shadow:0 4px 20px rgba(126,79,160,0.5)}
.nav-cta::after{display:none!important}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px;background:none;border:none;flex-shrink:0}
.nav-hamburger span{display:block;width:24px;height:2px;background:var(--brand);border-radius:2px;transition:all 0.3s}
.nav-hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav-hamburger.open span:nth-child(2){opacity:0}
.nav-hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* HERO */
.hero{min-height:100vh;position:relative;display:grid;grid-template-columns:1fr 1fr;overflow:hidden;padding-top:75px}
.hero-bg{position:absolute;inset:0;background:url('../assets/images/hero-bg.jpg') center/cover no-repeat;z-index:0}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(105deg,rgba(26,13,40,0.93) 0%,rgba(26,13,40,0.78) 45%,rgba(26,13,40,0.35) 100%)}
.hero-left{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;padding:5rem 4% 5rem 8%}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(200,168,224,0.12);border:1px solid rgba(200,168,224,0.4);border-radius:100px;padding:0.4rem 1rem;font-size:11px;letter-spacing:0.16em;text-transform:uppercase;color:var(--brand-light);margin-bottom:2rem;width:fit-content}
.hero-badge::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--brand-light);flex-shrink:0;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.25}}
.hero h1{color:#fff;margin-bottom:1.5rem}
.hero h1 em{color:var(--brand-light)}
.hero-sub{font-size:15px;line-height:1.8;color:rgba(245,240,250,0.88);max-width:420px;margin-bottom:2.5rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{margin-top:3.5rem;display:flex;gap:2.5rem;padding-top:2.5rem;border-top:1px solid rgba(200,168,224,0.2)}
.stat-num{font-family:'Cormorant Garamond',serif;font-size:2.8rem;font-weight:300;color:var(--brand-light);line-height:1}
.stat-label{font-size:10px;letter-spacing:0.14em;text-transform:uppercase;color:rgba(245,240,250,0.7);margin-top:4px}
.hero-right{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;padding:5rem 8% 5rem 2%}
.hero-photo-stack{position:relative;width:100%;max-width:420px}
.hero-photo-main{width:100%;border-radius:16px;overflow:hidden;box-shadow:0 24px 80px rgba(26,13,40,0.6);border:3px solid rgba(200,168,224,0.25)}
.hero-photo-main img{width:100%;height:380px;object-fit:cover}
.hero-photo-badge{position:absolute;bottom:-20px;left:-20px;background:#fff;border-radius:12px;padding:1rem 1.4rem;box-shadow:0 8px 32px rgba(126,79,160,0.25);display:flex;align-items:center;gap:12px}
.badge-icon{width:42px;height:42px;border-radius:50%;background:var(--brand-pale);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.badge-text strong{display:block;font-size:13px;color:var(--text-dark);font-weight:500}
.badge-text span{font-size:11px;color:rgba(26,13,40,0.55)}
.hero-photo-accent{position:absolute;top:-16px;right:-16px;width:80px;height:80px;border-radius:50%;border:2px solid var(--brand-light);display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--dark-2);box-shadow:0 4px 20px rgba(126,79,160,0.3)}
.hero-photo-accent strong{font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--brand-light);line-height:1}
.hero-photo-accent span{font-size:8px;color:rgba(245,240,250,0.6);letter-spacing:0.1em;text-align:center}

/* SERVICES */
.services-section{background:#ffffff;padding:7rem 8%;color:var(--text-dark)}
.services-header{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:end;margin-bottom:4rem}
.services-header .section-label{color:var(--brand)}
.services-header h2{color:var(--text-dark)}
.services-header .section-divider{background:var(--brand)}
.services-desc{font-size:15px;color:rgba(26,13,40,0.7);max-width:380px}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(126,79,160,0.12);border-radius:16px;overflow:hidden}
.service-card{background:#fff;padding:2.5rem;display:flex;flex-direction:column;gap:1rem;transition:background 0.3s;position:relative;overflow:hidden}
.service-card:hover{background:var(--brand-pale)}
.service-card-img{width:100%;height:180px;object-fit:cover;border-radius:8px;margin-bottom:0.5rem}
.service-num{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:300;color:rgba(126,79,160,0.1);line-height:1;position:absolute;top:1.5rem;right:1.5rem}
.service-icon{font-size:2rem;margin-bottom:0.25rem}
.service-name{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:400;color:var(--text-dark);line-height:1.2}
.service-desc{font-size:13px;line-height:1.7;color:rgba(26,13,40,0.65)}
.service-cta{margin-top:auto;font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:var(--brand);font-weight:500;display:inline-flex;align-items:center;gap:6px}
.service-cta::after{content:'→';transition:transform 0.2s}
.service-card:hover .service-cta::after{transform:translateX(4px)}

/* ABOUT */
.about-section{position:relative;overflow:hidden;padding:7rem 8%;background:linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 100%)}
.about-bg-img{position:absolute;inset:0;background:url('../assets/images/about-bg.jpg') center/cover no-repeat;opacity:0.1;z-index:0}
.about-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center}
.about-section .section-label{color:var(--gold)}
.about-section h2{color:#fff;margin-bottom:1rem}
.about-section h2 em{color:var(--brand-light)}
.about-body{font-size:15px;line-height:1.85;color:rgba(245,240,250,0.85);margin-bottom:2rem}
.highlights{display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem}
.highlight-item{display:flex;align-items:center;gap:1rem;font-size:14px;color:rgba(245,240,250,0.88)}
.highlight-dot{width:8px;height:8px;border-radius:50%;background:var(--brand-light);flex-shrink:0}
.about-img-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.about-img-grid img{width:100%;border-radius:12px;object-fit:cover;height:200px;box-shadow:0 8px 32px rgba(26,13,40,0.5);border:2px solid rgba(200,168,224,0.12);transition:transform 0.4s}
.about-img-grid img:hover{transform:scale(1.03)}
.about-img-grid img:first-child{grid-column:1/-1;height:240px}
.location-banner{margin-top:2rem;background:rgba(200,168,224,0.08);border:1px solid rgba(200,168,224,0.2);border-radius:12px;padding:1.25rem 1.75rem;display:flex;align-items:center;gap:1.25rem}
.location-icon{width:44px;height:44px;border-radius:50%;background:rgba(200,168,224,0.1);border:1px solid var(--brand-light);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.location-title{font-size:14px;font-weight:500;color:rgba(245,240,250,0.95)}
.location-sub{font-size:12px;color:rgba(245,240,250,0.65);margin-top:2px}

/* GALLERY */
.gallery-section{background:#ffffff;padding:7rem 8%}
.gallery-section .section-label{color:var(--brand)}
.gallery-section h2{color:var(--text-dark)}
.gallery-section .section-divider{background:var(--brand)}
.gallery-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3rem}
.gallery-header p{font-size:15px;color:rgba(26,13,40,0.7);max-width:400px}
.gallery-masonry{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:220px;gap:10px}
.gallery-item{position:relative;overflow:hidden;border-radius:10px;cursor:pointer;background:var(--brand-pale)}
.gallery-item.tall{grid-row:span 2}
.gallery-item.wide{grid-column:span 2}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.gallery-item:hover img{transform:scale(1.07)}
.gallery-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,13,40,0.72) 0%,transparent 55%);opacity:0;transition:opacity 0.3s;display:flex;align-items:flex-end;padding:1.25rem}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-overlay span{font-size:11px;letter-spacing:0.1em;text-transform:uppercase;color:rgba(245,240,250,0.9)}

/* BEFORE/AFTER */
.before-after-strip{background:var(--dark-2);padding:5rem 8%;display:grid;grid-template-columns:1fr auto 1fr;gap:2rem;align-items:center}
.ba-label{font-size:10px;letter-spacing:0.18em;text-transform:uppercase;color:var(--gold);margin-bottom:0.75rem;display:block}
.ba-img{border-radius:12px;overflow:hidden;position:relative;box-shadow:0 8px 40px rgba(26,13,40,0.4)}
.ba-img img{width:100%;height:280px;object-fit:cover}
.ba-tag{position:absolute;top:12px;left:12px;background:rgba(26,13,40,0.85);backdrop-filter:blur(8px);border:1px solid rgba(200,168,224,0.3);border-radius:100px;padding:4px 14px;font-size:11px;letter-spacing:0.1em;text-transform:uppercase;color:var(--brand-light)}
.ba-divider{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;padding:0 1rem}
.ba-arrow{width:56px;height:56px;border-radius:50%;border:2px solid var(--brand-light);display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:var(--brand-light)}
.ba-text{font-family:'Cormorant Garamond',serif;font-size:1.1rem;color:rgba(245,240,250,0.65);text-align:center;line-height:1.4}

/* PRICING */
.pricing-section{padding:7rem 8%;background:linear-gradient(160deg,var(--dark-2) 0%,var(--mid) 100%)}
.pricing-header{text-align:center;margin-bottom:4rem}
.pricing-header .section-label{color:var(--gold)}
.pricing-header h2{color:#f5f0fa}
.pricing-header p{color:rgba(245,240,250,0.75);max-width:480px;margin:1rem auto 0}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:960px;margin:0 auto}
.pricing-card{border:1px solid rgba(200,168,224,0.2);border-radius:16px;padding:2.5rem 2rem;display:flex;flex-direction:column;gap:1rem;background:rgba(255,255,255,0.05);backdrop-filter:blur(8px);transition:transform 0.3s,border-color 0.3s,background 0.3s;position:relative}
.pricing-card:hover{transform:translateY(-6px);border-color:var(--brand-light);background:rgba(255,255,255,0.09)}
.pricing-card.featured{border-color:var(--brand-light);background:rgba(255,255,255,0.1);box-shadow:0 8px 48px rgba(126,79,160,0.3)}
.pricing-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--brand);color:#fff;border-radius:100px;padding:4px 16px;font-size:10px;letter-spacing:0.14em;text-transform:uppercase;white-space:nowrap}
.pricing-tier{font-size:11px;letter-spacing:0.16em;text-transform:uppercase;color:var(--gold)}
.pricing-price{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:300;color:#f5f0fa;line-height:1}
.pricing-price span{font-size:1.2rem;vertical-align:super}
.pricing-divider{height:1px;background:rgba(200,168,224,0.15)}
.pricing-features{list-style:none;display:flex;flex-direction:column;gap:0.75rem;font-size:13px;color:rgba(245,240,250,0.85);flex:1}
.pricing-features li{display:flex;align-items:center;gap:8px}
.pricing-features li::before{content:'✓';color:var(--brand-light);font-size:12px;flex-shrink:0}
.placeholder-tag{display:inline-block;background:rgba(245,240,250,0.07);border:1px dashed rgba(245,240,250,0.25);color:rgba(245,240,250,0.55);font-size:10px;letter-spacing:0.08em;padding:2px 8px;border-radius:4px}

/* TESTIMONIALS */
.testimonials-section{background:#ffffff;padding:7rem 8%}
.testimonials-section .section-label{color:var(--brand)}
.testimonials-section h2{color:var(--text-dark)}
.testimonials-section .section-divider{background:var(--brand)}
.testimonials-header{text-align:center;margin-bottom:4rem}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.testimonial-card{background:#fff;border:1px solid rgba(126,79,160,0.12);border-radius:16px;padding:2rem;display:flex;flex-direction:column;gap:1.25rem;border-top:4px solid var(--brand);box-shadow:0 4px 24px rgba(126,79,160,0.08);transition:transform 0.25s,box-shadow 0.25s}
.testimonial-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(126,79,160,0.15)}
.testimonial-stars{display:flex;gap:3px;color:var(--brand);font-size:14px}
.testimonial-text{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-style:italic;font-weight:300;line-height:1.7;color:rgba(26,13,40,0.88);flex:1}
.testimonial-placeholder{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-style:italic;color:rgba(126,79,160,0.45);line-height:1.6}
.testimonial-author{display:flex;align-items:center;gap:12px}
.author-avatar{width:40px;height:40px;border-radius:50%;background:var(--brand-pale);border:1px dashed rgba(126,79,160,0.3);display:flex;align-items:center;justify-content:center;font-size:10px;color:rgba(126,79,160,0.6);text-align:center;line-height:1.2}
.author-name{font-size:13px;font-weight:500;color:var(--text-dark)}
.author-title{font-size:11px;color:var(--brand);margin-top:1px}

/* BOOKING */
.booking-section{padding:7rem 8%;display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;background:linear-gradient(160deg,var(--dark) 0%,var(--dark-2) 100%)}
.booking-section .section-label{color:var(--gold)}
.booking-section h2{color:#f5f0fa}
.booking-info p{color:rgba(245,240,250,0.82);font-size:15px;margin-bottom:2rem}
.booking-steps{display:flex;flex-direction:column;gap:1.75rem}
.booking-step{display:flex;align-items:flex-start;gap:1.25rem}
.step-num{width:40px;height:40px;border-radius:50%;border:2px solid var(--brand-light);display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:300;color:var(--brand-light);flex-shrink:0;background:rgba(200,168,224,0.08)}
.step-title{font-size:14px;font-weight:500;color:rgba(245,240,250,0.95)}
.step-desc{font-size:13px;color:rgba(245,240,250,0.72);line-height:1.6;margin-top:2px}
.booking-widget{background:#fff;border-radius:20px;padding:2.5rem;display:flex;flex-direction:column;gap:1.5rem;box-shadow:0 12px 60px rgba(126,79,160,0.3)}
.booking-widget h3{font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:300;color:var(--text-dark)}
.booking-widget>p{font-size:13px;color:rgba(26,13,40,0.6);margin-top:-0.75rem}
.form-label{font-size:11px;letter-spacing:0.1em;text-transform:uppercase;color:var(--brand-dark);font-weight:500}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-input,.form-select{background:var(--brand-pale);border:1.5px solid rgba(126,79,160,0.15);border-radius:8px;padding:0.75rem 1rem;color:var(--text-dark);font-family:'DM Sans',sans-serif;font-size:14px;transition:border-color 0.2s,box-shadow 0.2s;outline:none;width:100%}
.form-input:focus,.form-select:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(126,79,160,0.1)}
.form-input::placeholder{color:rgba(26,13,40,0.3)}
.booking-note{font-size:12px;color:rgba(26,13,40,0.5);text-align:center;line-height:1.6}

/* FAQ */
.faq-section{background:#fff;padding:7rem 8%}
.faq-section .section-label{color:var(--brand)}
.faq-section h2{color:var(--text-dark)}
.faq-section .section-divider{background:var(--brand)}
.faq-header{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;margin-bottom:4rem}
.faq-container{max-width:680px}
.faq-item{border-bottom:1px solid rgba(126,79,160,0.15);padding:1.75rem 0}
.faq-q{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:400;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;user-select:none;color:var(--text-dark)}
.faq-q::after{content:'+';font-size:1.5rem;color:var(--brand);transition:transform 0.3s;flex-shrink:0}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{font-size:14px;line-height:1.75;color:rgba(26,13,40,0.68);max-height:0;overflow:hidden;transition:max-height 0.35s ease,padding-top 0.35s}
.faq-item.open .faq-a{max-height:400px;padding-top:1rem}

/* CONTACT */
.contact-section{padding:7rem 8%;display:grid;grid-template-columns:1fr 1fr;gap:6rem;background:linear-gradient(160deg,var(--dark-2) 0%,var(--mid) 100%)}
.contact-section .section-label{color:var(--gold)}
.contact-section h2{color:#f5f0fa}
.contact-section>div>p{font-size:15px;color:rgba(245,240,250,0.82);line-height:1.75;margin-bottom:2rem}
.contact-details{display:flex;flex-direction:column;gap:1.5rem;margin-bottom:2.5rem}
.contact-item{display:flex;align-items:flex-start;gap:1rem}
.contact-icon{width:42px;height:42px;border-radius:50%;background:rgba(200,168,224,0.1);border:1px solid rgba(200,168,224,0.25);display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0}
.contact-label{font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:var(--gold)}
.contact-value{font-size:15px;color:rgba(245,240,250,0.92);margin-top:2px}
.contact-value a{color:rgba(245,240,250,0.92);transition:color 0.2s}
.contact-value a:hover{color:var(--brand-light)}
.social-links{display:flex;gap:0.75rem;flex-wrap:wrap}
.social-link{display:inline-flex;align-items:center;gap:6px;border:1px solid rgba(200,168,224,0.3);color:rgba(245,240,250,0.75);padding:0.5rem 1rem;border-radius:100px;font-size:12px;letter-spacing:0.08em;transition:all 0.2s}
.social-link:hover{border-color:var(--brand-light);color:#fff;background:rgba(200,168,224,0.1)}
.contact-form{background:#fff;border-radius:20px;padding:2.5rem;display:flex;flex-direction:column;gap:1.25rem;box-shadow:0 12px 60px rgba(126,79,160,0.25)}
.contact-form h3{font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:300;color:var(--text-dark)}
.form-textarea{background:var(--brand-pale);border:1.5px solid rgba(126,79,160,0.15);border-radius:8px;padding:0.75rem 1rem;color:var(--text-dark);font-family:'DM Sans',sans-serif;font-size:14px;resize:vertical;min-height:110px;outline:none;width:100%;transition:border-color 0.2s,box-shadow 0.2s}
.form-textarea:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(126,79,160,0.1)}
.form-textarea::placeholder{color:rgba(26,13,40,0.3)}

/* FOOTER */
footer{background:#fff;border-top:4px solid var(--brand);padding:4rem 8% 2.5rem;box-shadow:0 -4px 48px rgba(126,79,160,0.1)}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-logo-wrap{background:#fff;display:inline-block;border-radius:12px;padding:0.5rem 0.75rem;box-shadow:0 2px 16px rgba(126,79,160,0.12);margin-bottom:1rem}
.footer-logo-img{height:85px;width:auto;object-fit:contain}
.footer-tagline{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-style:italic;color:var(--brand);line-height:1.5;margin:0.75rem 0 1rem}
.footer-brand p{font-size:13px;color:rgba(26,13,40,0.65);line-height:1.7;max-width:280px}
.footer-heading{font-size:10px;letter-spacing:0.16em;text-transform:uppercase;color:var(--brand-dark);margin-bottom:1.25rem;font-weight:500}
.footer-links{display:flex;flex-direction:column;gap:0.75rem}
.footer-links a{font-size:13px;color:rgba(26,13,40,0.65);transition:color 0.2s}
.footer-links a:hover{color:var(--brand)}
.footer-bottom{border-top:1px solid rgba(126,79,160,0.12);padding-top:2rem;display:flex;justify-content:space-between;align-items:center}
.footer-copy{font-size:12px;color:rgba(26,13,40,0.45)}
.footer-domain{font-size:12px;color:var(--brand);font-weight:500}

/* WHATSAPP */
.whatsapp-float{position:fixed;bottom:1.5rem;right:1.5rem;z-index:500;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,0.45);transition:transform 0.25s,box-shadow 0.25s}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 8px 30px rgba(37,211,102,0.55)}
.whatsapp-float svg{width:28px;height:28px;fill:#fff}

/* MOBILE */
@media(max-width:768px){
  body>nav{padding:0.6rem 5%;flex-wrap:wrap;gap:0}
  .nav-hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:6px;background:none;border:none}
  .nav-links{display:none;flex-direction:column;gap:0;width:100%;background:#fff;padding:0.5rem 0 1rem;border-top:1px solid rgba(126,79,160,0.1);order:3;margin-top:0.4rem}
  .nav-links.open{display:flex}
  .nav-links li{width:100%}
  .nav-links a{display:block;padding:0.75rem 1.2rem;font-size:14px;border-radius:8px}
  .nav-links a::after{display:none}
  .nav-links a:hover{background:var(--brand-pale)}
  .nav-cta{display:block!important;text-align:center;margin:0.5rem 1.2rem 0;padding:0.75rem 1rem!important;font-size:13px!important;border-radius:100px!important}
  .nav-logo-img{height:48px}
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-left{padding:4rem 6% 3rem;text-align:center;align-items:center}
  .hero h1{font-size:2.8rem}
  .hero-sub{text-align:center;max-width:100%}
  .hero-actions{flex-direction:column;align-items:center;width:100%}
  .btn-primary,.btn-secondary{justify-content:center;width:100%;max-width:280px}
  .hero-stats{justify-content:center;gap:2rem;flex-wrap:wrap}
  .hero-right{padding:2rem 6% 4rem}
  .hero-photo-stack{max-width:100%}
  .hero-photo-main img{height:260px}
  .services-section,.gallery-section,.testimonials-section,.faq-section,.pricing-section,.booking-section,.contact-section{padding:4rem 5%}
  .services-header,.faq-header{grid-template-columns:1fr;gap:1.5rem}
  .services-grid{grid-template-columns:1fr}
  .about-inner{grid-template-columns:1fr;gap:3rem}
  .about-section{padding:4rem 5%}
  .about-img-grid{grid-template-columns:1fr}
  .about-img-grid img{height:200px}
  .about-img-grid img:first-child{height:220px}
  .gallery-masonry{grid-template-columns:1fr 1fr;grid-auto-rows:180px}
  .gallery-header{flex-direction:column;align-items:flex-start;gap:1rem}
  .before-after-strip{grid-template-columns:1fr;gap:2rem;padding:4rem 5%}
  .pricing-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
  .testimonials-grid{grid-template-columns:1fr}
  .booking-section,.contact-section{grid-template-columns:1fr;gap:3rem}
  footer{padding:3rem 5% 2rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .footer-brand{grid-column:1/-1}
  .footer-bottom{flex-direction:column;gap:0.5rem;text-align:center}
  h2{font-size:2rem}
  .form-row{grid-template-columns:1fr}
  .location-banner{flex-direction:column;text-align:center}
  .ba-divider{flex-direction:row;padding:0}
}
@media(max-width:480px){
  h1{font-size:2.2rem}
  h2{font-size:1.75rem}
  .footer-grid{grid-template-columns:1fr}
  .pricing-grid{max-width:100%}
  .gallery-masonry{grid-template-columns:1fr;grid-auto-rows:220px}
  .gallery-item.wide,.gallery-item.tall{grid-column:span 1;grid-row:span 1}
}
/* =========================
   MOBILE RESPONSIVE STYLES
========================= */

@media screen and (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container,
  .hero,
  .hero-content,
  .section,
  .content,
  .grid,
  .features,
  .stats,
  .footer-content {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    height: auto;
    text-align: center;
    padding-top: 120px;
  }

  .hero-content {
    width: 100%;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  /* BUTTONS */
  .hero-actions,
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-actions a,
  .cta-buttons a,
  button {
    width: 100%;
  }

  /* NAVIGATION */
  nav {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* IMAGES */
  img {
    max-width: 100%;
    height: auto;
  }

  /* CARDS / GRIDS */
  .grid,
  .services-grid,
  .gallery-grid,
  .pricing-grid,
  .stats {
    grid-template-columns: 1fr !important;
  }

  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

}