/* ============================================
   LUXE ONLY – Complete Static CSS
   ============================================ */

/* --- Reset & Base --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

:root{
  --navy:#0f1a2e;
  --navy-mid:#172443;
  --navy-light:#1e3a5f;
  --orange:#e86a17;
  --orange-light:#f0863a;
  --orange-glow:rgba(232,106,23,.12);
  --blue:#3b82f6;
  --blue-light:#60a5fa;
  --white:#fff;
  --off-white:#f5f6f9;
  --light-grey:#e8eaef;
  --mid-grey:#8a94a6;
  --text-dark:#0f1a2e;
  --text-body:#2a3347;
  --border:#e5e7eb;
  --radius:0.75rem;
  --green-bg:#f0fdf4;
  --green-border:#bbf7d0;
  --green-text:#166534;
  --red-bg:#fef2f2;
  --red-border:#fecaca;
  --red-text:#991b1b;
}

html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'DM Sans',sans-serif;color:var(--text-body);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding-top:6.25rem}
h1,h2,h3,h4,h5,h6{font-family:'Playfair Display',serif;line-height:1.15}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}
button,input,select,textarea{font-family:inherit;font-size:inherit;border:none;outline:none}

/* --- Layout --- */
.container{max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:640px){.container{padding:0 1.5rem}}
@media(min-width:1024px){.container{padding:0 2rem}}

.grid{display:grid;gap:1.75rem}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}
.grid-4{grid-template-columns:repeat(2,1fr)}
.grid-5{grid-template-columns:1fr}
@media(min-width:640px){
  .grid-2{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-5{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:768px){
  .grid-3{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1024px){
  .grid-2-lg{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(4,1fr)}
  .grid-5{grid-template-columns:repeat(5,1fr)}
}

.flex{display:flex}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.flex-wrap{flex-wrap:wrap}
.text-center{text-align:center}.text-left{text-align:left}
.mx-auto{margin-left:auto;margin-right:auto}
.relative{position:relative}.overflow-hidden{overflow:hidden}

/* --- Animations --- */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes scaleIn{from{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}
@keyframes slideLeft{from{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}
@keyframes slideRight{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}
@keyframes pulseDot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)}}

.anim{opacity:0;will-change:transform,opacity}
.anim.visible{animation-fill-mode:both}
.anim-fade-up.visible{animation:fadeUp .6s ease-out both}
.anim-fade-in.visible{animation:fadeIn .5s ease-out both}
.anim-scale-in.visible{animation:scaleIn .4s ease-out both}
.anim-slide-left.visible{animation:slideLeft .6s ease-out both}
.anim-slide-right.visible{animation:slideRight .6s ease-out both}

.pulse-dot{animation:pulseDot 2s ease-in-out infinite}

/* Hover lift */
.hover-lift{transition:transform .2s ease,box-shadow .3s ease}
.hover-lift:hover{transform:translateY(-6px)}

/* Top bar animation on cards */
.card-bar{position:relative;overflow:hidden}
.card-bar::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--orange);transform:scaleX(0);transform-origin:left;transition:transform .3s ease}
.card-bar:hover::before{transform:scaleX(1)}
.card-bar-bottom::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--orange);transform:scaleX(0);transform-origin:left;transition:transform .3s ease}
.card-bar-bottom:hover::after{transform:scaleX(1)}

