/* ===== ALAMO POOL RESURFACING — San Antonio TX ===== */
/* Palette: desert-sand #c2956b, terracotta #c75b39, deep-teal #1a5e63, cream #fdf6ec */

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

/* ---------- Reset & Base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --sand:#c2956b;--terracotta:#c75b39;--teal:#1a5e63;--cream:#fdf6ec;
  --dark:#1b2a2b;--white:#fff;--gray:#5e6b6c;--light-gray:#e8e0d6;
  --font-body:'Inter',sans-serif;--font-heading:'Playfair Display',serif;
  --max-w:1200px;--radius:12px;--shadow:0 4px 24px rgba(0,0,0,.08);
  --transition:.3s ease;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);color:var(--dark);background:var(--cream);line-height:1.7;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color var(--transition)}
ul{list-style:none}
h1,h2,h3,h4{font-family:var(--font-heading);line-height:1.25}
.container{width:90%;max-width:var(--max-w);margin:0 auto}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 2rem;border-radius:50px;font-weight:600;font-size:.95rem;cursor:pointer;border:none;transition:all var(--transition)}
.btn-primary{background:var(--terracotta);color:var(--white)}
.btn-primary:hover{background:#a94a2e;transform:translateY(-2px);box-shadow:0 6px 20px rgba(199,91,57,.35)}
.btn-secondary{background:var(--teal);color:var(--white)}
.btn-secondary:hover{background:#14494d;transform:translateY(-2px)}
.btn-outline{border:2px solid var(--teal);color:var(--teal);background:transparent}
.btn-outline:hover{background:var(--teal);color:var(--white)}

/* ---------- Header / Nav ---------- */
.header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:rgba(253,246,236,.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--light-gray);transition:box-shadow var(--transition)}
.header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.header .container{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{display:flex;align-items:center;gap:.6rem;font-family:var(--font-heading);font-size:1.35rem;font-weight:700;color:var(--teal)}
.logo img{width:40px;height:40px}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{font-weight:500;font-size:.9rem;color:var(--dark);position:relative}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--terracotta);transition:width var(--transition)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-links a:hover{color:var(--terracotta)}
.nav-cta{background:var(--terracotta);color:var(--white)!important;padding:.55rem 1.4rem;border-radius:50px;font-weight:600}
.nav-cta::after{display:none!important}
.nav-cta:hover{background:#a94a2e}

/* Mobile hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px}
.hamburger span{width:26px;height:3px;background:var(--dark);border-radius:3px;transition:var(--transition)}

/* Dropdown (nav) */
.nav-dropdown{position:relative}
.nav-dropdown>a::after{display:none!important}
.nav-dropdown .dropdown-menu{position:absolute;top:100%;left:0;min-width:200px;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:.5rem 0;opacity:0;visibility:hidden;transform:translateY(8px);transition:all var(--transition)}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown.open .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-menu a{display:block;padding:.55rem 1.2rem;font-size:.88rem;color:var(--dark)}
.dropdown-menu a:hover{background:var(--cream);color:var(--terracotta)}
/* Open state on mobile — white text on dark bg */
.nav-dropdown.open .dropdown-menu{background:var(--dark)}
.nav-dropdown.open .dropdown-menu a{color:var(--white)}
.nav-dropdown.open .dropdown-menu a:hover{background:rgba(255,255,255,.1);color:var(--sand)}

/* ---------- Icon class ---------- */
.icon-img{width:48px;height:48px;color:var(--teal)}
.icon-img-sm{width:24px;height:24px;color:var(--teal)}
.service-card .icon .icon-img{width:32px;height:32px}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;padding-top:72px;background:linear-gradient(135deg,var(--dark) 0%,var(--teal) 100%);overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(27,42,43,.7),rgba(26,94,99,.6)),url('../images/09-hero.webp') center/cover no-repeat;pointer-events:none}
.hero .container{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;position:relative;z-index:2}
.hero-content{color:var(--white)}
.hero-badge{display:inline-block;background:rgba(194,149,107,.2);color:var(--sand);padding:.4rem 1rem;border-radius:50px;font-size:.82rem;font-weight:600;margin-bottom:1.2rem;border:1px solid rgba(194,149,107,.3)}
.hero h1{font-size:3.2rem;margin-bottom:1rem;line-height:1.15}
.hero h1 span{color:var(--sand)}
.hero p{font-size:1.1rem;opacity:.9;margin-bottom:2rem;max-width:480px}
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.stat-card{background:rgba(255,255,255,.1);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);padding:1.8rem;text-align:center;color:var(--white)}
.stat-card .stat-number{font-family:var(--font-heading);font-size:2.8rem;font-weight:700;color:var(--sand)}
.stat-card .stat-label{font-size:.85rem;opacity:.8;margin-top:.3rem}

