﻿/* --- VARIABLES & RESET --- */
:root {
    /* Colors */
    --primary: #161E54;
    /* Deep Navy Blue */
    --primary-light: #eff6ff;
    --primary-dark: #0f172a;
    --accent: #F86F03;
    /* Vibrant Orange */
    --accent-light: #fda154;
    --accent-dark: #c65802;
    --accent-soft: #fff5ed;
    --accent-glow: rgba(248, 111, 3, 0.15);

    /* Social Colors */
    --whatsapp: #25d366;
    --facebook: #1877f2;
    --twitter: #1da1f2;
    --email: #64748b;

    --text-dark: #0f172a;
    --text-gray: #475569;
    --bg-light: #f8fafc;
    --white: #ffffff;

    /* Typography Scale */
    --fs-h1: 3.5rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1.1rem;
    --fs-p: 1.05rem;

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Utils */
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 24px;
    --radius-lg: 120px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scrollbar-gutter: stable;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;

}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: var(--fs-p);
    margin-top: 0 !important;
    /* Force override Google Translate margin */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fw-extrabold);
    letter-spacing: -1px;
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

h5 {
    font-size: var(--fs-h5);
}

h6 {
    font-size: var(--fs-h6);
}

p {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Global Button System */
.btn-pdi {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: var(--fw-bold);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    text-decoration: none !important;
    white-space: nowrap;
    width: fit-content;
}

.btn-pdi-primary {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-pdi-primary:hover {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-pdi-accent {
    background: var(--accent);
    color: var(--white) !important;
    box-shadow: 0 5px 10px rgba(248, 111, 3, 0.3);
}

.btn-pdi-accent:hover {
    background: var(--white);
    color: var(--accent) !important;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(248, 111, 3, 0.4);
}

/* --- NEW CHECKLIST SECTIONS --- */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Premium Card Hover Effect */
.card-hover-premium {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}

.card-hover-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(248, 111, 3, 0.15) !important;
    border-color: var(--accent-light);
}

.card-hover-premium:hover .icon-box-sm i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.expert-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.icon-box-sm {
    width: 48px;
    height: 48px;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-accent-soft {
    background-color: var(--accent-soft);
}

.bg-accent {
    background-color: var(--accent) !important;
}

/* --- PREMIUM REDESIGN --- */
.accordion-premium .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 1rem;
}

.accordion-premium .accordion-button {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    font-weight: 700;
}

.accordion-premium .accordion-button::after {
    filter: brightness(0) invert(1);
    /* Make arrow white */
}

.accordion-premium .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-premium .accordion-collapse {
    border: 1px solid var(--primary);
    border-top: none;
    background: var(--white);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.expert-cta-dark {
    background-color: #0b1120;
    /* Very dark navy/black */
    color: var(--white);
    border-radius: var(--radius);
}

.issue-card-premium {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.issue-card-premium:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.btn-pdi-outline {
    background: transparent;
    color: var(--primary) !important;
    border-color: var(--primary);
}

.btn-pdi-outline:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* --- NEW FEATURE SECTIONS --- */

/* 1. Process Timeline */
.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    border: 1px dashed #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.process-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.process-card:hover .process-icon-wrapper {
    background: var(--accent);
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}

/* 2. Glass Stats */
.glass-stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    /* Primary color shadow */
    border-color: var(--primary-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

/* 3. Unique Testimonials */
.review-card-unique {
    background: var(--white);
    border-radius: 24px 4px 24px 4px;
    /* Unique shape */
    padding: 2rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.review-card-unique:hover {
    transform: rotate(1deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px 24px 4px 24px;
    /* Shape shift on hover */
}

/* 4. Category Grid */
.category-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-light);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: var(--white);
}

/* 5. Report Mockup */
.report-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transform: rotate(-2deg);
    transition: var(--transition);
}

.report-mockup:hover {
    transform: rotate(0) scale(1.02);
}

.report-line {
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 12px;
}

.report-line.short {
    width: 60%;
}

.report-line.long {
    width: 100%;
}

.check-list-style li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

/* --- CUSTOM CHECKLIST STYLES --- */
.checklist-item-row {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0 !important;
    /* Ensure border is visible */
    background-color: var(--white);
}

.checklist-item-row:hover {
    background-color: #f8fafc;
    border-color: var(--primary-light) !important;
    transform: translateX(4px);
}

.checklist-item-row.is-checked {
    background-color: #fff7ed;
    /* Light orange bg */
    border-color: var(--accent) !important;
}

.custom-pdi-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    /* Rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    position: relative;
    transition: all 0.2s ease;
    background-color: white;
}

.checklist-item-row:hover .custom-pdi-checkbox {
    border-color: var(--accent);
}

.checklist-item-row.is-checked .custom-pdi-checkbox {
    background-color: var(--accent);
    border-color: var(--accent);
}

.custom-pdi-checkbox i {
    color: white;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checklist-item-row.is-checked .custom-pdi-checkbox i {
    opacity: 1;
    transform: scale(1);
}

.item-text {
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.2s ease;
}

.checklist-item-row.is-checked .item-text {
    color: var(--text-dark);
    font-weight: 600;
}

/* --- PREMIUM MODEL BADGE --- */
.model-badge-premium {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.badge-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 600;
    margin-right: 0.75rem;
}

.badge-separator {
    color: #cbd5e1;
    margin-right: 0.75rem;
    font-weight: 300;
}

.badge-value {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
}


/* --- GOOGLE TRANSLATE HIDDEN --- */
/* Hide the top banner iframe */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe[id^=":"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Reset body position */
body {
    top: 0px !important;
    position: static !important;
}

/* Hide the tooltip that appears on hover */
.goog-te-balloon-frame {
    display: none !important;
}

/* Remove the "original text" tooltip on hover */
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Hide the Google icon in the language dropdown if present */
.goog-te-gadget-icon {
    display: none !important;
}

/* Ensure the wrapper doesn't take space */
.goog-te-gadget-simple {
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    font-size: 0 !important;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.text-accent {
    color: var(--accent) !important;
}

.text-accent-dark {
    color: var(--accent-dark) !important;
}

.bg-accent-soft {
    background-color: var(--accent-soft) !important;
}

.section-subtitle-pdi {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.section-subtitle-pdi::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.section-subtitle-pdi::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
}

/* --- HEADER --- */
header {
    background: var(--white);
    margin: auto;
    /* padding: 1rem 5%; REMOVED for full width */
    /* padding: 1rem 0; */
    /* display: flex;
    justify-content: center;
    align-items: center; */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
}

/* --- NEW HEADER STYLES --- */
.header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 99999;
    will-change: transform;
    /* Hint for rendering optimization */
}

.header .navbar-brand img {
    width: 200px;
    /* Explicit width for stability */
    height: auto;
}

.main-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

#google_translate_element {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
}

/* refined select styling to match premium theme */
/* Custom Language Switcher */
.language-switcher {
    position: relative;
    z-index: 1001;
    /* Ensure above other elements */
}

.custom-lang-switcher {
    position: relative;
    width: 200px;
    font-family: 'Poppins', sans-serif;
}

.lang-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    border-radius: 50px;
    /* Rounded pill shape */
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.lang-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.lang-btn i {
    font-size: 0.8rem;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.lang-menu {
    position: absolute;
    top: 110%;
    /* increased top spacing */
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    overflow: hidden;
    display: none;
    z-index: 1100;
    border: 1px solid #f1f5f9;
    padding: 5px 0;
}

.custom-lang-switcher.active .lang-menu {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

.lang-option {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    font-weight: 500;
}

/* Premium Hover Effect */
.lang-option:hover {
    background: #1557b0;
    /* Google Blue-ish */
    color: var(--white);
    padding-left: 25px;
    /* Slight movement effect */
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Premium Toggler Styles */
.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.custom-toggler {
    border: none !important;
    padding: 12px;
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-toggler:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 30, 84, 0.15);
    /* Primary color shadow tint */
    background: var(--primary);
}

.custom-toggler span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.custom-toggler:hover span {
    background-color: var(--white);
}

/* Toggler Open State (Cross Animation) */
.custom-toggler:not(.collapsed) {
    background: var(--primary);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
    /* Full button rotation for fun */
}

.custom-toggler:not(.collapsed) span {
    background-color: var(--white);
}

.custom-toggler:not(.collapsed) span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.custom-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.custom-toggler:not(.collapsed) span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* refined select styling to match premium theme */
.language-switcher select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.language-switcher select:hover {
    border-color: var(--primary);
}

.language-switcher select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Nav Links Color Update */
.main-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 15px;
    /* Restored optimized margin */
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* Prevent wrapping */
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #F86F03 !important;
}

/* Hire Expert specific styling if needed, currently it is a nav-link */
/* .nav-link[href*="hire-expert"] {
    color: var(--accent) !important;
} */

/* --- RESPONSIVE HEADER --- */
/* Laptop/Small Desktop Optimization */
@media (min-width: 992px) and (max-width: 1250px) {
    .header .navbar-brand img {
        width: 170px;
    }

    .main-nav .nav-link {
        margin: 0 8px;
        /* Tighter spacing */
        font-size: 15px;
    }

    .custom-lang-switcher {
        margin-left: 0.5rem;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 0.5rem 0;
    }

    .header .navbar-brand img {
        width: 150px;
        /* Smaller logo for tablet/mobile */
        height: auto;
    }

    .main-nav .nav-link {
        margin: 10px 0;
        /* Vertical stacking spacing */
        text-align: center;
        padding: 10px;
        border-radius: 8px;
    }

    .main-nav .nav-link:hover {
        background-color: var(--primary-light);
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1.5rem;
        border-radius: 0 0 24px 24px;
        /* Smooth rounded bottom */
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        margin-top: 0;
        /* Remove margin that causes jump */
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        max-height: 80vh;
        overflow-y: auto;
    }

    .custom-lang-switcher,
    .language-switcher {
        margin-left: 0 !important;
        margin-top: 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .custom-lang-switcher {
        width: 90%;
        /* Responsive width */
    }

    .lang-btn {
        width: 100%;
        justify-content: space-between;
    }

    .lang-menu {
        width: 100%;
        text-align: left;
        /* Align left for mobile readable menu */
        position: static;
        box-shadow: none;
        border: 1px solid #f1f5f9;
        margin-top: 10px;
        display: none;
        /* JS toggles this */
    }

    .custom-lang-switcher.active .lang-menu {
        display: block;
        /* JS toggles this */
    }

    .language-switcher select {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .header .navbar-brand img {
        width: 130px;
        /* Smallest logo for mobile */
    }

    .navbar-toggler {
        padding: 0.25rem;
    }
}

/* --- HERO SECTION --- */
.hero {
    background: var(--primary);
    text-align: center;
    padding: 4rem 0;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    color: var(--white);
}

.hero h1 {
    /* font-size: 4rem; */
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.hero-btn {
    background: var(--accent);
    color: var(--white);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(248, 111, 3, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--white);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.6s;
    transform: skewX(-25deg);
    animation: shine-sweep 3s infinite linear;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(248, 111, 3, 0.4);
    border-color: var(--accent);
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* --- CHECKLIST PAGE HERO --- */
.checklist-hero {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

.premium-subtitle {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.premium-subtitle::before,
.premium-subtitle::after {
    content: '—';
    margin: 0 10px;
    color: var(--accent);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .checklist-hero {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

/* --- BRANDS GRID --- */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}


.section-title h2 {
    color: var(--primary-dark);
}

.section-title p {
    color: var(--text-gray);
}



/* --- BRAND CARDS (Neon Laser Animation) --- */
.brand-card {
    position: relative;
    padding: 2rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    background: var(--white);
    /* Light static border for structure when not hovering */
    box-shadow: 0 0 0 1px #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* The Animated Laser Beam (Dual Sided) */
.brand-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    /* Larger to ensure smooth corners */
    height: 200%;
    /* Dual Comet Gradient: 2 Beams opposite to each other */
    background: conic-gradient(from 0deg,
            transparent 0deg,
            var(--primary) 40deg,
            /* Beam 1 Tail */
            #ffffff 50deg,
            /* Beam 1 Head (White) */
            transparent 55deg,
            /* Gap */
            transparent 180deg,
            var(--accent) 220deg,
            /* Beam 2 Tail */
            #ffffff 230deg,
            /* Beam 2 Head (White) */
            transparent 235deg
            /* Gap */
        );
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.3s ease;
}

/* The Inner Card Surface (Masking the center) */
.brand-card::after {
    content: '';
    position: absolute;
    /* Gap for border (2px is premium standard) */
    inset: 2px;
    background: var(--white);
    border-radius: calc(var(--radius) - 2px);
    z-index: -1;
}

/* --- HOVER EFFECTS --- */
.brand-card:hover {
    transform: translateY(-5px);
    /* Soft dual-color glow */
    box-shadow:
        0 10px 30px -5px rgba(37, 99, 235, 0.15),
        0 0 0 1px transparent;
}

.brand-card:hover::before {
    opacity: 1;
    /* Faster spin for high energy (2s) */
    animation: neonLaserSpin 4s linear infinite;
}

@keyframes neonLaserSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.brand-logo-placeholder {
    height: 75px;
    width: 75px;
    /* background: var(--primary-light); */
    /* border-radius: 50%; */
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}


/* --- EXPERT CTA --- */
.expert-banner {
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius);
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(248, 111, 3, 0.2);
}

/* .expert-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 0;
} */

.expert-banner>* {
    position: relative;
    z-index: 1;
}

.expert-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    font-size: 0.9rem;
}

.expert-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateX(10px);
}

/* --- CONTENT CARDS (Why PDI) --- */
.info-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    border-top: 5px solid var(--primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* .info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent var(--accent-soft) transparent;
    transition: var(--transition);
    opacity: 0;
} */

/* .info-card:hover::after {
    opacity: 1;
} */

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-top-color: var(--accent);
}

.info-card h3 {
    color: var(--text-dark);
}

.info-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.info-card ul {
    margin-top: 1.5rem;
}

.info-card li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

/* --- STEPS / HOW TO USE --- */
.steps-container {
    /* background: var(--white);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    box-shadow: var(--shadow); */
    margin: 4rem 0;
}

.step-box {
    text-align: left;
    padding: 2.5rem 1.8rem;
    position: relative;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius);
    background: var(--white);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-box:hover h4,
.step-box:hover p {
    color: var(--white);
}

/* .step-box:hover .step-number {
    transform: translateX(-10px) rotate(-10deg);
    color: var(--accent-soft);
    opacity: 1;
} */

/* --- TIMELINE / CHECKLIST GENERATION --- */
.timeline-container-vertical {
    position: relative;
    padding: 1rem 0;
}

.timeline-row {
    display: flex;
    gap: 2rem;
    min-height: 150px;
}

.timeline-spine {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.timeline-number-circle {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(248, 111, 3, 0.4);
    z-index: 2;
    flex-shrink: 0;
}

.timeline-line {
    width: 3px;
    background: linear-gradient(to bottom, var(--accent) 0%, rgba(248, 111, 3, 0.2) 100%);
    flex-grow: 1;
    margin: 10px 0;
    border-radius: 4px;
}

.timeline-row:last-child .timeline-line {
    display: none;
}

.timeline-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    border: 1px solid #f1f5f9;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
    margin-top: 5px;
    /* Alignment adjustment */
}

.timeline-card:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Specific styling for the section background in models.php */
.methodology-section {
    background: #fff8f3 !important;
    /* Very light orange tint */
}

@media (max-width: 768px) {
    .timeline-row {
        gap: 1rem;
    }

    .timeline-card {
        padding: 1.25rem;
    }
}

.step-box h4 {
    position: relative;
    z-index: 1;
}

.step-box p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--text-gray);
}

/* --- BRAND SPECIFICS --- */
.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 8px solid var(--primary);
    transition: var(--transition);
    height: 100%;
}

.tip-card:hover {
    background: var(--accent-soft);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.tip-card h4 {
    color: var(--primary);
}

.tip-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- FAQ SECTION --- */
.custom-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: var(--white);
}

.custom-accordion .accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    box-shadow: none;
    border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(30, 58, 138, 0.1);
}

.custom-accordion .accordion-body {
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.custom-accordion .accordion-button::after {
    background-size: 1rem;
    transition: 0.3s;
}

/* Optional: Custom Icon Color */
.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* --- FOOTER --- (old footer styles removed; now in pdi-2026.css → .pdi-footer) */

/* --- GOOGLE TRANSLATE CUSTOMIZATION --- */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-banner-frame,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

body {
    position: static !important;
}

/* --- ABOUT PAGE STYLES --- */
.text-primary-dark {
    color: var(--primary-dark);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-box {
    background: var(--bg-light);
    border: 2px dashed var(--primary);
}

.bg-primary-light-section {
    background-color: var(--primary-light);
    padding: 5rem 0;
}

.text-opacity-90 {
    opacity: 0.9;
}

/* --- HIRE EXPERT PAGE STYLES --- */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.pricing-header {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
    text-align: center;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.booking-form-container {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 2rem;
}

.form-control-custom {
    border-radius: 50px;
    padding: 12px 20px;
    border: 1px solid #ced4da;
    width: 100%;
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

/* --- PREMIUM SECTIONS (HIRE EXPERT) --- */

/* 1. Timeline Section */
.timeline-step {
    position: relative;
    padding: 20px;
}


/* 2. Comparison Table */
.comparison-table th {
    background: var(--bg-light);
    color: var(--primary-dark);
    padding: 15px;
}

.check-icon {
    color: #198754;
    font-weight: bold;
}

.cross-icon {
    color: #dc3545;
    font-weight: bold;
}

/* 3. Accordion Custom */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary);
}

/* 4. Report Preview */
.report-preview-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.report-preview-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

/* 5. Inspection Gallery */
.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-description {
    background: white;
    padding: 15px;
    border-bottom: 3px solid var(--primary);
}

/* 6. Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 7. Team Profile */
.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -60px;
    position: relative;
    z-index: 10;
}

.team-card-body {
    background: white;
    padding-top: 70px;
    padding-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 8. Trust Badge */
.trust-badge-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}


/* 10. Sticky Bottom CTA (Mobile) */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    /* Shown via media query if needed */
}

/* --- ANIMATIONS & INTERACTIVITY --- */

/* Scroll Reveal */
.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Hover Effects */
.timeline-step {
    transition: transform 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-10px);
}

.team-member img {
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

/* NEW FORM STYLES (Vertical Layout) - Added Step 394 */
.booking-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    /* Constrain width for vertical look */
    margin: 0 auto;
}

.vertical-form-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: block;
    text-align: left;
}

.form-control-custom {
    border-radius: 8px;
    /* Slightly more rounded */
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    width: 100%;
    margin-bottom: 1.5rem;
    /* Space between fields */
    font-size: 1rem;
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.btn-hire-expert {
    background-color: #2b6bf3;
    /* Bright Blue */
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    border: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}


/* TESTIMONIAL CAROUSEL STYLES */
.testimonial-carousel-card {
    /* Removed max-width for grid layout */
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border-radius: 15px;
    height: 100%;
    /* Equal height */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary);
    /* Blue arrows */
    border-radius: 50%;
}

/* --- REFINED FORM STYLES (Grid Layout & Shadow-SM) --- */
.booking-form-container {
    background: white;
    /* padding: 2.5rem; */
    border-radius: 12px;
    /* box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important; */
    /* user requested shadow-sm */
    /* max-width: 800px; */
    /* Wider for grid layout */
    margin: 0 auto;
    transition: box-shadow 0.3s ease;
}

.booking-form-container:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.vertical-form-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
    text-align: left;
    letter-spacing: 0.5px;
}

