/* ============================================================
   LeakProof Solutions — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --primary:        #0089d0;
    --primary-dark:   #0074b3;
    --dark-blue:      #0d4f8b;
    --red-accent:     #d62828;
    --light-bg:       #f8fbff;
    --dark-text:      #222222;
    --body-text:      #444444;
    --muted-text:     #6b7280;
    --white:          #ffffff;
    --light-gray:     #f1f5f9;
    --border-color:   #e2e8f0;
    --card-shadow:    0 4px 24px rgba(0,137,208,0.10);
    --card-hover:     0 12px 40px rgba(0,137,208,0.22);
    --section-pad:    90px;
    --radius:         12px;
    --radius-lg:      20px;
    --transition:     all 0.3s ease;
    --font:           'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.25;
}

/* ── Section Heading ───────────────────────────────────── */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
    font-size: 1rem;
    color: var(--muted-text);
    max-width: 560px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.section-badge {
    display: inline-block;
    background: rgba(0,137,208,0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}
.title-divider span {
    display: block;
    height: 3px;
    border-radius: 3px;
    background: var(--primary);
}
.title-divider span:nth-child(1),
.title-divider span:nth-child(3) { width: 40px; }
.title-divider span:nth-child(2) { width: 14px; background: var(--red-accent); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-primary-custom:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,137,208,0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-red-custom {
    background: var(--red-accent);
    color: var(--white);
    border: 2px solid var(--red-accent);
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-red-custom:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,40,40,0.35);
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
    background: var(--dark-blue);
    color: rgba(255,255,255,0.88);
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar a { color: rgba(255,255,255,0.88); }
.top-bar a:hover { color: var(--white); }
.top-bar .top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar .top-bar-item i {
    color: var(--primary);
    font-size: 0.88rem;
}

/* ── Navbar ──────────────────────────────────────────────── */
#mainNavbar {
    background: var(--white) !important;
    padding: 14px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.navbar-brand img {
    height: 52px;
    width: auto;
}
.navbar-brand .brand-text {
    line-height: 1.15;
}
.navbar-brand .brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-blue);
}
.navbar-brand .brand-sub {
    font-size: 0.68rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(0,137,208,0.07);
}

.btn-quote {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 9px 24px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    transition: var(--transition);
}
.btn-quote:hover {
    background: var(--dark-blue) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,137,208,0.3);
}

/* ── Hero Section ───────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a3870 0%, #0d4f8b 35%, #0076bb 70%, #0089d0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23000' stop-opacity='.15'/%3E%3Cstop offset='100%25' stop-color='%23000' stop-opacity='.0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-badge i { color: #ffd700; }

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero-title .highlight {
    color: #ffd700;
    text-shadow: 0 2px 12px rgba(255,215,0,0.35);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.75;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    margin-top: 2px;
}

/* Hero visual card */
.hero-visual {
    position: relative;
    z-index: 2;
}
.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 5rem;
}
.hero-img-placeholder p {
    font-size: 0.9rem;
    margin-top: 10px;
    color: rgba(255,255,255,0.6);
}

.hero-badge-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-badge-float.top-left  { top: -18px;  left: -18px; }
.hero-badge-float.bot-right { bottom: -18px; right: -18px; }
.hero-badge-float i { font-size: 1.8rem; color: var(--primary); }
.hero-badge-float .val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
}
.hero-badge-float .lbl {
    font-size: 0.72rem;
    color: var(--muted-text);
}

/* ── Page Banner (inner pages) ──────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, #0a3870 0%, #0d4f8b 50%, #0089d0 100%);
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 50% 100%);
}
.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.page-banner .breadcrumb { background: none; padding: 0; }
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.page-banner .breadcrumb-item.active { color: #ffd700; }
.page-banner .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ── About Preview ──────────────────────────────────────── */
.about-section { padding: var(--section-pad) 0; }

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    aspect-ratio: 1;
    object-fit: cover;
    background: linear-gradient(135deg, #e0f0ff, #c9e5f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary);
}
.about-img-main.placeholder {
    min-height: 380px;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,137,208,0.35);
}
.about-experience-badge .big-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}
.about-experience-badge .big-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
}

.about-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.about-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(0,137,208,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}
.about-feature h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2px;
}
.about-feature p { font-size: 0.85rem; color: var(--muted-text); margin: 0; }

/* ── Services Section ───────────────────────────────────── */
.services-section { padding: var(--section-pad) 0; background: var(--light-bg); }

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--card-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    border: 1px solid transparent;
    cursor: pointer;
}
.service-card:hover {
    box-shadow: var(--card-hover);
    border-color: rgba(0,137,208,0.12);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0,137,208,0.1), rgba(13,79,139,0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--primary);
}
.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--dark-blue));
    color: var(--white);
    border-radius: 50%;
}

