/* LIGHTHOUSE FIX: Font-Display Swap */
@font-face {
    font-family: 'Font Awesome 6 Free'; font-style: normal; font-weight: 900; font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2) format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Brands'; font-style: normal; font-weight: 400; font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2) format("woff2");
}

/* CORE VARIABLES */
:root {
    --yellow: #FFC000; --blue: #0b2149; --blue-hover: #071530; --red: #da1c22;
    --bg-white: #ffffff; --bg-light: #f8f9fa;
    --text-dark: #1a1a1a; --text-gray: #4a5568; --border: #e2e8f0;
    --whatsapp: #128C7E; 
    --font-head: 'Montserrat', sans-serif; --font-body: 'Open Sans', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1); --transition: all 0.3s var(--ease);
    --radius: 12px; --radius-lg: 24px;
}

/* FAST RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border: none; font-style: normal; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 2; }
#top-sentinel { position: absolute; top: 0; width: 100%; height: 60px; visibility: hidden; pointer-events: none; z-index: -1; }

/* GPU ACCELERATED PERFORMANCE BLOCKS */
.fast-section { padding: 80px 0; position: relative; overflow: hidden; }

.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transform: translateZ(0); will-change: opacity, transform; }
.reveal { transform: translate3d(0, 30px, 0); }
.reveal-left { transform: translate3d(-30px, 0, 0); }
.reveal-right { transform: translate3d(30px, 0, 0); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate3d(0, 0, 0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; }

/* TYPOGRAPHY */
.section-title { text-align: center; margin-bottom: 50px; text-transform: uppercase; }
.section-title h2 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--blue); font-weight: 900; line-height: 1.2; letter-spacing: -0.5px; }
.section-title h2 span, .sec-head span { color: var(--red); }
.section-title .line { width: 80px; height: 6px; background: linear-gradient(90deg, var(--red), var(--yellow)); margin: 15px auto 0; border-radius: 5px; }
.section-title p { color: var(--text-gray); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 800px; margin: 20px auto 0; text-transform: none; font-weight: 500;}

