/* ============================================
   FIZZY CLEANING — MAIN CSS
   Fresh Teal & Warm Coral Theme
   ============================================ */
:root {
    --primary: #0d9488;
    --primary-dark: #0a756b;
    --primary-light: #ccfbf1;
    --primary-50: #f0fdfa;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-light: #fff7ed;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-primary: 0 8px 24px rgba(13,148,136,0.25);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--gray-700); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--dark); font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.section-padding { padding: 100px 0; }
@media(max-width:768px) { .section-padding { padding: 60px 0; } }

/* Section Headers */
.section-tag { display: inline-block; font-family: var(--font-heading); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); background: var(--primary-light); padding: 6px 18px; border-radius: 50px; margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.highlight-text { color: var(--primary); }
.section-subtitle { font-size: 18px; color: var(--gray-500); max-width: 640px; margin: 0 auto; }

/* Mobile CTA */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; padding: 10px 16px; background: var(--white); border-top: 1px solid var(--gray-300); box-shadow: 0 -4px 12px rgba(0,0,0,0.1); }
.mobile-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--accent); color: var(--white) !important; font-family: var(--font-heading); font-size: 17px; font-weight: 700; border-radius: var(--radius-md); animation: cta-pulse 2s ease-in-out infinite; }
@keyframes cta-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(249,115,22,0.4)} 50%{box-shadow:0 0 0 12px rgba(249,115,22,0)} }

/* Promo Bar — $10 Off On Phone Booking */
.promo-bar { background: linear-gradient(90deg, #f59e0b, #f97316); color: #fff; padding: 10px 0; text-align: center; font-family: var(--font-heading); font-size: 14px; font-weight: 600; letter-spacing: 0.2px; }
.promo-bar-text { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.promo-bar-text i { color: #fff; }
.promo-bar-text strong { color: #fff; font-weight: 800; }
.promo-bar-cta { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: #b45309 !important; padding: 6px 14px; border-radius: 999px; font-weight: 800; text-decoration: none; transition: transform 0.2s; }
.promo-bar-cta:hover { transform: translateY(-1px); }
@media(max-width:575px) { .promo-bar { font-size: 12px; padding: 8px 0; } .promo-bar-cta { padding: 4px 10px; font-size: 12px; } }

/* Brand logo image (replaces inline SVG) */
.brand-logo-img { display: block; height: auto; max-height: 52px; width: auto; }
.footer-logo-img { display: block; height: auto; max-height: 64px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }

/* Top Bar */
.top-bar { background: var(--dark); color: rgba(255,255,255,0.8); font-size: 13px; padding: 8px 0; }
.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: 6px; }
.top-bar-info i { color: var(--primary); }
.top-bar-social { display: flex; gap: 12px; justify-content: flex-end; }
.top-bar-social a { color: rgba(255,255,255,0.7); font-size: 15px; }
.top-bar-social a:hover { color: var(--primary); }
@media(max-width:768px) { .top-bar { display: none; } }

/* Navbar */
.navbar { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); transition: all 0.3s ease; z-index: 1050; }
.navbar.scrolled { box-shadow: var(--shadow-md); padding: 8px 0; }
.navbar-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--dark) !important; }
.brand-logo { flex-shrink: 0; }
.brand-accent { color: var(--primary); }
.nav-link { font-family: var(--font-heading); font-size: 15px; font-weight: 500; color: var(--gray-700) !important; padding: 8px 16px !important; border-radius: var(--radius-sm); transition: all 0.25s ease; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: var(--primary-50); }
.btn-cta-nav { background: var(--primary); color: var(--white) !important; font-family: var(--font-heading); font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-nav:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-primary); color: var(--white) !important; }
.btn-phone-sm { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: var(--white) !important; border-radius: 50%; font-size: 18px; }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* Hero */
.hero-section { position: relative; background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 50%, var(--accent-light) 100%); padding: 120px 0 80px; overflow: hidden; }
.min-vh-80 { min-height: 72vh; }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.08; }
.shape-1 { width: 500px; height: 500px; background: var(--primary); top: -150px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; background: var(--accent); bottom: -80px; left: -50px; animation: float 10s ease-in-out infinite 2s; }
.shape-3 { width: 200px; height: 200px; background: var(--primary); top: 40%; left: 45%; animation: float 12s ease-in-out infinite 4s; }
@keyframes float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--primary-light); padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 500; color: var(--primary-dark); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.hero-badge i { color: var(--accent); }
.hero-title { font-size: clamp(36px, 5.5vw, 60px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-subtitle { font-size: 18px; line-height: 1.7; color: var(--gray-700); margin-bottom: 32px; max-width: 540px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary-cta { background: var(--accent); color: var(--white) !important; font-family: var(--font-heading); font-weight: 700; padding: 14px 32px; border-radius: var(--radius-md); border: none; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(249,115,22,0.3); }
.btn-primary-cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); color: var(--white) !important; }
.btn-outline-hero { background: transparent; color: var(--dark) !important; font-family: var(--font-heading); font-weight: 600; padding: 14px 28px; border: 2px solid var(--gray-300); border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-hero:hover { border-color: var(--primary); color: var(--primary) !important; background: var(--primary-50); }

.hero-trust-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.trust-item i { font-size: 18px; color: var(--primary); }

/* Hero Image */
.hero-image-wrapper { position: relative; padding: 20px; }
.hero-image-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; display: block; }
.floating-card { position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); animation: float-card 4s ease-in-out infinite; }
.floating-card i { font-size: 28px; color: var(--primary); }
.floating-card strong { display: block; font-size: 16px; color: var(--dark); }
.floating-card small { font-size: 12px; color: var(--gray-500); }
.fc-1 { bottom: 60px; left: -20px; }
.fc-2 { top: 40px; right: -10px; animation-delay: 2s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Stats */
.stats-bar { background: var(--primary); padding: 40px 0; }
.stat-item { padding: 10px 0; }
.stat-number { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--white); }
.stat-number small { font-size: 20px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Services */
.services-section { background: var(--gray-100); }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 0; height: 100%; border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); transform: scaleX(0); transition: transform 0.35s ease; z-index: 2; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border: 2px solid var(--primary); }
.service-card.featured::before { transform: scaleX(1); background: var(--accent); }
.featured-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--white); font-family: var(--font-heading); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px; z-index: 3; }
.service-img-wrap { overflow: hidden; }
.service-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body { padding: 24px 28px 28px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p, .service-body p { font-size: 15px; color: var(--gray-500); margin-bottom: 16px; }
.service-features { list-style: none; padding: 0; margin: 0 0 20px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-700); padding: 4px 0; }
.service-features li i { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.service-links { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.service-cta { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--accent) !important; display: inline-flex; align-items: center; gap: 6px; }
.service-cta:hover { gap: 10px; }
.service-blog-link { font-size: 13px; font-weight: 500; color: var(--gray-500) !important; display: inline-flex; align-items: center; gap: 4px; }
.service-blog-link:hover { color: var(--primary) !important; }

/* About */
.about-section { background: var(--white); }
.about-image-grid { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-main-img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; }
.about-experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent); color: var(--white); border-radius: var(--radius-lg); padding: 24px; text-align: center; box-shadow: var(--shadow-lg); }
.exp-number { display: block; font-family: var(--font-heading); font-size: 36px; font-weight: 800; line-height: 1; }
.exp-text { font-size: 13px; font-weight: 500; opacity: 0.9; }
.about-text { font-size: 17px; margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.af-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); flex-shrink: 0; }
.about-feature h4 { font-size: 17px; margin-bottom: 4px; }
.about-feature p { font-size: 14px; color: var(--gray-500); margin-bottom: 0; }