.form-control-custom {
    border-radius: 6px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    width: 100%;
    margin-bottom: 0;
    /* Margin handled by grid gap */
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.2s;
}

.form-control-custom:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    outline: none;
}


.booking-form-container {
    max-width: 1100px !important;
}

/* --- PREMIUM PRICING SECTION --- */
/* --- PREMIUM PRICING SECTION --- */
.pricing-card-premium {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-premium.popular {
    border: 2px solid var(--accent);
    /* Orange Border */
    box-shadow: 0 10px 30px rgba(248, 111, 3, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card-premium.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(248, 111, 3, 0.25);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    /* Navy Price */
    margin: 1rem 0;
}

.check-list li {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: #10b981;
    /* Green check */
    margin-right: 10px;
    flex-shrink: 0;
}

.check-list li.cross i {
    color: #ef4444;
    /* Red cross */
}

/* --- GOLD STANDARD FEATURES --- */
.feature-box-premium {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: transform 0.3s;
}

.feature-box-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- DARK TRUST SECTION --- */
.section-dark-trust {
    background-color: var(--primary);
    /* Deep Navy */
    color: white;
    position: relative;
    overflow: hidden;
}

.warning-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
}

.warning-list li i {
    color: var(--accent);
    /* Orange Warning Icons for Contrast */
    margin-right: 15px;
    margin-top: 5px;
}

/* Redundant Variables Removed */

.text-primary-custom {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.bg-primary-custom {
    background-color: var(--primary);
}

.bg-light-custom {
    background-color: var(--primary-light);
}

/* Buttons */
.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 111, 3, 0.3);
}