/* ---------- Section Shared ---------- */
.section{padding:5rem 0}
.section-light{background:var(--white)}
.section-cream{background:var(--cream)}
.section-dark{background:var(--dark);color:var(--white)}
.section-header{text-align:center;max-width:640px;margin:0 auto 3.5rem}
.section-header .overline{color:var(--terracotta);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:2px;margin-bottom:.5rem}
.section-header h2{font-size:2.4rem;margin-bottom:.8rem}
.section-header p{color:var(--gray);font-size:1.05rem}
.section-dark .section-header p{color:rgba(255,255,255,.7)}

/* ---------- Services Cards ---------- */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.service-card{background:var(--white);border-radius:var(--radius);padding:2.2rem;border:1px solid var(--light-gray);transition:all var(--transition);position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,var(--teal),var(--terracotta));transform:scaleX(0);transition:transform var(--transition);transform-origin:left}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.service-card:hover::before{transform:scaleX(1)}
.service-card .icon{width:56px;height:56px;border-radius:12px;background:linear-gradient(135deg,rgba(26,94,99,.1),rgba(199,91,57,.1));display:flex;align-items:center;justify-content:center;font-size:1.6rem;margin-bottom:1.2rem}
.service-card h3{font-size:1.25rem;margin-bottom:.6rem}
.service-card p{color:var(--gray);font-size:.92rem}
.service-card .learn-more{display:inline-flex;align-items:center;gap:.3rem;color:var(--terracotta);font-weight:600;font-size:.88rem;margin-top:1rem}
.service-card .learn-more:hover{gap:.6rem}

/* ---------- Why Choose (alternating rows) ---------- */
.alt-row{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;margin-bottom:4rem}
.alt-row:last-child{margin-bottom:0}
.alt-row.reverse .alt-image{order:-1}
.alt-image{border-radius:var(--radius);overflow:hidden;background:var(--light-gray);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center}
.alt-image .placeholder-img{width:100%;height:100%;background:linear-gradient(135deg,var(--teal),var(--sand));display:flex;align-items:center;justify-content:center;color:var(--white);font-size:3rem}
.alt-image img{width:100%;height:100%;object-fit:cover}
.alt-content h3{font-size:1.6rem;margin-bottom:1rem}
.alt-content p{color:var(--gray);margin-bottom:1.2rem}
.check-list li{display:flex;align-items:flex-start;gap:.6rem;margin-bottom:.6rem;font-size:.95rem}
.check-list li::before{content:'✓';color:var(--teal);font-weight:700;flex-shrink:0}

/* ---------- Process Timeline ---------- */
.timeline{position:relative;max-width:700px;margin:0 auto}
.timeline::before{content:'';position:absolute;left:24px;top:0;bottom:0;width:2px;background:var(--light-gray)}
.timeline-item{display:flex;gap:1.5rem;margin-bottom:2.5rem;position:relative}
.timeline-dot{width:50px;height:50px;border-radius:50%;background:var(--teal);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:700;font-family:var(--font-heading);font-size:1.1rem;flex-shrink:0;position:relative;z-index:2}
.timeline-content{background:var(--white);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow);flex:1}
.timeline-content h4{font-size:1.15rem;margin-bottom:.4rem;color:var(--teal)}
.timeline-content p{color:var(--gray);font-size:.92rem}