/* --- Top Strip --- */
.top-strip{position:fixed;top:0;left:0;right:0;z-index:60;background:var(--navy);color:var(--white);font-size:.75rem;font-weight:500}
.top-strip .inner{display:flex;align-items:center;justify-content:space-between;height:2.25rem}
.top-strip a{color:var(--orange);transition:color .2s}
.top-strip a:hover{color:var(--white)}
.top-strip .phone-icon{width:12px;height:12px;margin-right:6px;vertical-align:middle}
.top-strip .separator{color:rgba(255,255,255,.65);margin:0 .75rem}
.top-strip .location{color:rgba(255,255,255,.85)}
.top-strip .inner span.hidden-sm:last-of-type{color:#fff !important}

/* --- Navbar --- */
.navbar{position:fixed;top:2.25rem;left:0;right:0;z-index:50;background:var(--white);transition:box-shadow .3s}
.navbar.scrolled{box-shadow:0 4px 20px rgba(0,0,0,.08);border-bottom:1px solid var(--border)}
.nav-main{display:flex;align-items:center;justify-content:space-between;height:4rem}
.nav-logo img{height:2rem;transition:transform .2s}
.nav-logo:hover img{transform:scale(1.05)}
.nav-links{display:none;align-items:center;gap:.25rem}
.nav-link{padding:.5rem 1rem;font-size:.875rem;font-weight:500;border-radius:.5rem;color:rgba(15,26,46,.7);transition:all .2s}
.nav-link:hover,.nav-link.active{color:var(--orange);background:rgba(232,106,23,.05)}
.nav-dropdown{position:relative}
.nav-dropdown-btn{display:flex;align-items:center;gap:4px;cursor:pointer;background:none;padding:.5rem 1rem;font-size:.875rem;font-weight:500;border-radius:.5rem;color:rgba(15,26,46,.7);transition:all .2s}
.nav-dropdown-btn:hover,.nav-dropdown-btn.active{color:var(--orange);background:rgba(232,106,23,.05)}
.nav-dropdown-btn svg{transition:transform .2s}
.nav-dropdown-btn.open svg{transform:rotate(180deg)}
.nav-dropdown-menu{position:absolute;top:100%;left:0;margin-top:.5rem;width:18rem;background:var(--white);border-radius:.75rem;box-shadow:0 20px 60px rgba(0,0,0,.12);border:1px solid var(--border);overflow:hidden;opacity:0;transform:translateY(8px) scale(.97);pointer-events:none;transition:all .15s ease}
.nav-dropdown-menu.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.nav-dropdown-item{display:block;padding:1rem 1.25rem;border-bottom:1px solid rgba(229,231,235,.5);transition:background .2s}
.nav-dropdown-item:last-child{border-bottom:none}
.nav-dropdown-item:hover{background:rgba(232,106,23,.05)}
.nav-dropdown-item .title{font-size:.875rem;font-weight:600;color:var(--text-dark)}
.nav-dropdown-item .desc{font-size:.75rem;color:var(--mid-grey);margin-top:2px}
.nav-cta{display:none;align-items:center;gap:.75rem}

/* Mobile */
.nav-hamburger{display:flex;padding:.5rem;background:none;color:var(--text-dark);cursor:pointer}
.nav-hamburger svg{width:24px;height:24px}
.mobile-menu{display:none;background:var(--white);border-top:1px solid var(--border);padding:1rem;overflow:hidden;transition:max-height .3s ease}
.mobile-menu.open{display:block}
.mobile-menu a{display:block;padding:.75rem 1rem;font-size:.875rem;font-weight:500;border-radius:.5rem;transition:background .2s}
.mobile-menu a:hover{background:var(--off-white)}
.mobile-menu .mobile-cta{display:block;padding:.75rem 1rem;background:var(--orange);color:var(--white);text-align:center;font-size:.875rem;font-weight:600;border-radius:.5rem;margin-top:.75rem}

@media(min-width:1024px){
  .nav-links{display:flex}
  .nav-cta{display:flex}
  .nav-hamburger{display:none}
}

/* --- Buttons --- */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-weight:600;font-size:.875rem;border-radius:.75rem;padding:1rem 2rem;transition:all .2s;cursor:pointer;border:none}
.btn-primary{background:var(--orange);color:var(--white);box-shadow:0 8px 24px rgba(232,106,23,.25)}
.btn-primary:hover{background:var(--orange-light);transform:translateY(-2px);box-shadow:0 12px 32px rgba(232,106,23,.3)}
.btn-outline{border:1px solid rgba(255,255,255,.2);color:var(--white);background:transparent}
.btn-outline:hover{border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.05)}
.btn-outline-dark{border:1px solid var(--border);color:var(--text-dark);background:transparent}
.btn-outline-dark:hover{border-color:var(--orange);background:rgba(232,106,23,.05)}
.btn-white{background:var(--white);color:var(--orange);font-weight:700}
.btn-white:hover{background:var(--off-white);transform:translateY(-2px)}