.service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.88rem;
    color: var(--muted-text);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-read-more {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-card:hover .service-read-more { gap: 10px; }
.service-read-more i { font-size: 0.8rem; }

/* ── Why Choose Us ──────────────────────────────────────── */
.why-section { padding: var(--section-pad) 0; }

.why-card {
    text-align: center;
    padding: 34px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover {
    background: var(--white);
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}
.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--dark-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(0,137,208,0.3);
    transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-card h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}
.why-card p { font-size: 0.85rem; color: var(--muted-text); margin: 0; }

/* ── Stats Counter ──────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -200px; right: -100px;
}

.stat-item { text-align: center; padding: 20px; }
.stat-item .counter-number {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
}
.stat-item .counter-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
}
.stat-item .stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    margin-top: 6px;
}
.stat-divider {
    border: none;
    border-right: 1px solid rgba(255,255,255,0.2);
    margin: 0;
}

/* ── Process Timeline ───────────────────────────────────── */
.process-section { padding: var(--section-pad) 0; background: var(--light-bg); }

.timeline-wrap { position: relative; padding-left: 20px; }
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--dark-blue));
    opacity: 0.2;
}

.timeline-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 36px;
    position: relative;
}

.timeline-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: linear-gradient(135deg, var(--primary), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(0,137,208,0.35);
    z-index: 1;
    position: relative;
}
.timeline-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(0,137,208,0.3);
}

.timeline-content { padding-top: 8px; }
.timeline-content .step-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 4px 0 6px;
}
.timeline-content p {
    font-size: 0.88rem;
    color: var(--muted-text);
    margin: 0;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-section { padding: var(--section-pad) 0; }

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--card-shadow);
    position: relative;
    margin: 10px 20px 30px;
    border: 1px solid var(--border-color);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 28px;
    font-size: 5rem;
    color: rgba(0,137,208,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text {
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--dark-text); font-size: 0.95rem; }
.testimonial-location { font-size: 0.78rem; color: var(--muted-text); }

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
#testimonialCarousel .carousel-control-prev { left: -10px; }
#testimonialCarousel .carousel-control-next { right: -10px; }
#testimonialCarousel .carousel-indicators [data-bs-target] {
    background-color: var(--primary);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
}

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #0a2a52 0%, var(--dark-blue) 50%, var(--primary) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
}
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.cta-section .cta-content { position: relative; z-index: 2; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: #0b1e35;
    padding: 72px 0 0;
    color: rgba(255,255,255,0.75);
}

.footer-logo img { height: 52px; filter: brightness(10); }
.footer-logo .brand-name { font-size: 1.25rem; font-weight: 800; color: var(--white); }
.footer-logo .brand-sub  { font-size: 0.7rem; color: var(--primary); font-weight: 500; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-top: 14px; }

.footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links li a i { font-size: 0.7rem; color: var(--primary); }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    margin-top: 50px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--primary); }

/* ── Back to Top ────────────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,137,208,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── About Page specific ─────────────────────────────────── */
.mission-vision-card {
    border-radius: var(--radius);
    padding: 36px;
    height: 100%;
    border-top: 4px solid var(--primary);
    box-shadow: var(--card-shadow);
    background: var(--white);
    transition: var(--transition);
}
.mission-vision-card:hover { transform: translateY(-5px); box-shadow: var(--card-hover); }
.mission-vision-card.vision { border-top-color: var(--red-accent); }
.mission-vision-card .mv-icon {
    width: 60px; height: 60px;
    background: rgba(0,137,208,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary);
    margin-bottom: 20px;
}
.mission-vision-card.vision .mv-icon { background: rgba(214,40,40,0.08); color: var(--red-accent); }

.team-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--card-shadow);
    margin-bottom: 16px;
    transition: var(--transition);
}
.team-trust-item:hover { transform: translateX(4px); box-shadow: var(--card-hover); }
.team-trust-item .check-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(0,137,208,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
}

/* ── Services Page specific ──────────────────────────────── */
.service-detail-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}
.service-detail-card:hover { box-shadow: var(--card-hover); transform: translateY(-5px); }
.service-detail-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--dark-blue));
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}
.service-detail-img::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 30px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.service-detail-body { padding: 28px; }
.service-detail-body h4 {
    font-size: 1.1rem; font-weight: 700;
    color: var(--dark-text); margin-bottom: 10px;
}
.service-detail-body p { font-size: 0.88rem; color: var(--muted-text); line-height: 1.7; margin-bottom: 16px; }
.service-check-list { list-style: none; padding: 0; }
.service-check-list li {
    font-size: 0.85rem;
    color: var(--body-text);
    padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
}
.service-check-list li i { color: var(--primary); font-size: 0.8rem; }

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-accordion .accordion-item {
    border: none;
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--dark-text);
    background: var(--white);
    font-size: 0.95rem;
    border-radius: var(--radius) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(0,137,208,0.05);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(32%) sepia(100%) saturate(1200%) hue-rotate(183deg);
}
.faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.75;
}