.btn-accent:hover {
    background-color: #d65a00;
    transform: translateY(-2px);
    color: var(--white);
}

/* Section Titles */
.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- HERO SECTION --- */
.hero-section {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 100px;
    padding-bottom: 150px;
    position: relative;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

/* The Booking Card */
.booking-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: -80px;
    /* Pull up into hero */
    position: relative;
    z-index: 1000;
}

.booking-card .form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.booking-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* --- STATS BAR --- */
.stats-bar {
    margin-top: 60px;
}

.stat-item h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- WHY PDI --- */
.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}

/* --- CHECKLIST --- */
.checklist-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-item i {
    color: var(--accent);
    margin-right: 10px;
}

/* --- HOW IT WORKS --- */
.step-card {
    text-align: center;
    position: relative;
}


.step-content {
    position: relative;
    z-index: 1;
}

/* --- COMPARISON --- */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border: none;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
    vertical-align: middle;
}

/* --- SAMPLE REPORT --- */
.report-section {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.stars {
    color: #FFC107;
}

/* --- FAQ --- */
/* Note: Bootstrap accordion overrides might conflict, ensuring specificity */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-light) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-item {
    border: none !important;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 100px;
        border-radius: 0 0 60px 60px;
    }

    .booking-card {
        padding: 25px;
        margin-top: -50px;
    }
}