/* HEADER */
header { background: rgba(255,255,255,0.98); padding: 15px 0; position: sticky; top: 0; z-index: 1000; transition: padding 0.3s, box-shadow 0.3s, background 0.3s; will-change: padding, background, box-shadow; }
header.scrolled { padding: 10px 0; background: #ffffff; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo-img { width: 278px; height: 70px; max-width: 100%; height: auto; object-fit: contain; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--blue); text-transform: uppercase; position: relative; padding-bottom: 5px; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width 0.3s; border-radius: 2px; }
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: var(--blue); background: transparent; border: none; padding: 5px; }
.nav-overlay { position: fixed; inset: 0; background: rgba(11, 33, 73, 0.85); z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* 1. HERO SECTION & FORM */
.hero-targeted { background: linear-gradient(135deg, rgba(11, 33, 73, 0.95) 0%, rgba(11, 33, 73, 0.75) 45%, rgba(255, 255, 255, 0.85) 100%), url('khalsaji-hero.webp') center/cover no-repeat; min-height: 90vh; display: flex; align-items: center; padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.hero-text h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: #ffffff; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero-text h1 span { color: var(--yellow); }
.hero-text p { font-size: 1.15rem; margin-bottom: 30px; font-weight: 600; max-width: 90%; color: #e2e8f0; }

.trust-tags { display: flex; gap: 15px; flex-wrap: wrap;}
.trust-tags span { background: rgba(255,255,255,0.1); color: #fff; padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.wa-form-box { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 1); padding: clamp(25px, 4vw, 40px); border-radius: 24px; box-shadow: 0 15px 35px rgba(11, 33, 73, 0.2); transform: translateZ(0); }
.wa-form-box h2 { font-family: var(--font-head); color: var(--blue); font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 900; text-align: center; margin-bottom: 25px; }
.wa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.wa-input { width: 100%; padding: 15px; background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(11, 33, 73, 0.15); border-radius: 10px; color: var(--blue); font-size: 1.05rem; font-family: var(--font-body); outline: none; transition: 0.3s; font-weight: 700; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.wa-input::placeholder { color: #475569; font-weight: 600; opacity: 1; }
.wa-input:focus { background: #ffffff; border-color: var(--blue); box-shadow: 0 4px 12px rgba(11,33,73,0.1); }
.wa-select { grid-column: 1 / -1; cursor: pointer; }
.wa-select option { background: #fff !important; color: var(--blue) !important; font-weight: 700; }
.btn-wa-submit { width: 100%; background: var(--blue); color: var(--yellow); font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; padding: 15px; border: none; border-radius: 10px; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
.btn-wa-submit i { color: var(--yellow); font-size: 1.3rem; }
.btn-wa-submit:hover { transform: translateY(-3px); background: var(--blue-hover); box-shadow: 0 15px 35px rgba(11, 33, 73, 0.25); }

/* 2. CENTERED CALL BANNER */
.call-banner-wrapper { padding: 0 5%; position: relative; z-index: 10; margin-top: -60px; margin-bottom: 60px; display: flex; justify-content: center; }
.hero-call-banner { background: var(--red); color: #fff; border-radius: var(--radius-lg); padding: clamp(20px, 4vw, 35px) clamp(25px, 5vw, 50px); display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 50px); width: 100%; max-width: 1100px; box-shadow: 0 20px 40px rgba(218, 28, 34, 0.35); transition: transform 0.3s; }
.hero-call-banner:hover { transform: translateY(-5px); }
.hcb-left { border: 2px solid #fff; border-radius: 12px; padding: 15px 25px; text-align: center; flex-shrink: 0; }
.hcb-left span { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; }
.hcb-left strong { font-family: var(--font-head); font-weight: 900; font-size: 2.5rem; line-height: 1; }
.hcb-right { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.hcb-number { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1; margin-bottom: 5px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.hcb-number span { display: inline-block; animation: yellowPopGlow 2.5s infinite linear; animation-delay: calc(var(--i) * 0.12s); will-change: transform, color, text-shadow; opacity: 0.9; }

@keyframes yellowPopGlow {
    0%, 100% { opacity: 0.9; transform: translateY(0) scale(1); color: #ffffff; text-shadow: none; }
    10%, 20% { opacity: 1; transform: translateY(-5px) scale(1.1); color: #FFF000; text-shadow: 0 0 15px #FFD700, 0 0 25px #FFD700; }
    30% { opacity: 0.9; transform: translateY(0) scale(1); color: #ffffff; text-shadow: none; }
}

.hcb-sub { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; margin-bottom: 12px; }
.hcb-line { width: 100%; max-width: 500px; height: 1px; background: rgba(255,255,255,0.4); margin: 0 auto 12px auto; }
.hcb-cta { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; }

/* 3. SHIFTING PROCESS */
.process-section { background: var(--yellow); text-align: center; }
.process-title { margin-bottom: 50px; }
.process-title h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--blue); margin-bottom: 10px; text-transform: uppercase;}
.process-title p { color: var(--blue); font-size: 1.1rem; font-weight: 600; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; max-width: 1100px; margin: 0 auto;}
.process-grid::before { content: ''; position: absolute; top: 45px; left: 12.5%; width: 75%; height: 2px; background: rgba(11, 33, 73, 0.2); z-index: -1; }
.step-box { display: flex; flex-direction: column; align-items: center; }
.step-icon-wrap { width: 90px; height: 90px; background: #fff; border: 2px dashed var(--blue); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; position: relative; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: transform 0.3s;}
.step-box:hover .step-icon-wrap { transform: scale(1.1); border-style: solid; }
.step-icon-wrap i { font-size: 2.2rem; color: var(--blue); }
.step-number { position: absolute; top: -5px; right: -5px; background: var(--blue); color: var(--yellow); width: 28px; height: 28px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 900; font-family: var(--font-head); font-size: 0.9rem; border: 2px solid #fff;}
.step-box h3 { color: var(--blue); font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 10px; font-weight: 900; }
.step-box p { color: var(--blue); font-size: 0.95rem; font-weight: 600; opacity: 0.85; }

/* 4. SERVICES */
.services-new-sec { background: var(--bg-light); }
.s6-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.s6-card { border-radius: 16px; padding: 40px 25px; text-align: center; transition: transform 0.3s; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.s6-card:hover { transform: translateY(-8px); }
.s6-dark { background: var(--blue); color: #fff; }
.s6-dark .s6-icon { background: var(--yellow); color: var(--blue); }
.s6-dark h3 { color: #fff; }
.s6-light { background: #fff; border: 1px solid var(--border); }
.s6-light .s6-icon { background: rgba(255, 192, 0, 0.15); color: var(--blue); }
.s6-light h3 { color: var(--blue); }
.s6-icon { width: 75px; height: 75px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; margin: 0 auto 20px; transition: transform 0.3s; }
.s6-card:hover .s6-icon { transform: scale(1.1); }
.s6-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; margin-bottom: 12px; }

/* 5. CENTER-IMAGE SECTION */
.services-dark { background: var(--blue); color: #fff; padding: 100px 0; }
.sd-title { text-align: center; margin-bottom: 60px; }
.sd-title h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; }
.sd-title p { color: #cbd5e1; max-width: 700px; margin: 15px auto 0; font-size: 1.05rem; }
.sd-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; max-width: 1100px; margin: 0 auto; }
.sd-center img { width: 100%; max-width: 320px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); animation: floatMover 4s infinite alternate; display: block; }
@keyframes floatMover { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
.sd-block { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 40px; }
.sd-left .sd-block { flex-direction: row-reverse; text-align: right; }
.sd-icon { width: 60px; height: 60px; background: #2b6cb0; font-size: 1.8rem; display: flex; justify-content: center; align-items: center; border-radius: 15px; flex-shrink: 0; }
.sd-text h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.sd-text p { font-size: 0.95rem; color: #cbd5e1; }

/* 6. MISSION */
.mission-section { background: #061126; text-align: center; color: #fff; position: relative; border-top: 5px solid var(--red); border-bottom: 5px solid var(--red); }
.mission-text { font-family: var(--font-head); font-size: clamp(1.4rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.6; max-width: 1000px; margin: 0 auto; }
.mission-text span.yellow-text { color: var(--yellow); }
.mission-text span.red-box { background: var(--red); padding: 5px 20px; border-radius: 8px; display: inline-block; transform: rotate(-2deg); margin-top: 10px; }

/* 7. REVIEWS & SLIDER */
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.5rem); color: var(--blue); font-weight: 900; text-transform: uppercase; }
.slider-wrapper, .work-wrapper { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; gap: 30px; padding: 20px 5px; scrollbar-width: none; transform: translateZ(0); }
.slider-wrapper::-webkit-scrollbar, .work-wrapper::-webkit-scrollbar { display: none; }
.review-card { min-width: 320px; max-width: 350px; background: #fff; padding: 30px; border-radius: 16px; border: 1px solid var(--border); scroll-snap-align: start; box-shadow: 0 10px 30px rgba(0,0,0,0.03); flex: 0 0 auto; }
.stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 15px; }
.r-text { color: var(--text-gray); font-style: italic; margin-bottom: 20px; font-size: 1.05rem; }
.r-author { font-family: var(--font-head); font-weight: 800; color: var(--blue); }
.work-slide { min-width: 300px; height: 220px; border-radius: 16px; overflow: hidden; flex: 0 0 auto; scroll-snap-align: start; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.work-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; will-change: transform; }
.work-slide:hover img { transform: scale(1.1); }
.all-rev-btn { display: flex; justify-content: center; align-items: center; width: 100%; margin-top: 35px; }
.btn-outline { border: 2px solid var(--red); color: var(--red); padding: 12px 30px; border-radius: 50px; font-weight: 800; font-family: var(--font-head); display: inline-block; transition: 0.3s; text-align: center;}
.btn-outline:hover { background: var(--red); color: #fff; }

/* 9. LOCATIONS */
.locations-sec { background: var(--bg-light); }
.loc-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; max-width: 1000px; margin: 30px auto; }
.loc-badge { background: var(--yellow); border: 1px solid var(--yellow); padding: 12px 25px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; color: var(--blue); transition: 0.3s; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.loc-badge i { font-size: 1.2rem; }
.loc-badge span { font-weight: 700; font-family: var(--font-body); font-size: 0.95rem; margin-left: 5px; }
.loc-badge:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(11,33,73,0.3); color: var(--yellow); }

/* 10. FAQS */
.faq-section { background: #fff; border-top: 1px solid var(--border); }
.faq-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-question { padding: 20px 25px; font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--blue); display: flex; justify-content: space-between; align-items: center; }
.faq-question i { color: var(--red); background: var(--bg-light); width: 35px; height: 35px; border-radius: 50%; display: flex; justify-content: center; align-items: center; flex-shrink: 0; margin-left: 15px; transition: transform 0.3s, background 0.3s, color 0.3s;}
.faq-answer { display: none; padding: 0 25px 20px; font-weight: 500;}
.faq-answer a { color: var(--red); font-weight: 700; text-decoration: underline; }
.faq-item.active { border-color: var(--blue); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.4s ease-out; }
.faq-item.active .faq-question i { transform: rotate(180deg); background: var(--blue); color: var(--yellow); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* 11. ASSOCIATIONS & CONTACT */
.assoc-wrap { max-width: 900px; margin: 0 auto; }
.assoc-wrap img { width: 100%; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); transition: 0.3s; }
.assoc-wrap img:hover { transform: scale(1.02); }

.contact-box-grid { display: flex; flex-wrap: nowrap; justify-content: space-between; gap: 20px; max-width: 1200px; margin: 0 auto; background: #fff; padding: clamp(20px, 4vw, 40px); border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.cb-item { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 10px; min-width: 0; }
.cb-icon { width: 60px; height: 60px; background: rgba(218, 28, 34, 0.1); color: var(--red); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; margin-bottom: 15px; transition: 0.3s; }
.cb-icon .fa-phone-alt { transform: scaleX(-1); }
.cb-item:hover .cb-icon { background: var(--red); color: #fff; transform: translateY(-5px); }
.cb-item h3 { font-family: var(--font-head); color: var(--blue); font-weight: 800; margin-bottom: 10px; font-size: 1.05rem; text-transform: uppercase; }
.cb-item p, .cb-item a { font-weight: 500; transition: 0.3s; font-size: clamp(0.9rem, 1.5vw, 1rem); word-break: break-word; overflow-wrap: break-word; width: 100%; }
.cb-item a:hover { color: var(--red); }

.map-container { position: relative; max-width: 1200px; margin: 40px auto 0; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.05); height: 380px; border: 1px solid var(--border); background: #eee; }
.map-container::before { content: 'Loading Map Location...'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-head); font-weight: 700; color: var(--text-gray); z-index: 0; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
.map-container iframe { position: relative; z-index: 1; border: 0; width: 100%; height: 100%; }

/* 12. SPLIT SECTION & FOOTER */
.split-wrapper { display: flex; flex-wrap: wrap; width: 100%; }
.split-half { flex: 1 1 50%; padding: clamp(60px, 8vw, 100px) 5%; display: flex; flex-direction: column; justify-content: center; }
.bg-navy { background-color: var(--blue); color: #fff; }
.bg-navy h2 { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; text-transform: uppercase; line-height: 1.2; margin-bottom: 25px; }
.bg-navy h2 span { color: var(--yellow); }
.bg-navy p { font-size: 1.1rem; margin-bottom: 20px; font-weight: 500; color: #e2e8f0; }
.bg-yellow { background-color: var(--yellow); color: var(--blue); }
.bg-yellow h3 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--red); margin-bottom: 20px; }
.bg-yellow p { font-size: 1.1rem; margin-bottom: 20px; font-weight: 600; }
.call-today-text { font-family: var(--font-head); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 900; margin-top: 20px; }
.call-today-text a { color: var(--red); transition: 0.3s;}
.call-today-text a:hover { color: var(--blue); transform: translateX(5px);}

footer { background: linear-gradient(rgba(11, 33, 73, 0.96), rgba(11, 33, 73, 0.96)), url('khalsaji-hero.webp') center/cover; padding: 80px 0 0; color: #fff; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--yellow), var(--red)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: clamp(40px, 5vw, 70px); margin-bottom: 60px; max-width: 1280px; margin: 0 auto; padding: 0 5%;}
.footer-col h3 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 30px; text-transform: uppercase; font-weight: 900; position: relative; padding-bottom: 15px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background: var(--yellow); }
.footer-desc { color: #cbd5e1; margin-bottom: 25px; opacity: 0.9; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; color: #fff; transition: 0.3s; font-size: 1.2rem; }
.footer-socials a:hover { background: var(--yellow); color: var(--blue); transform: translateY(-5px); }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: #cbd5e1; transition: 0.3s; display: inline-flex; align-items: center; gap: 12px; }
.footer-links a i { font-size: 0.8rem; color: var(--yellow); }
.footer-links a:hover { color: #fff; transform: translateX(8px); }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 25px 0; color: #94a3b8; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }

.widget-call { position: fixed; bottom: 30px; right: 30px; z-index: 999; background: var(--whatsapp); color: #fff; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.2rem; box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4); border: 3px solid #fff; transition: 0.3s; }
.widget-call:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 12px 35px rgba(18, 140, 126, 0.6); }

/* =========================================
   ALL RESPONSIVE / MOBILE DESIGN MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text { margin-bottom: 15px; }
    .hero-text p { margin: 0 auto 25px auto; max-width: 100%; }
    .wa-form-box h2 { text-align: center; }
    .wa-grid { grid-template-columns: 1fr; gap: 15px; } 
    .trust-tags { justify-content: center; }
    
    .sd-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .sd-block, .sd-left .sd-block { flex-direction: column !important; align-items: center !important; text-align: center !important; }
    .sd-left .sd-block .sd-text, .sd-right .sd-block .sd-text { text-align: center; }
    
    .s6-grid, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .split-half { flex: 1 1 100%; text-align: center; }
    
    .contact-box-grid { flex-wrap: wrap; }
    .cb-item { flex: 1 1 45%; }

    .hamburger { display: block; }
    .nav-links { position: fixed; top: 0; right: -320px; width: 320px; max-width: 85vw; height: 100dvh; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 80px 30px; box-shadow: -5px 0 30px rgba(0,0,0,0.1); transition: right 0.4s ease; z-index: 1001; }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; padding: 15px 0; width: 100%; border-bottom: 1px solid var(--border); }
    .nav-links a::after { display: none; }
    
    .hero-call-banner { flex-direction: column; padding: 30px; gap: 20px; text-align: center; justify-content: center; align-items: center; }
    .hcb-right { align-items: center; text-align: center; }
}
@media (max-width: 600px) {
    .hero-targeted { padding: 60px 0; }
    .hero-text h1 { font-size: 2.2rem; }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .s6-grid { grid-template-columns: 1fr; }
    .cb-item { flex: 1 1 100%; } 
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-socials, .footer-links a { justify-content: center; }
}
@media (max-width: 480px) {
    .hcb-number { font-size: 1.8rem; }
    .widget-call { width: 55px; height: 55px; font-size: 1.8rem; right: 15px; bottom: 15px; }
}