/* ── Contact Page specific ────────────────────────────────── */
.contact-form-section { padding: var(--section-pad) 0; }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--card-shadow);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary));
    border-radius: var(--radius-lg);
    padding: 44px;
    color: var(--white);
    height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-bottom: 36px; }

.cinfo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.cinfo-icon {
    width: 46px; height: 46px; min-width: 46px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #ffd700;
}
.cinfo-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }
.cinfo-value { font-size: 0.92rem; color: var(--white); font-weight: 500; }

.working-hours { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); }
.working-hours h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 12px; }
.wh-item { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 8px; }
.wh-item span:first-child { color: rgba(255,255,255,0.7); }
.wh-item span:last-child { color: #ffd700; font-weight: 600; }

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: var(--dark-text);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,137,208,0.12);
    outline: none;
}
textarea.form-control { resize: vertical; min-height: 130px; }

.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); }

/* ── Benefits list (services page) ───────────────────────── */
.benefits-section { padding: var(--section-pad) 0; }
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark-text);
    transition: var(--transition);
}
.benefit-item:hover { transform: translateX(5px); color: var(--primary); }
.benefit-item i { color: var(--primary); font-size: 1.1rem; }

/* ── Utility ──────────────────────────────────────────────── */
.bg-light-blue  { background: var(--light-bg); }
.text-primary-c { color: var(--primary) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }
.text-red       { color: var(--red-accent) !important; }
.fw-800         { font-weight: 800 !important; }
.rounded-pill-custom { border-radius: 50px !important; }

.separator { height: 4px; width: 60px; background: var(--primary); border-radius: 3px; }
.separator-center { margin: 12px auto 0; }
.separator-red { background: var(--red-accent); }

/* ── Floating Contact Widget ─────────────────────────────── */
.float-contact-wrap {
    position: fixed;
    bottom: 28px;
    left: 22px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.fc-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Main circle buttons */
.fc-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    outline: none;
}

.fc-btn-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
}
.fc-btn-wa:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.fc-btn-call {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0,137,208,0.45);
}
.fc-btn-call:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(0,137,208,0.55);
}

/* Pulse ring on buttons */
.fc-btn-wa::after,
.fc-btn-call::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: fcPulse 2.4s ease-in-out infinite;
}
.fc-btn-wa::after  { border-color: #25d366; animation-delay: 0s; }
.fc-btn-call::after { border-color: var(--primary); animation-delay: 1.2s; }

@keyframes fcPulse {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0;   transform: scale(1.7); }
}

/* Popup card */
.fc-popup {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    min-width: 190px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

/* Arrow pointing left toward the button */
.fc-popup::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right-color: #fff;
}

/* Show popup on hover (desktop) */
.fc-item:hover .fc-popup,
.fc-item:focus-within .fc-popup,
.fc-item.active .fc-popup {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%) translateX(0);
}

.fc-popup-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}

.fc-popup a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 2px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    border-bottom: 1px solid #f8f8f8;
}
.fc-popup a:last-child { border-bottom: none; padding-bottom: 2px; }
.fc-popup a i { font-size: 0.85rem; }
.fc-popup a:hover { padding-left: 4px; }
.fc-popup-wa   a:hover { color: #25d366; }
.fc-popup-call a:hover { color: var(--primary); }

/* ── Responsive: mobile ──────────────────────────────────── */
@media (max-width: 575.98px) {
    .float-contact-wrap {
        bottom: 20px;
        left: 14px;
        gap: 10px;
    }
    .fc-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .fc-popup {
        min-width: 170px;
        font-size: 0.88rem;
    }
}

/* On very narrow screens, popup goes above the button instead */
@media (max-width: 360px) {
    .fc-popup {
        left: 0;
        top: auto;
        bottom: calc(100% + 10px);
        transform: translateX(0) translateY(0);
    }
    .fc-popup::before {
        right: auto;
        left: 18px;
        top: 100%;
        transform: none;
        border-right-color: transparent;
        border-top-color: #fff;
    }
    .fc-item:hover .fc-popup,
    .fc-item.active .fc-popup {
        transform: translateX(0) translateY(0);
    }
}