/* Ensure Swiper Slides are Equal Height */
.testimonialSwiper .swiper-slide {
    height: auto !important;
    /* Let Flexbox control height */
    display: flex;
    /* Enable flex context */
}

.testimonialSwiper .testimonial-card {
    height: 100%;
    /* Fill the slide height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Push content apart if needed */
}


/* --- ANTI-JERK & SMOOTH LOAD FIXES --- */

/* 1. Prevent Google Translate Layout Shift */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

#google_translate_element {
    display: none;
    /* Hide the default widget container */
}

.goog-te-balloon-frame {
    display: none !important;
}

/* Utility Classes for Checklist */
.ls-1 {
    letter-spacing: 1px;
}

.radius-theme {
    border-radius: var(--radius) !important;
}

.bg-white-theme {
    background-color: var(--white) !important;
}

.text-gray-theme {
    color: var(--text-gray) !important;
}

.checklist-header-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0.1;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 1rem;
}

.custom-accordion .accordion-button {
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px !important;
    box-shadow: var(--shadow);
    padding: 1rem 1.5rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.custom-accordion .accordion-collapse {
    background: var(--white);
    border: 1px solid var(--bg-light);
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(0.8);
    transition: transform 0.3s;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(0.8) rotate(-180deg);
}



/* Checklist Item Styling */
.checklist-item-row {
    background-color: #fff;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist-item-row:hover {
    background-color: #f8fafc;
    border-color: var(--primary) !important;
}

.check-indicator {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid #22c55e; */
    /* Green border */
    border-radius: 8px;
    /* Rounded square */
    color: #22c55e;
    /* Green check icon by default */
    /* font-size: 18px; */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    cursor: pointer;
}

.checklist-item-row:hover .check-indicator {
    border-color: #16a34a;
    /* Darker green on hover */
    color: #16a34a;
}

.item-text {
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checklist-item-row:hover .item-text {
    color: var(--primary) !important;
}

.checklist-item-row.is-checked {
    background-color: #f0fdf4;
    border-color: var(--accent) !important;
}

.checklist-item-row.is-checked .check-indicator {
    background-color: var(--accent);
    border-color: var(--accent) !important;
    color: #fff !important;
    /* White checkmark */
    transform: scale(1.1);
}

.checklist-item-row.is-checked .item-text {
    color: #166534 !important;
    /* text-decoration: line-through; */
    opacity: 0.7;
}

/* Safety Badge Styles */
.safety-badge-container {
    padding: 3rem 0;
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 15px 35px 15px 15px;
    border-radius: 60px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.safety-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #22c55e;
}

.safety-icon-wrapper {
    width: 45px;
    height: 45px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 18px;
    margin-left: 10px;
    flex-shrink: 0;
}

.safety-text {
    display: flex;
    flex-direction: column;
}

.safety-text .title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 2px;
}

.safety-text .subtitle {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-action {
    transition: all 0.3s;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Custom Buttons - Premium Overhaul */
.btn-action {
    border: none;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-action::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.btn-action:hover::after {
    left: 100%;
}

.btn-action i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-action:hover i {
    transform: scale(1.2);
}

.btn-action-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: var(--white) !important;
}

.btn-action-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
    color: var(--white) !important;
}

.btn-action-outline {
    background: var(--white);
    border: 1.5px solid #e2e8f0;
    color: var(--primary) !important;
}

.btn-action-outline:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

/* Back Button refinement */
.btn-back {
    color: var(--text-gray);
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    background-color: #f8fafc;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- GLOBAL UTILITY CLASSES --- */

.text-accent-theme {
    color: var(--accent) !important;
}

.text-primary-theme {
    color: var(--primary) !important;
}

.bg-primary-light-theme {
    background-color: var(--primary-light) !important;
    color: var(--primary) !important;
}

.bg-gray-light-theme {
    background-color: #e2e8f0 !important;
    color: #64748b !important;
}

.opacity-90 {
    opacity: 0.9 !important;
}

.w-40 {
    width: 40% !important;
}

/* --- PAGE SPECIFIC STYLES --- */

/* Index Page */
.expert-banner-title {
    font-size: 2.5rem !important;
}

/* Models Page */
.model-img-container {
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent;
}

.model-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover .model-img {
    transform: scale(1.1);
}

.brand-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
    /* border-radius: 16px; */
    background: #fff;
}

.brand-card:hover {
    /* transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary); */
}

.issue-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary);
    transition: 0.3s;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.expert-cta-section {
    background-color: var(--primary);
    /* background-image: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%); */
    border-radius: var(--radius) !important;
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border: none;
    transition: transform 0.2s;
}

.download-box {
    background-color: var(--primary-light);
    border: 1px dashed var(--primary);
}

.icon-box {
    font-size: 2rem;
}

.btn-back {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: transparent;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-back:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.2);
}

