/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Brand Colors (Premium Upgrade) */
    --primary-color: #FF6B35;
    --primary-light: #FF8A5C;
    --primary-dark: #E55A2B;

    --secondary-color: #5D2B1E;
    /* Rich Mahogany */
    --secondary-light: #7D4234;
    --secondary-dark: #3D1C14;

    --accent-color: #F4A261;
    --accent-light: #F6B883;

    --white: #ffffff;

    /* Gray Scale */
    --gray-50: #F9F9F9;
    --gray-100: #F0F0F0;
    --gray-200: #E5E5E5;
    --gray-300: #D1D1D1;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-900: #171717;

    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;

    /* Shadows (Refined) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 20px rgba(93, 43, 30, 0.08);
    --shadow-xl: 0 12px 30px rgba(93, 43, 30, 0.12);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
}

/* ============================================
   HEADER STYLES (Existing - Enhanced)
   ============================================ */
.brand-bar {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.site-logo {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.trust-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--gray-900);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none !important;
}

.header-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navbar */
.main-nav {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.main-nav .navbar-nav>li>a {
    font-weight: 700;
    color: var(--gray-700) !important;
    padding: 15px 20px;
    transition: var(--transition);
    font-size: 15px;
}

.main-nav .navbar-nav>li>a:hover {
    color: var(--primary-color) !important;
    background: transparent !important;
}

.main-nav .navbar-nav>li.active>a {
    color: var(--primary-color) !important;
    background: transparent !important;
}

/* Trust Strip */
.trust-strip {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 12px 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Helpers */
.v-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Wide CTA in Navbar */
.nav-cta-wrap {
    margin-top: 5px;
}

.nav-highlight a {
    min-width: 300px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    padding: 12px 22px !important;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-highlight a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.brand-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrap {
    background: var(--white);
    border-radius: 50%;
    padding: 2px;
    box-shadow: var(--shadow-md);
}

.site-logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: url('../images/spiritual_background_1770223693547.png') center/cover no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(93, 43, 30, 0.9));
    width: 100%;
    padding: 80px 0;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-subtext {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 35px;
    font-family: 'Open Sans', sans-serif;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Trust Badges under Hero */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-item i {
    color: var(--accent-light);
}

.hero-badges {
    margin: 30px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta {
    margin-top: 40px;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none !important;
    margin: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary-large {
    display: inline-block;
    background: #25D366;
    color: var(--white) !important;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none !important;
    margin: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ============================================
   TRUST STATISTICS
   ============================================ */
.trust-stats {
    background: var(--white);
    padding: var(--space-2xl) 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 10px 0;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 600;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-700);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    margin-top: 20px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--gray-50);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    text-decoration: none !important;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-700);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 15px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(93, 43, 30, 0.05));
    padding: var(--space-3xl) 0;
}

.why-card {
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.why-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
}

.testimonial-card {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 2px solid var(--gray-200);
    padding-top: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-location {
    font-size: 14px;
    color: #888;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.contact-info {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-details p {
    color: var(--gray-500);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border: 2px solid var(--gray-200);
    padding: 12px 15px;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.btn-block {
    width: 100%;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: linear-gradient(135deg, #3D1C14, #1E0E0A);
    color: var(--white);
    padding: var(--space-2xl) 0 20px;
    border-top: 4px solid var(--primary-color);
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-300);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--gray-300);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
}

.faq-panel {
    border: none !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px !important;
    box-shadow: var(--shadow-md) !important;
    overflow: hidden;
    transition: var(--transition);
}

.faq-panel:hover {
    box-shadow: var(--shadow-lg) !important;
}

.faq-panel .panel-heading {
    background: linear-gradient(135deg, var(--gray-50), var(--white)) !important;
    border: none !important;
    padding: 0 !important;
}

.faq-panel .panel-title {
    margin: 0;
}

.faq-panel .panel-title a {
    display: block;
    padding: 20px 25px;
    color: var(--gray-700);
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.faq-panel .panel-title a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.faq-panel .panel-title a i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    transition: var(--transition);
}

.faq-panel .panel-title a[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-panel .panel-body {
    padding: 20px 25px 20px 58px;
    background: var(--white);
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 15px;
    border-top: 1px solid var(--gray-100);
}

.faq-panel .panel-collapse {
    border: none !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .hero-badge {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        display: block;
        margin: 10px auto;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 32px;
    }

    .service-title {
        font-size: 20px;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .main-nav {
        display: none !important;
    }

    .brand-left {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 10px !important;
        margin: 0 auto !important;
        padding: 12px 0 !important;
    }

    .site-logo {
        font-size: 18px !important;
        text-align: left !important;
        margin-top: 0 !important;
    }

    .site-logo-img {
        width: 40px !important;
        height: 40px !important;
    }

    .logo-wrap {
        margin-bottom: 0;
    }

    .nav-cta-wrap {
        display: none;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .nav-highlight {
        float: none;
    }

    .nav-highlight a {
        display: block;
        width: 100%;
        min-width: 100%;
        border-radius: 8px;
        font-size: 18px;
        padding: 14px 10px !important;
    }

    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        gap: 10px;
        padding: 12px;
        background: white;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid var(--gray-100);
    }

    .sticky-btn {
        flex: 1;
        padding: 12px;
        border-radius: 8px;
        font-weight: 700;
        text-align: center;
        text-decoration: none !important;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

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

    .sticky-btn.whatsapp-btn {
        background: #25D366;
        color: var(--white) !important;
    }

    /* Hide section dividers on mobile if too busy */
    .section-divider {
        margin: 20px auto;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Contact Card Utilities */
.contact-card-item {
    border-bottom: none;
    text-align: center;
}

.contact-card-wrapper {
    width: 100%;
}

.contact-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card-icon-whatsapp {
    color: #25D366;
}

.contact-card-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card-heading-primary {
    color: var(--primary-color);
}

.contact-card-heading-whatsapp {
    color: #25D366;
}

.contact-card-text {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.contact-card-subtext {
    margin-top: 20px;
    color: var(--gray-500);
    font-size: 14px;
}

.contact-info-box {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-info-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.contact-benefit-title {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.contact-benefit-text {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    background: var(--white);
    padding: 60px 0;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.comparison-item {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item>div {
    flex: 1;
    padding: 20px;
    text-align: center;
    position: relative;
}

.comparison-item .others {
    color: var(--gray-500);
    background: var(--white);
}

.comparison-item .us {
    font-weight: 700;
    color: var(--gray-900);
    background: rgba(255, 107, 53, 0.05);
}

.comparison-item .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.comparison-item .others .label {
    color: var(--gray-400);
}

.comparison-item .us .label {
    color: var(--primary-color);
}

/* ============================================
   TESTIMONIALS REDESIGN
   ============================================ */
.testimonials-section {
    padding: 60px 0;
    background: var(--white);
}

.testimonial-card-new {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card-new:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--secondary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.testimonial-info h4 {
    margin: 0;
    font-size: 18px;
    color: var(--gray-900);
    font-weight: 800;
}

.testimonial-info .location {
    font-size: 13px;
    color: var(--gray-500);
    margin: 2px 0 5px;
}

.testimonial-info .rating {
    color: #FFD700;
    font-size: 12px;
}

.testimonial-problem {
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-problem strong {
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-result {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 800;
}

.testimonial-date {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 15px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.trust-card {
    text-align: center;
    padding: 30px;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.trust-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 800;
}

.disclaimer-box {
    margin: 50px auto 0;
    max-width: 900px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary-color);
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
    box-shadow: var(--shadow-sm);
}

/* Display Utilities */
.d-inline-block {
    display: inline-block;
}

/* Margin Utilities */
.mt-40 {
    margin-top: 40px;
}

/* Trust Strip Animation (replaces deprecated marquee) */
.trust-strip-wrapper {
    overflow: hidden;
    width: 100%;
}

.trust-strip-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    line-height: 1;
}

.trust-strip-content:hover {
    animation-play-state: paused;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .trust-strip-content {
        animation: none;
        padding-left: 0;
    }
}

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

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.service-card,
.why-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}