/* Process */
.process-section { background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%); }
.process-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; height: 100%; border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s ease; }
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-number { font-family: var(--font-heading); font-size: 52px; font-weight: 800; color: var(--primary-light); line-height: 1; margin-bottom: 8px; }
.process-icon { font-size: 32px; color: var(--primary); margin-bottom: 16px; }
.process-card h3 { font-size: 20px; margin-bottom: 12px; }
.process-card p { font-size: 15px; color: var(--gray-500); }

/* Areas */
.areas-section { background: var(--white); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 16px; }
.area-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-50); border: 1px solid var(--primary-light); color: var(--primary-dark); padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; transition: all 0.25s ease; }
.area-chip:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Testimonials */
.testimonials-section { background: var(--gray-100); }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; height: 100%; border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { margin-bottom: 16px; }
.stars i { color: #f59e0b; font-size: 18px; }
.testimonial-card > p { font-size: 15px; font-style: italic; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--dark); }
.testimonial-author small { color: var(--gray-500); font-size: 13px; }
.google-rating-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-300); padding: 12px 24px; border-radius: 50px; font-size: 15px; }

/* CTA Banner */
.cta-banner { padding: 80px 0; }
.cta-inner { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-xl); padding: 60px 48px; color: var(--white); position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.06); border-radius: 50%; top: -100px; right: -80px; }
.cta-inner h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 0; }
.btn-cta-white { background: var(--white); color: var(--primary) !important; font-family: var(--font-heading); font-weight: 700; padding: 16px 32px; border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; position: relative; z-index: 1; }
.btn-cta-white:hover { background: var(--accent); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* Blog Cards */
.blog-section { background: var(--white); }
.blog-listing-hero { background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%); padding: 120px 0 60px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); height: 100%; transition: all 0.35s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-img { position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-img-link { display: block; }
.blog-img-link:hover .blog-img img { transform: scale(1.05); }
.blog-category { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--white); font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 50px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-content { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-content h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.35; }
.blog-content h3 a { color: var(--dark); }
.blog-content h3 a:hover { color: var(--primary); }
.blog-content p { font-size: 14px; color: var(--gray-500); margin-bottom: 0; }
.btn-outline-primary-custom { border: 2px solid var(--primary); color: var(--primary) !important; font-family: var(--font-heading); font-weight: 600; padding: 12px 28px; border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white) !important; }