.info-box {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.icon-circle {
    height: 60px;
    width: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
}

.info-box:hover .icon-circle {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Hire Expert Page */
.expert-hero-img {
    opacity: 1 !important;
    max-height: 400px !important;
    object-fit: contain !important;
}

.placeholder-car-block {
    overflow: hidden;
}

/* Translate Cleanup (Consolidated) */
.goog-tooltip,
.goog-te-balloon-frame,
.goog-te-banner-frame {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

.lang-select {
    border-radius: 20px !important;
    border: 1px solid #dee2e6 !important;
}

/* Responsiveness Utilities */
@media (max-width: 768px) {
    .model-img-container {
        height: 120px !important;
    }

    .btn-back {
        display: block !important;
        text-align: center !important;
    }

    .download-box {
        flex-direction: column !important;
        text-align: center !important;
    }

    .download-box a {
        width: 100% !important;
    }

}

/* Share Modal Styles */
.btn-share {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
    color: #fff !important;
}

.custom-copy-group .form-control {
    background: #f8fafc !important;
    font-size: 0.95rem;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px 0 0 8px !important;
}

.custom-copy-group .btn-primary {
    background: #2563eb;
    border: none;
    border-radius: 0 8px 8px 0 !important;
    font-size: 0.9rem;
    padding: 0 25px;
}

.modal-content.radius-theme {
    border-radius: 20px !important;
    overflow: hidden;
}

.modal-header .btn-close {
    background-color: #f1f5f9;
    border-radius: 50%;
    padding: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
    background-color: #e2e8f0;
}

@media (max-width: 576px) {
    .btn-share {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* --- NEW VISUAL SECTIONS --- */

/* Gallery Section */
.gallery-section {
    background: #0f172a;
    /* Dark Navy Background */
    color: white;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-card {
    position: relative;
    height: 350px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.overlay-content h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

/* Hover Effects */
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(248, 111, 3, 0.2);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-card:hover .overlay-content p {
    opacity: 1;
    transform: translateY(0);
}


/* Feature Section (Confidence) */
.feature-section {
    background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
    /* Subtle warmth */
    position: relative;
    overflow: hidden;
}

.feature-img-box {
    position: relative;
    padding: 1rem;
}

.feature-img-box img {
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -10px;
}

.badge-2 {
    bottom: 10%;
    left: -10px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.glass-content-box {
    padding: 2rem;
}

.feature-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.f-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    transition: 0.3s;
}

.f-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(248, 111, 3, 0.1);
}

.f-icon {
    font-size: 1.5rem;
    background: var(--primary-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- NEW PREMIUM FEATURE STYLES --- */

/* 1. Glassmorphism Content Box */
.glass-content-box {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

/* 2. Feature Image Box & Floating Badges */
.feature-img-box {
    position: relative;
    border-radius: var(--radius);
    /* box-shadow: var(--shadow); */
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.feature-img-box:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

.badge-1 {
    top: 30px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 3. Modern Feature List Grid */
.feature-list-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .feature-list-modern {
        grid-template-columns: 1fr;
    }

    .glass-content-box {
        padding: 2rem;
        margin-top: 2rem;
        /* Ensure spacing from image on mobile */
    }

    .feature-img-box {
        transform: none;
        margin-bottom: 2rem;
    }

    .badge-1 {
        right: 0;
    }

    .badge-2 {
        left: 0;
    }
}

/* --- IMAGE-BASED LAYOUT OVERHAUL --- */


.btn-primary-theme-lg {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.15);
}

.btn-primary-theme-lg:hover {
    transform: translateY(-5px);
    background-color: var(--accent);
    box-shadow: 0 15px 30px rgba(248, 111, 3, 0.25);
    color: var(--white) !important;
}

/* Feature Item Hover Enhancement */
.f-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.f-item:hover {
    transform: translateX(15px) scale(1.02) !important;
}

.floating-badge {
    transition: all 0.3s ease !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-img-box:hover .floating-badge {
    transform: scale(1.1) rotate(2deg);
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* --- MODELS PAGE REDESIGN --- */
.models-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.model-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.08);
    border-color: var(--accent);
}

.model-image-wrapper {
    padding: 30px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.model-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.model-card:hover .model-image-wrapper img {
    transform: scale(1.05);
}

.model-content {
    padding: 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inspect-feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.inspect-feature-card:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.inspect-feature-card:hover .icon-box-pdi {
    background: var(--white);
    color: var(--primary);
}

.inspect-feature-card:hover h4,
.inspect-feature-card:hover p {
    color: var(--white) !important;
}

.icon-box-pdi {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.defect-insight-card {
    background: #ffffff;
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: var(--transition);
}

.defect-insight-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

/* --- NEW MODELS SECTIONS --- */
.section-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
}

.pdi-value-card {
    padding: 30px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
    height: 100%;
}

.pdi-value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent);
}



.trust-badge {
    padding: 20px;
    text-align: center;
    background: var(--primary-light);
    border-radius: 16px;
    transition: var(--transition);
}

.trust-badge:hover {
    background: var(--accent-glow);
    transform: scale(1.05);
}

/* --- NEW METHODOLOGY TIMELINE --- */
.timeline-container-vertical {
    position: relative;
    padding: 10px;
}

.timeline-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

/* Spine: Number + Line */
.timeline-spine {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 25px;
    min-width: 50px;
}

.timeline-number-circle {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(248, 111, 3, 0.3);
    z-index: 2;
    flex-shrink: 0;
}

.timeline-line {
    width: 3px;
    background-color: var(--accent);
    flex-grow: 1;
    margin-top: 5px;
    border-radius: 2px;
    opacity: 0.3;
}

.timeline-row:last-child .timeline-line {
    display: none;
}

/* Content Card */
.timeline-card {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    border-left: 5px solid var(--accent);
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* --- COMMON ISSUES CARD REDESIGN --- */
.issue-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
    border-top: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent);
}

.issue-card h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.issue-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- CAROUSEL INDICATORS --- */
.custom-indicators {
    bottom: -15px;
    /* Position below the cards */
}

.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: #dee2e6 !important;
    border: none !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.custom-indicators button.active {
    background-color: var(--accent) !important;
    transform: scale(1.2);
    width: 12px !important;
    height: 12px !important;
}

/* --- SHARE MODAL STYLES --- */
.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--white) !important;
    border: none;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-decoration: none !important;
}

.btn-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: var(--white) !important;
}

.btn-share-whatsapp {
    background-color: var(--whatsapp);
}

.btn-share-facebook {
    background-color: var(--facebook);
}

.btn-share-twitter {
    background-color: var(--twitter);
}

.btn-share-email {
    background-color: var(--email);
}

.copy-link-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.copy-input {
    border: none;
    background: transparent;
    color: var(--text-gray);
    padding: 10px;
    flex-grow: 1;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-copy-link {
    background: var(--facebook);
    /* Creates that bright blue look */
    color: white;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
}

.btn-copy-link:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.modal-header-clean {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title-clean {
    color: var(--facebook);
    /* Using the brighter blue for title as seen in image */
    font-weight: 800;
    font-size: 1.75rem;
}

/* --- UTILITY CLASSES (Refactored from Inline) --- */
.d-none-check {
    display: none !important;
}

.text-slate-400 {
    color: #94a3b8 !important;
}

.w-40-pct {
    width: 40% !important;
}

.hero-desc-custom {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-title-large {
    font-size: 2.5rem;
    color: #0f172a;
}

.card-rounded-white {
    border-radius: 24px;
    background: #fff;
}

.icon-circle-bg {
    width: 56px;
    height: 56px;
    background-color: #fff7ed;
    border-radius: 50%;
}

.card-title-dark {
    color: #0f172a;
    font-size: 1.25rem;
}

.card-text-small {
    font-size: 0.95rem;
    line-height: 1.6;
}

.copy-success-msg {
    display: none;
    text-align: right;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.text-primary-var {
    color: var(--primary) !important;
}

/* Fix for modal shift with scrollbar-gutter */
body.modal-open {
    padding-right: 0 !important;
}

/* --- LOCATION SERVICE PAGE CUSTOM STYLES --- */
.hero-location {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
    min-height: 70vh;
    color: var(--white);
    padding: 75px 0px;
}

.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.transition-transform {
    transition: transform 0.4s ease;
}

.group-hover:hover .transition-transform {
    transform: scale(1.05);
}

.transform-scale-sm {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .transform-scale-sm {
        transform: none;
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Float keyframes are already defined above, reusing float */

.text-shadow-hero {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.glass-card-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.border-accent-left-5 {
    border-left: 5px solid var(--accent);
}

.icon-box-60 {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
}

/* --- LOGO MARQUEE / SLIDER --- */
.logo-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-marquee-content {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollMarquee 20s linear infinite;
}

.logo-marquee-item {
    flex-shrink: 0;
    min-width: 120px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-marquee-item:hover {
    opacity: 1;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Grayscale hover effect */
.grayscale-hover-container .logo-marquee-item {
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.grayscale-hover-container .logo-marquee-item:hover {
    filter: grayscale(0%);
}

.bg-defect-scratch {
    background: url('../images/defect-scratch.jpg') center/cover;
}

/* --- Refactored Utility Classes (Location Service) --- */
.text-white-force {
    color: #ffffff !important;
}

.badge-floating-card {
    max-width: 240px;
    border-left: 5px solid var(--accent);
}

.icon-box-50 {
    width: 50px;
    height: 50px;
}

.stats-floating-container {
    margin-top: -60px;
    z-index: 10;
}

.circle-deco-accent {
    width: 200px;
    height: 200px;
    transform: translate(30%, -30%);
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.process-icon-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.min-h-400 {
    min-height: 400px;
}

.bg-tool-icon {
    font-size: 300px;
    transform: rotate(-20deg);
}

.avatar-sm {
    width: 40px;
    height: 40px;
}

.font-sans {
    font-family: sans-serif;
}

/* --- VISIBILITY & LAYOUT FIXES --- */
.section-padding {
    padding: 5rem 0;
}

/* Slightly clearer light background for contrast */
.bg-light-alt {
    background-color: #f1f5f9 !important;
}

.text-dark-force {
    color: #0f172a !important;
}

/* Enhanced visibility for cards on white backgrounds */
.card-visible {
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-visible:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Ensure text doesn't blend into backgrounds */
.text-contrast-high {
    color: #334155;
    /* Slate 700 */
}

/* Fix for Stats Bar overlap visibility */
.stats-floating-container {
    margin-top: -60px;
    z-index: 20;
    position: relative;
}

/* Fix Hero Text Shadow for readability over images/gradients */
.hero-text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 10px;
    }

    .stats-floating-container {
        margin-top: 0;
        margin-bottom: 2rem;
    }
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* --- UNIQUE FAQ SECTION --- */
.faq-wrapper {
    position: relative;
    z-index: 1;
}

.faq-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.faq-card .accordion-button {
    background: transparent !important;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: none !important;
}

.faq-card .accordion-button:not(.collapsed) {
    color: var(--accent);
    background: rgba(248, 111, 3, 0.05) !important;
}

.faq-card .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F86F03'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.2);
}

/* --- UNIQUE CTA FOOTER --- */
.cta-footer-unique {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    border-radius: 40px 40px 0 0;
    padding: 6rem 0;
}

.cta-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
}

.glow-1 {
    top: -100px;
    right: -50px;
}

.glow-2 {
    bottom: -100px;
    left: -50px;
}


/* --- CTA RELOADED --- */
.cta-card-reloaded {
    background: linear-gradient(110deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.cta-card-reloaded::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://img.freepik.com/free-photo/abstract-textured-backgound_1258-30549.jpg');
    /* Subtle texture or pattern */
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: overlay;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

.cta-form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    backdrop-filter: blur(5px);
    height: 60px;
    padding-left: 1.5rem;
    border-radius: 12px 0 0 12px !important;
}

.cta-form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-form-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    box-shadow: none;
}

.cta-btn-submit {
    height: 60px;
    padding: 0 2.5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: 0 12px 12px 0 !important;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-btn-submit:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* --- CTA RELOADED --- */
.cta-card-reloaded {
    background: linear-gradient(110deg, #0f172a 0%, #1e3a8a 100%) !important;
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.cta-card-reloaded::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://img.freepik.com/free-photo/abstract-textured-backgound_1258-30549.jpg');
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.bg-dark-premium {
    background-color: #0B1120 !important;
}

.text-white-force {
    color: #ffffff !important;
}

.form-floater {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
}

.input-dark-theme {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    height: 55px;
    border-radius: 10px !important;
}

.input-dark-theme:focus {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(248, 111, 3, 0.1);
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
}


/* --- Location Service Page Refactor --- */

/* FAQ Section */
.sticky-faq-sidebar {
    top: 100px;
    z-index: 1;
}

.faq-expert-icon {
    width: 60px !important;
    height: 60px !important;
}

.bg-faq-section {
    background-color: #f8faff !important;
}

/* Final CTA Section */
.cta-dark-mode-fixed {
    background-color: #0B1120 !important;
    color: #ffffff !important;
}

.cta-bg-decor {
    opacity: 0.1;
    right: -100px;
    top: -100px;
}

.cta-icon-box {
    width: 50px !important;
    height: 50px !important;
}

.cta-form-label {
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
}

.cta-form-input-shadow-none {
    box-shadow: none !important;
}

.cta-submit-btn-gradient {
    background: linear-gradient(135deg, #F86F03 0%, #FF8C00 100%) !important;
    transition: transform 0.2s ease-in-out !important;
}

.cta-social-btn {
    width: 45px !important;
    height: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-social-whatsapp {
    border-color: #25D366 !important;
    color: #25D366 !important;
}

.cta-social-phone {
    border-color: #0d6efd !important;
    color: #0d6efd !important;
}

/* --- MODERN ACCORDION (Standardized for all FAQ Sections) --- */
.accordion-modern .accordion-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.accordion-modern .accordion-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.accordion-modern .accordion-header {
    margin-bottom: 0;
}

.accordion-modern .accordion-button {
    background-color: #fff;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background-color: #eff6ff !important;
    /* Light Blue BG */
    color: var(--primary) !important;
    /* Dark Blue Text */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

.accordion-modern .accordion-button::after {
    /* Custom Arrow Color */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23161E54'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-modern .accordion-collapse {
    background: #fff;
}

.accordion-modern .accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}