/* ---------- Testimonials Masonry ---------- */
.testimonials-grid{columns:3;column-gap:1.5rem}
.testimonial-card{break-inside:avoid;background:var(--white);border-radius:var(--radius);padding:1.8rem;margin-bottom:1.5rem;border:1px solid var(--light-gray);transition:all var(--transition)}
.testimonial-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.testimonial-stars{color:var(--sand);font-size:1rem;margin-bottom:.8rem}
.testimonial-card blockquote{font-size:.95rem;color:var(--gray);line-height:1.7;margin-bottom:1rem;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:.8rem}
.testimonial-avatar{width:44px;height:44px;border-radius:50%;background:var(--teal);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1rem}
.testimonial-name{font-weight:600;font-size:.9rem}
.testimonial-location{font-size:.8rem;color:var(--gray)}

/* ---------- Service Areas ---------- */
.areas-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.areas-list{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.area-tag{background:var(--white);padding:.75rem 1.2rem;border-radius:var(--radius);font-size:.9rem;font-weight:500;border:1px solid var(--light-gray);display:flex;align-items:center;gap:.5rem;transition:all var(--transition)}
.area-tag:hover{border-color:var(--terracotta);color:var(--terracotta);transform:translateX(4px)}
.area-tag::before{content:'📍';font-size:.8rem}
.areas-map{border-radius:var(--radius);display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:1.2rem;color:var(--gray);width:100%}
.areas-map iframe{width:100%;border-radius:12px}

/* ---------- CTA Banner ---------- */
.cta-banner{background:linear-gradient(135deg,var(--terracotta),var(--teal));padding:4rem 0;text-align:center;color:var(--white)}
.cta-banner h2{font-size:2.2rem;margin-bottom:.8rem}
.cta-banner p{font-size:1.05rem;opacity:.9;margin-bottom:2rem;max-width:540px;margin-left:auto;margin-right:auto}
.cta-banner .btn-primary{background:var(--white);color:var(--terracotta)}
.cta-banner .btn-primary:hover{background:var(--cream)}

/* ---------- Footer ---------- */
.footer{background:var(--dark);color:rgba(255,255,255,.8);padding:4rem 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand{max-width:300px}
.footer-brand .logo{color:var(--white);margin-bottom:1rem}
.footer-brand p{font-size:.9rem;line-height:1.7;opacity:.7}
.footer h4{color:var(--white);font-family:var(--font-heading);font-size:1.05rem;margin-bottom:1.2rem}
.footer ul li{margin-bottom:.6rem}
.footer ul li a{font-size:.9rem;opacity:.7;transition:all var(--transition)}
.footer ul li a:hover{opacity:1;color:var(--sand)}
.footer-contact li{display:flex;align-items:flex-start;gap:.5rem;font-size:.9rem;opacity:.7}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.5rem 0;text-align:center;font-size:.82rem;opacity:.6}

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta{display:none;position:fixed;bottom:0;left:0;width:100%;z-index:999;background:var(--terracotta);padding:.8rem 1rem;text-align:center}
.mobile-cta a{color:var(--white);font-weight:700;font-size:1rem;display:flex;align-items:center;justify-content:center;gap:.5rem}

/* ---------- Breadcrumb ---------- */
.breadcrumb{padding:1rem 0;font-size:.85rem;color:var(--gray)}
.breadcrumb a{color:var(--teal)}
.breadcrumb a:hover{color:var(--terracotta)}
.breadcrumb span{margin:0 .4rem}

/* ---------- Page Header ---------- */
.page-header{background:linear-gradient(135deg,var(--dark),var(--teal));padding:8rem 0 3rem;color:var(--white);text-align:center;background-size:cover;background-position:center}
.page-header h1{font-size:2.6rem;margin-bottom:.6rem}
.page-header p{opacity:.8;font-size:1.05rem}

/* ---------- Pricing Table ---------- */
.pricing-table{width:100%;border-collapse:collapse;margin:2rem 0;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.pricing-table thead{background:var(--teal);color:var(--white)}
.pricing-table th,.pricing-table td{padding:1rem 1.5rem;text-align:left;font-size:.92rem}
.pricing-table th{font-family:var(--font-heading);font-weight:600}
.pricing-table tbody tr{border-bottom:1px solid var(--light-gray);transition:background var(--transition)}
.pricing-table tbody tr:hover{background:rgba(26,94,99,.04)}
.pricing-table tbody tr:last-child{border-bottom:none}

/* ---------- Service Detail ---------- */
.service-detail{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;margin-bottom:4rem;padding-bottom:4rem;border-bottom:1px solid var(--light-gray)}
.service-detail:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.service-detail:nth-child(even) .service-detail-img{order:-1}
.service-detail-img{background:linear-gradient(135deg,var(--teal),var(--sand));border-radius:var(--radius);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:3rem;overflow:hidden}
.service-detail-img img{width:100%;height:100%;object-fit:cover}
.service-detail-content h3{font-size:1.6rem;margin-bottom:.8rem;color:var(--teal)}
.service-detail-content p{color:var(--gray);margin-bottom:1rem}

/* ---------- About ---------- */
.about-story{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-story-img{background:linear-gradient(135deg,var(--sand),var(--teal));border-radius:var(--radius);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:3rem;overflow:hidden}
.about-story-img img{width:100%;height:100%;object-fit:cover}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.team-card{text-align:center;background:var(--white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow)}
.team-avatar{width:100px;height:100px;border-radius:50%;background:var(--teal);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:2rem;font-weight:700;margin:0 auto 1rem}
.team-card h4{font-size:1.1rem;margin-bottom:.2rem}
.team-card .role{color:var(--terracotta);font-size:.85rem;font-weight:600}
.team-card p{color:var(--gray);font-size:.88rem;margin-top:.6rem}
.certs-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.cert-card{background:var(--white);border-radius:var(--radius);padding:1.5rem;text-align:center;border:1px solid var(--light-gray)}
.cert-card .cert-icon{font-size:2rem;margin-bottom:.6rem}
.cert-card h4{font-size:.95rem;color:var(--teal)}
.cert-card p{font-size:.8rem;color:var(--gray);margin-top:.3rem}

/* ---------- Contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.contact-form label{display:block;font-weight:600;font-size:.88rem;margin-bottom:.4rem;color:var(--dark)}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;padding:.8rem 1rem;border:1px solid var(--light-gray);border-radius:8px;font-family:var(--font-body);font-size:.92rem;background:var(--white);transition:border var(--transition)}
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{outline:none;border-color:var(--teal)}
.contact-form .form-group{margin-bottom:1.2rem}
.contact-form textarea{min-height:140px;resize:vertical}
.contact-info-cards{display:flex;flex-direction:column;gap:1.2rem}
.info-card{background:var(--white);border-radius:var(--radius);padding:1.5rem;display:flex;gap:1rem;align-items:flex-start;border:1px solid var(--light-gray)}
.info-card .info-icon{width:48px;height:48px;border-radius:12px;background:rgba(26,94,99,.1);display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0}
.info-card h4{font-size:1rem;margin-bottom:.2rem}
.info-card p{color:var(--gray);font-size:.9rem}
.map-placeholder{background:var(--light-gray);border-radius:var(--radius);aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;color:var(--gray);font-size:1.1rem;margin-top:2rem}

/* ---------- FAQ Accordion ---------- */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{background:var(--white);border-radius:var(--radius);margin-bottom:1rem;border:1px solid var(--light-gray);overflow:hidden}
.faq-question{padding:1.3rem 1.5rem;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1rem;transition:color var(--transition)}
.faq-question:hover{color:var(--terracotta)}
.faq-question .icon{font-size:1.3rem;transition:transform var(--transition);color:var(--teal)}
.faq-item.active .faq-question .icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s ease}
.faq-item.active .faq-answer{max-height:500px}
.faq-answer-inner{padding:0 1.5rem 1.3rem;color:var(--gray);font-size:.94rem;line-height:1.8}

/* ---------- Gallery ---------- */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.gallery-item{border-radius:var(--radius);overflow:hidden;position:relative;background:linear-gradient(135deg,var(--teal),var(--sand));aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:1rem;cursor:pointer;transition:transform var(--transition);background-size:cover;background-position:center}
.gallery-item:hover{transform:scale(1.03)}
.gallery-item .overlay{position:absolute;inset:0;background:rgba(0,0,0,.4);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity var(--transition)}
.gallery-item:hover .overlay{opacity:1}
.before-after-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.ba-card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.ba-images{display:grid;grid-template-columns:1fr 1fr;position:relative}
.ba-images .ba-img{aspect-ratio:4/3;background:linear-gradient(135deg,var(--teal),var(--sand));display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:600;overflow:hidden}
.ba-images .ba-img img{width:100%;height:100%;object-fit:cover}
.ba-images .ba-img.before{filter:none}
.ba-info{padding:1.2rem}
.ba-info h4{font-size:1rem;margin-bottom:.3rem}
.ba-info p{color:var(--gray);font-size:.85rem}

/* ---------- 404 ---------- */
.error-page{min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:2rem}
.error-page h1{font-size:8rem;color:var(--teal);line-height:1}
.error-page h2{font-size:2rem;margin:.5rem 0}
.error-page p{color:var(--gray);margin-bottom:2rem}

/* ---------- Scroll Reveal ---------- */
.reveal{opacity:0;transform:translateY(30px);transition:all .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ---------- Responsive ---------- */
@media(max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .certs-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .hero .container{grid-template-columns:1fr;text-align:center}
  .hero h1{font-size:2.2rem}
  .hero p{margin-left:auto;margin-right:auto}
  .hero-buttons{justify-content:center}
  .hero-stats{grid-template-columns:1fr 1fr}
  .alt-row,.about-story,.service-detail,.contact-grid,.areas-wrapper{grid-template-columns:1fr}
  .alt-row.reverse .alt-image{order:0}
  .service-detail:nth-child(even) .service-detail-img{order:0}
  .testimonials-grid{columns:2}
  .hamburger{display:flex}
  .nav-links{position:fixed;top:72px;left:0;width:100%;height:calc(100vh - 72px);overflow-y:auto;background:var(--dark);flex-direction:column;padding:2rem;gap:0;transform:translateX(100%);transition:transform var(--transition);z-index:999}
  .nav-links.active{transform:translateX(0)}
  .nav-links a{color:var(--white);padding:.75rem 0;font-size:1.1rem;border-bottom:1px solid rgba(255,255,255,.1)}
  .nav-links a:hover,.nav-links a.active{color:var(--sand)}
  .nav-links a::after{display:none!important}
  .nav-dropdown{position:relative}
  .nav-dropdown .dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;background:transparent;padding:0 0 0 1rem;display:none}
  .nav-dropdown.open .dropdown-menu{display:block;background:transparent}
  .nav-dropdown.open .dropdown-menu a{color:rgba(255,255,255,.8);font-size:.95rem;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.05)}
  .nav-dropdown.open .dropdown-menu a:hover{color:var(--sand);background:transparent}
  .nav-cta{background:var(--terracotta)!important;color:var(--white)!important;text-align:center;border-radius:var(--radius)!important;padding:.75rem!important;margin-top:.5rem;border:none!important}
  .mobile-cta{display:block}
  body{padding-bottom:60px}
  .before-after-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .areas-list{grid-template-columns:1fr}
  .pricing-table{display:block;overflow-x:auto}
}
@media(max-width:480px){
  .hero h1{font-size:1.8rem}
  .hero-stats{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr}
  .testimonials-grid{columns:1}
  .team-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .stat-card .stat-number{font-size:2rem}
}

/* SVG Icons */
.service-icon {
  width: 48px;
  height: 48px;
}
.inline-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Inline SVG icons */
.inline-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  display: inline-block;
}
.info-icon .inline-icon {
  width: 2rem;
  height: 2rem;
}
.testimonial-stars .inline-icon {
  width: 1.2em;
  height: 1.2em;
  filter: invert(70%) sepia(90%) saturate(500%) hue-rotate(0deg) brightness(100%);
}
.footer-contact .inline-icon {
  width: 1em;
  height: 1em;
  opacity: 0.8;
}