/* FAQ */
.faq-section { background: var(--gray-100); }
.accordion-item { border: none; background: var(--white); border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-button { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--dark); padding: 20px 24px; border: none; background: var(--white); }
.accordion-button:not(.collapsed) { color: var(--primary); background: var(--white); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { background-size: 16px; width: 16px; height: 16px; }
.accordion-body { padding: 0 24px 20px; font-size: 15px; color: var(--gray-500); line-height: 1.7; }
.accordion-body a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(13,148,136,0.3); }

/* Contact */
.contact-section { background: var(--white); }
.contact-info-wrapper { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { display: flex; gap: 16px; padding: 20px; background: var(--primary-50); border-radius: var(--radius-md); border: 1px solid var(--primary-light); transition: all 0.3s ease; }
.contact-info-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.ci-icon { width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card a { color: var(--primary); font-weight: 500; }
.contact-info-card p { font-size: 13px; color: var(--gray-500); margin-bottom: 0; }
.contact-form-wrapper { background: var(--gray-100); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--gray-300); }
.form-label { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select { border: 1px solid var(--gray-300); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 15px; color: var(--dark); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,0.12); }
.form-note { text-align: center; font-size: 13px; color: var(--gray-500); }
.form-note i { color: var(--primary); }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 0 24px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-brand .brand-accent { color: var(--primary); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-heading { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 5px 0; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; }
.footer-contact li i { color: var(--primary); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--primary); }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 40px 0 20px; }
.footer-copyright { font-size: 14px; margin-bottom: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-legal a:hover { color: var(--primary); }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 80px; right: 24px; width: 56px; height: 56px; background: #25d366; color: var(--white) !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
@media(min-width:992px) { .whatsapp-float { bottom: 30px; } }

/* Responsive */
@media(max-width:991px) {
    .hero-section { padding: 80px 0 60px; }
    .min-vh-80 { min-height: auto; }
    .hero-cta-group { justify-content: center; text-align: center; }
    .hero-title, .hero-subtitle, .hero-badge { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-trust-badges { justify-content: center; }
    .about-experience-badge { right: 10px; bottom: -10px; }
}
@media(max-width:575px) {
    .hero-title { font-size: 32px; }
    .cta-inner { padding: 36px 24px; }
    .contact-form-wrapper { padding: 24px 20px; }
    body { padding-bottom: 70px; }
    .whatsapp-float { bottom: 76px; right: 16px; width: 50px; height: 50px; font-size: 24px; }
}

/* ============================================
   NEW PAGE ELEMENTS (About / Services / Contact / Service Details)
   ============================================ */
.page-hero { background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 50%, var(--accent-light) 100%); padding: 110px 0 70px; position: relative; }
.page-hero .breadcrumb-nav { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }
.page-hero .breadcrumb-nav a { color: var(--primary); text-decoration: none; }
.page-hero .breadcrumb-nav a:hover { text-decoration: underline; }
.page-hero .breadcrumb-nav span:not(:first-child) { color: var(--gray-500); }
.page-title { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 16px; }
.page-subtitle { font-size: 18px; color: var(--gray-700); max-width: 780px; margin: 0 auto; line-height: 1.7; }

.feature-card { background: var(--white); padding: 32px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); height: 100%; transition: transform 0.25s, box-shadow 0.25s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .feature-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.feature-card h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { color: var(--gray-700); font-size: 15px; line-height: 1.65; margin-bottom: 0; }
.feature-card a { color: var(--primary); font-weight: 600; }

.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); height: 100%; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .service-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card .service-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: var(--gray-700); font-size: 15px; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.service-card .service-link { color: var(--primary); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-card .service-link:hover { gap: 10px; }

.service-sidebar { }
.sidebar-card { background: var(--white); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.sidebar-card h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 14px; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.sidebar-card h4 i { color: var(--primary); }
.sidebar-card p { color: var(--gray-700); font-size: 14px; margin-bottom: 14px; }
.sidebar-card .related-links { list-style: none; padding: 0; margin: 0; }
.sidebar-card .related-links li { margin-bottom: 10px; }
.sidebar-card .related-links a { color: var(--gray-700); text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.sidebar-card .related-links a i { color: var(--primary); }
.sidebar-card .related-links a:hover { color: var(--primary); }

.service-checklist { list-style: none; padding: 0; margin: 24px 0; }
.service-checklist li { padding: 10px 0; font-size: 16px; color: var(--gray-800); display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px dashed var(--gray-200); }
.service-checklist li:last-child { border-bottom: 0; }
.service-checklist li i { flex-shrink: 0; font-size: 20px; margin-top: 2px; }

.section-padding h2 { font-family: var(--font-heading); font-weight: 800; color: var(--dark); }
.section-padding p { line-height: 1.75; color: var(--gray-700); }
.section-padding a { color: var(--primary); font-weight: 600; }

/* Dropdown styling */
.navbar .dropdown-menu { border: 1px solid var(--gray-200); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 8px; margin-top: 8px; min-width: 240px; }
.navbar .dropdown-item { font-family: var(--font-heading); font-size: 14px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--gray-700); }
.navbar .dropdown-item:hover, .navbar .dropdown-item:focus { background: var(--primary-50); color: var(--primary); }
.navbar .dropdown-divider { margin: 6px 4px; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.2s; }
.footer-social a:hover { background: var(--primary); }