/* --- Badge --- */
.badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(232,106,23,.1);border:1px solid rgba(232,106,23,.2);color:var(--orange);padding:.375rem 1rem;border-radius:9999px;font-size:.75rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1.5rem}

/* --- Section Header --- */
.section-header{margin-bottom:3.5rem}
.section-header.centered{text-align:center}
.section-header .label{font-size:.75rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--orange);margin-bottom:.75rem}
.section-header h2{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:700;margin-bottom:1rem;color:var(--text-dark)}
.section-header.light h2{color:var(--white)}
.section-header p{font-size:1rem;line-height:1.7;max-width:36rem;color:var(--mid-grey)}
.section-header.centered p{margin-left:auto;margin-right:auto}
.section-header.light p{color:rgba(255,255,255,.6)}

/* --- Hero Section --- */
.hero{position:relative;min-height:100vh;background:var(--navy);display:flex;align-items:center;overflow:hidden}
.hero .grid-bg{position:absolute;inset:0;opacity:.03;background-image:linear-gradient(rgba(255,255,255,1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px);background-size:60px 60px}
.hero .radial-bg{position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 70% 40%,rgba(232,106,23,.12),transparent 60%),radial-gradient(ellipse 60% 80% at 10% 80%,rgba(30,58,95,.8),transparent 60%);pointer-events:none}
.hero-content{max-width:42rem;padding:4rem 0 4rem}
.hero h1{font-size:clamp(2.25rem,5vw,3.75rem);font-weight:800;color:var(--white);line-height:1.1;margin-bottom:1.5rem}
.hero h1 span{color:var(--orange)}
.hero p{color:rgba(255,255,255,.6);font-size:1.125rem;line-height:1.7;max-width:36rem;margin-bottom:2.5rem}
.hero-stats{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3.5rem;padding-top:2.5rem;border-top:1px solid rgba(255,255,255,.1)}
.hero-stat .num{font-family:'Playfair Display',serif;font-size:1.875rem;font-weight:700;color:var(--orange)}
.hero-stat .label{font-size:.75rem;color:rgba(255,255,255,.4);margin-top:.25rem}

/* --- Page Hero (inner pages) --- */
.page-hero{position:relative;background:var(--navy);padding:6rem 0 5rem;overflow:hidden}
.page-hero .grid-bg{position:absolute;inset:0;opacity:.03;background-image:linear-gradient(rgba(255,255,255,1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px);background-size:60px 60px}
.page-hero .radial-bg{position:absolute;inset:0;background:linear-gradient(135deg,rgba(232,106,23,.1),transparent,rgba(30,58,95,.2));pointer-events:none}
.page-hero .breadcrumb{display:flex;align-items:center;gap:.5rem;margin-bottom:1.5rem;font-size:.75rem}
.page-hero .breadcrumb a{color:rgba(255,255,255,.4);transition:color .2s}
.page-hero .breadcrumb a:hover{color:var(--orange)}
.page-hero .breadcrumb .sep{color:rgba(255,255,255,.25)}
.page-hero .breadcrumb .current{color:var(--orange)}
.page-hero-content{max-width:42rem;position:relative;z-index:1}
.page-hero h1{font-size:clamp(2.25rem,5vw,3.75rem);font-weight:800;color:var(--white);line-height:1.1;margin-bottom:1.25rem}
.page-hero h1 span{color:var(--orange)}
.page-hero .desc{color:rgba(255,255,255,.6);font-size:1.125rem;line-height:1.7;max-width:36rem;margin-bottom:2rem}

/* --- Sections --- */
.section{padding:6rem 0}
.section-navy{background:var(--navy)}
.section-off-white{background:var(--off-white)}
.section-white{background:var(--white)}
.section-primary{background:var(--orange)}
.section-cta{background:linear-gradient(135deg,var(--navy),var(--navy-light));position:relative;overflow:hidden}
.section-cta .radial{position:absolute;inset:0;background:radial-gradient(ellipse 70% 70% at 50% 50%,rgba(232,106,23,.12),transparent 70%);pointer-events:none}

/* --- Service Cards --- */
.service-card{background:var(--white);border-radius:1rem;padding:2.5rem;border:1px solid var(--border);transition:box-shadow .3s;position:relative;overflow:hidden}
.service-card:hover{box-shadow:0 20px 60px rgba(0,0,0,.08)}
.service-card .icon-box{width:4rem;height:4rem;background:var(--orange-glow);border-radius:1rem;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.service-card .icon-box svg{width:28px;height:28px;color:var(--orange)}
.service-card h3{font-family:'Playfair Display',serif;font-size:1.25rem;font-weight:700;color:var(--text-dark);margin-bottom:.75rem}
.service-card p{color:var(--mid-grey);font-size:.875rem;line-height:1.7}
.service-card .link{color:var(--orange);font-weight:600;font-size:.875rem;display:inline-flex;align-items:center;gap:6px;margin-top:1.5rem;transition:gap .2s}
.service-card .link:hover{gap:10px}

/* Small icon cards */
.icon-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:1rem;padding:1.75rem;transition:all .3s}
.icon-card:hover{background:rgba(232,106,23,.06);border-color:rgba(232,106,23,.2)}
.icon-card svg{width:28px;height:28px;color:var(--orange);margin-bottom:1rem}
.icon-card h4{font-family:'Playfair Display',serif;font-size:.875rem;font-weight:700;color:var(--white);margin-bottom:.5rem}
.icon-card p{color:rgba(255,255,255,.5);font-size:.75rem;line-height:1.7}

/* White icon cards (values) */
.value-card{background:var(--off-white);border-radius:1rem;padding:2rem;border:1px solid var(--border);transition:all .3s}
.value-card:hover{border-color:var(--orange);background:var(--orange-glow);box-shadow:0 12px 40px rgba(0,0,0,.06)}
.value-card svg{width:32px;height:32px;color:var(--orange);margin-bottom:1rem}
.value-card h3{font-family:'Playfair Display',serif;font-size:1.125rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.value-card p{color:var(--mid-grey);font-size:.875rem;line-height:1.7}

/* Industry cards */
.industry-card{border:1px solid var(--border);border-radius:.75rem;padding:2rem;text-align:center;transition:all .3s;cursor:default}
.industry-card:hover{border-color:var(--orange);background:var(--orange-glow);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.industry-card svg{width:32px;height:32px;color:var(--orange);margin:0 auto .75rem}
.industry-card h4{font-size:.875rem;font-weight:600;color:var(--text-dark)}

/* Stats box */
.stat-box{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:.75rem;padding:2rem;text-align:center}
.stat-box .num{font-family:'Playfair Display',serif;font-size:1.875rem;font-weight:700;color:var(--orange)}
.stat-box .label{color:rgba(255,255,255,.6);font-size:.875rem;margin-top:.5rem}

/* Stats bar */
.stats-bar{background:var(--orange);padding:3.5rem 0}
.stats-bar .stat{text-align:center}
.stats-bar .num{font-family:'Playfair Display',serif;font-size:1.875rem;font-weight:800;color:var(--white)}
.stats-bar .label{color:rgba(255,255,255,.7);font-size:.875rem;margin-top:.25rem}

/* Process steps */
.process-step{background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.06);padding:1.75rem;transition:all .3s}
.process-step:hover{background:rgba(232,106,23,.05);border-color:rgba(232,106,23,.2)}
.process-step .num{font-family:'Playfair Display',serif;font-size:2.5rem;font-weight:800;color:rgba(232,106,23,.9);margin-bottom:1rem}
.process-step h4{color:var(--white);font-weight:700;font-size:.875rem;margin-bottom:.5rem}
.process-step p{color:rgba(255,255,255,.5);font-size:.75rem;line-height:1.7}

/* Commitment items */
.commit-item{border-left:3px solid var(--orange);padding-left:1.5rem}
.commit-item svg{width:20px;height:20px;color:var(--orange);margin-bottom:.5rem}
.commit-item h4{color:var(--white);font-weight:700;font-size:.875rem;margin-bottom:.5rem}
.commit-item p{color:rgba(255,255,255,.5);font-size:.875rem;line-height:1.7}

/* Quote box */
.quote-box{background:var(--navy);border-radius:1rem;padding:2.5rem;position:relative;overflow:hidden}
.quote-box .radial{position:absolute;inset:0;background:radial-gradient(ellipse 80% 80% at 20% 20%,rgba(232,106,23,.12),transparent 60%);pointer-events:none}
.quote-box .mark{font-family:'Playfair Display',serif;font-size:3rem;color:var(--orange);line-height:1}
.quote-box blockquote{font-family:'Playfair Display',serif;font-size:1.125rem;font-weight:600;color:var(--white);line-height:1.6;margin:1rem 0 1.5rem}
.quote-box .author{color:var(--orange);font-weight:700;font-size:.875rem}
.quote-box .author-role{color:rgba(255,255,255,.5);font-size:.875rem}

/* Feature list */
.feature-list li{display:flex;align-items:flex-start;gap:.625rem;font-size:.875rem;color:var(--mid-grey);margin-bottom:.625rem}
.feature-list svg{width:14px;height:14px;color:var(--orange);margin-top:4px;flex-shrink:0}

/* Info rows */
.info-row{display:flex;align-items:center;gap:1rem;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.06);border-radius:.75rem;padding:1rem 1.25rem;transition:all .2s}
.info-row:hover{background:rgba(232,106,23,.08);border-color:rgba(232,106,23,.2)}
.info-row svg{width:20px;height:20px;color:var(--orange);flex-shrink:0}
.info-row .title{font-weight:600;color:var(--white);font-size:.875rem}
.info-row .sub{color:rgba(255,255,255,.4);font-size:.75rem}

/* --- Testimonials Scroller --- */
.testimonials-scroll{display:flex;gap:1.5rem;overflow-x:auto;padding:0 1rem 1rem;scroll-snap-type:x mandatory;-ms-overflow-style:none;scrollbar-width:none}
.testimonials-scroll::-webkit-scrollbar{display:none}
.testimonial-card{flex-shrink:0;width:340px;scroll-snap-align:start;background:var(--white);border-radius:1rem;padding:2rem;border:1px solid var(--border);transition:box-shadow .3s}
.testimonial-card:hover{box-shadow:0 12px 40px rgba(0,0,0,.06)}
.testimonial-card .quote-mark{font-family:'Playfair Display',serif;font-size:3rem;color:rgba(232,106,23,.9);line-height:1;margin-bottom:.75rem}
.testimonial-card .quote-text{color:var(--mid-grey);font-size:.875rem;line-height:1.7;font-style:italic;margin-bottom:1.5rem}
.testimonial-card .author-row{display:flex;align-items:center;gap:.75rem}
.testimonial-card .avatar{width:2.5rem;height:2.5rem;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:700;font-size:.75rem;flex-shrink:0}
.testimonial-card .stars{color:#f59e0b;font-size:.75rem;margin-bottom:2px}
.testimonial-card .name{font-weight:700;color:var(--text-dark);font-size:.875rem}
.testimonial-card .role{color:var(--mid-grey);font-size:.75rem}

.scroll-btn{width:2.5rem;height:2.5rem;border-radius:50%;border:1px solid var(--border);background:var(--white);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s}
.scroll-btn:hover{border-color:var(--orange);color:var(--orange)}
.scroll-btn svg{width:18px;height:18px}

/* --- Contact --- */
.contact-info-card{background:var(--white);border-radius:.75rem;padding:1.25rem;border:1px solid var(--border);display:flex;gap:1rem;align-items:flex-start;transition:all .2s}
.contact-info-card:hover{border-color:var(--orange);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.contact-info-card .icon-box{width:3rem;height:3rem;background:var(--orange-glow);border-radius:.75rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-card .icon-box svg{width:20px;height:20px;color:var(--orange)}
.contact-info-card h4{font-weight:700;font-size:.875rem;color:var(--text-dark);margin-bottom:.25rem}
.contact-info-card .sub{font-size:.75rem;color:var(--mid-grey);margin-bottom:.25rem}
.contact-info-card a{color:var(--orange);font-weight:600;font-size:.875rem;transition:color .2s}
.contact-info-card a:hover{color:var(--orange-light)}

.form-card{background:var(--white);border-radius:1rem;padding:2rem;border:1px solid var(--border);box-shadow:0 4px 12px rgba(0,0,0,.03)}
@media(min-width:640px){.form-card{padding:2.5rem}}
.form-card h2{font-family:'Playfair Display',serif;font-size:1.25rem;font-weight:700;color:var(--text-dark);margin-bottom:.5rem}
.form-card .form-sub{color:var(--mid-grey);font-size:.875rem;margin-bottom:2rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:.75rem;font-weight:600;color:var(--text-dark);margin-bottom:.375rem}
.form-group label .req{color:var(--orange)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem 1rem;border:1px solid var(--border);border-radius:.5rem;font-size:.875rem;color:var(--text-dark);background:var(--white);transition:all .2s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(232,106,23,.1)}
.form-group textarea{resize:vertical}
.form-group select{appearance:none;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a94a6' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}
.form-row{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:640px){.form-row{grid-template-columns:1fr 1fr}}
.form-submit{width:100%;padding:1rem;background:var(--orange);color:var(--white);font-weight:600;font-size:1rem;border-radius:.75rem;cursor:pointer;transition:all .2s;border:none;box-shadow:0 8px 24px rgba(232,106,23,.25)}
.form-submit:hover{background:var(--orange-light);transform:translateY(-2px);box-shadow:0 12px 32px rgba(232,106,23,.3)}
.form-submit:disabled{opacity:.6;cursor:not-allowed;transform:none}
.form-note{text-align:center;font-size:.75rem;color:var(--mid-grey);margin-top:1rem}
.form-note a{color:var(--orange);transition:color .2s}
.form-note a:hover{text-decoration:underline}
.form-success{background:var(--green-bg);border:1px solid var(--green-border);border-radius:.75rem;padding:1.25rem;text-align:center;color:var(--green-text);font-weight:600;font-size:.875rem;margin-top:1rem;display:none}
.form-success.visible{display:block;animation:scaleIn .3s ease-out}
.form-error{background:var(--red-bg);border:1px solid var(--red-border);border-radius:.75rem;padding:1.25rem;text-align:center;color:var(--red-text);font-weight:600;font-size:.875rem;margin-top:1rem;display:none}
.form-error.visible{display:block;animation:scaleIn .3s ease-out}

/* Contact grid layout */
.contact-grid{display:grid;grid-template-columns:1fr;gap:4rem}
@media(min-width:1024px){.contact-grid{grid-template-columns:2fr 3fr}}

/* --- Map Section --- */
.map-section{background:var(--white);padding:4rem 0}
.map-section .map-header{text-align:center;margin-bottom:2rem}
.map-section .map-wrap{border-radius:1rem;overflow:hidden;border:1px solid var(--border);box-shadow:0 4px 12px rgba(0,0,0,.03)}

/* --- Legal Pages (Privacy, Terms) --- */
.legal-content{background:var(--off-white);padding:5rem 0}
.legal-card{max-width:48rem;margin:0 auto;background:var(--white);border-radius:1rem;padding:2rem;border:1px solid var(--border);box-shadow:0 4px 12px rgba(0,0,0,.03)}
@media(min-width:640px){.legal-card{padding:3rem}}
.legal-card .effective{color:var(--mid-grey);font-size:.875rem;margin-bottom:2rem}
.legal-card p{color:var(--text-body);font-size:.875rem;line-height:1.7;margin-bottom:1.25rem}
.legal-card h3{font-family:'Playfair Display',serif;font-size:1.125rem;font-weight:700;color:var(--text-dark);margin-top:2rem;margin-bottom:.75rem}
.legal-card ul{margin-bottom:1.25rem;padding-left:0}
.legal-card ul li{display:flex;align-items:flex-start;gap:.5rem;font-size:.875rem;color:var(--text-body);margin-bottom:.375rem}
.legal-card ul li::before{content:'•';color:var(--orange);font-weight:700;flex-shrink:0}
.legal-card a{color:var(--orange);transition:color .2s}
.legal-card a:hover{text-decoration:underline}

/* --- Footer --- */
.footer{background:var(--navy);color:var(--white);padding:4rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:3rem;margin-bottom:3.5rem}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.footer-brand p{color:rgba(255,255,255,.5);font-size:.875rem;line-height:1.7;margin:1rem 0 1.5rem}
.footer-logo{height:2.5rem}
.footer-social{display:flex;gap:.625rem}
.footer-social a{width:2.25rem;height:2.25rem;background:rgba(255,255,255,.05);border-radius:.5rem;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);transition:all .2s}
.footer-social a:hover{background:var(--orange);color:var(--white)}
.footer-social svg{width:16px;height:16px}
.footer h5{font-family:'DM Sans',sans-serif;font-weight:700;font-size:.875rem;margin-bottom:1.25rem;letter-spacing:.03em}
.footer-links li{margin-bottom:.625rem}
.footer-links a{color:rgba(255,255,255,.5);font-size:.875rem;transition:color .2s}
.footer-links a:hover{color:var(--orange)}
.footer-contact-item{display:flex;align-items:flex-start;gap:.625rem;font-size:.875rem;color:rgba(255,255,255,.5);margin-bottom:.75rem}
.footer-contact-item svg{width:14px;height:14px;color:var(--orange);margin-top:3px;flex-shrink:0}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;display:flex;flex-direction:column;align-items:center;gap:.75rem;font-size:.75rem;color:rgba(255,255,255,.3)}
@media(min-width:640px){.footer-bottom{flex-direction:row;justify-content:space-between}}
.footer-bottom a{color:var(--orange);transition:color .2s}
.footer-bottom a:hover{text-decoration:underline}

/* --- 404 --- */
.not-found{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--off-white);text-align:center}
.not-found h1{font-size:3rem;font-weight:700;margin-bottom:1rem}
.not-found p{font-size:1.25rem;color:var(--mid-grey);margin-bottom:1rem}
.not-found a{color:var(--orange);text-decoration:underline}

/* --- Urgent CTA strip --- */
.urgent-strip{background:var(--orange);padding:3.5rem 0}
.urgent-strip .inner{display:flex;flex-direction:column;align-items:center;gap:1.5rem;text-align:center}
@media(min-width:640px){.urgent-strip .inner{flex-direction:row;justify-content:space-between;text-align:left}}
.urgent-strip h2{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:700;color:var(--white)}
.urgent-strip p{color:rgba(255,255,255,.75);font-size:.875rem;margin-top:.25rem}

/* --- Sticky Call Button (Mobile) --- */
.sticky-call{position:fixed;bottom:1.5rem;right:1.5rem;z-index:50;display:flex;align-items:center;gap:.5rem;background:var(--orange);color:var(--white);padding:.875rem 1.25rem;border-radius:9999px;font-weight:700;font-size:.875rem;box-shadow:0 8px 24px rgba(232,106,23,.35);transition:all .2s;text-decoration:none}
.sticky-call:hover{background:var(--orange-light);box-shadow:0 12px 32px rgba(232,106,23,.4);transform:translateY(-2px)}
@media(min-width:768px){.sticky-call{display:none}}

/* --- SVG Icons (inline) --- */
.icon{display:inline-block;vertical-align:middle;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* --- Utility --- */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.hidden-sm{display:none}@media(min-width:640px){.hidden-sm{display:inline}}
.hidden-lg{display:block}@media(min-width:1024px){.hidden-lg{display:none}}
.show-lg{display:none}@media(min-width:1024px){.show-lg{display:block}}
