:root {
    /* Color Palette - Modern Teal & Amber */
    --primary-color: #0f766e;
    /* Teal 700 - Professional & Trustworthy */
    --primary-light: #14b8a6;
    /* Teal 500 - Vibrant */
    --accent-color: #f59e0b;
    /* Amber 500 - Warmth/Energy */
    --accent-hover: #d97706;
    /* Amber 600 */

    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-light: #f0fdfa;
    /* Very light teal tint */
    --bg-white: #ffffff;
    --success: #10b981;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* Typography Imports need to be in HTML head for performance, using @import here for simplicity in preview if needed, 
   but standard practice is <link> in HTML. We will skip @import and assume <link> in HTML. */

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Animation removed to fix modal scrolling issue */
/* @keyframes fadeInPage { ... } */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Animated Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shine Effect for Primary Buttons */
.btn-primary::before {
    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;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background-color: var(--accent-hover);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Secondary Button Hover */
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

/* Ensure visibility on light backgrounds if hero fails */
.bg-light .btn-secondary,
.white-bg .btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--text-white);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--primary-color);
}

/* Custom Teal Button for Services */
.btn-teal {
    margin-top: 1rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 118, 110, 0.2);
}

.section {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
    max-width: 100% !important;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Scroll Reveal Animations */
.reveal-pending {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-pending.active {
    opacity: 1;
    transform: translateY(0);
}

.card:active {
    transform: scale(0.98);
}


.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;

    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease;
}

/* Remove underline for dropdown toggles as they have chevron */
.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-link.dropdown-toggle i {
    font-size: 0.75rem;
    margin-top: 1px;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.3);
}

.profile-btn i:first-child {
    font-size: 1.25rem;
}

.profile-btn i:last-child {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.profile-dropdown:hover .profile-btn i:last-child,
.profile-dropdown.active .profile-btn i:last-child {
    transform: rotate(180deg);
}

.profile-dropdown:hover .nav-link i.fa-chevron-down,
.profile-dropdown.active .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
    /* Override Bootstrap, rely on opacity/visibility */
}

/* Bridge to prevent menu closing on hover gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.profile-dropdown:hover .dropdown-menu,
.profile-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 10px 10px;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--accent-color);
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

/* Tools Dropdown (Left Aligned) */
.tools-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0;
    margin-right: 1rem;
}

.tools-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
    /* Override Bootstrap */
}

.tools-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.tools-dropdown:hover .dropdown-menu,
.tools-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tools-dropdown:hover .nav-link i.fa-chevron-down,
.tools-dropdown.active .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    /* Increased opacity */
    color: rgba(255, 255, 255, 0.9);
    /* Explicit light text */
}

/* Service Cards */
.card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--text-light);
    /* Ensure this is dark enough: #4A5568 */
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    flex-grow: 1;
    line-height: 1.6;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #0f766e;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    padding: var(--spacing-md) 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Modern & Innovative Design Updates */

/* New Gradient Animation */
@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card {
    background: white;
    /* Fallback for no support */
    background: rgba(255, 255, 255, 0.7);
    /* Translucency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* On light backgrounds, glass cards need more definition */
.bg-light .glass-card {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Innovative Hero (Home) */
/* Innovative Hero (Home) - DARKER GRADIENT */
.hero-innovative {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.92) 0%, rgba(13, 148, 136, 0.85) 100%), url('../images/hero_bg_new.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: 4rem;
}

.hero-innovative h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Added text shadow for readability */
}

/* Fix visibility of original price in hero section */
.hero-innovative span[style*="text-decoration: line-through"] {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Fix visibility of timer text in hero section */
.hero-innovative span[style*="color: #c2410c"] {
    color: #fcd34d !important;
    /* Amber-300 bright yellow */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.hero-innovative p {
    color: #f8fafc;
    /* Slate-50 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-overlay-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

/* Stats Section */
.stats-section {
    padding: 2rem 0;
    margin-top: -8rem;
    /* Overlap with hero */
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Process Timeline (Horizontal) */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #eee;
}

/* FAQ Accordion */
.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    padding-bottom: 1.5rem;
    color: var(--text-light);
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .fa-chevron-down {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* Scrolling Testimonials are complex with CSS only, using grid for now */
.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-style: normal;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none !important;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
}

/* Ensure HIDDEN on Desktop */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Responsive Breakpoints */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-innovative h1 {
        font-size: 2.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
    }

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 2000;
        /* Increased */
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .profile-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
    }



    .hero-innovative h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-innovative {
        padding: 4rem 0 3rem;
        clip-path: none;
    }

    /* Grids */
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Stats Section */
    .stats-section {
        margin-top: -4rem;
        padding: 1rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Process Steps */
    .process-step::after {
        display: none;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    /* Hero Overlay Form */
    .hero-overlay-form {
        margin-top: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        /* Center align footer on mobile */
    }

    .footer-col h4 {
        margin-top: 1rem;
    }

    .footer-links li {
        justify-content: center;
        display: flex;
    }

    .footer-col .d-flex {
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Section Padding */
    .section {
        padding: 2rem 0;
    }

    /* Cards */
    .card {
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-innovative h1 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Dynamic Pricing Styles */
.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.8em;
    margin-right: 0.5rem;
    font-weight: normal;
}

/* Offer Timer Badge */
.offer-timer-badge {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.03);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Feature List (About Page) */
.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-list li {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border-color: var(--primary-light);
}

.feature-list i {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Business Info Card */
.business-info-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.business-info-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.business-info-body {
    padding: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
}

/* Page Hero */
.hero-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d9488 100%);
    color: white;
    padding: 8rem 0 4rem;
    /* Increased top padding to clear navbar */
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: 3rem;
}

.hero-page h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-page p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Form Styles */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.input-group {
    display: flex;
    gap: 0.75rem;
}

.input-group .form-control {
    flex: 1;
}

.otp-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-get-otp {
    background-color: #e2e8f0;
    color: var(--text-dark);
    border: 1px solid #cbd5e1;
}

.btn-get-otp:hover {
    background-color: #cbd5e1;
}

.btn-verify {
    background-color: var(--success);
    color: white;
    border: none;
}

.btn-verify:hover {
    background-color: #059669;
}

.otp-notification {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 20px;
}

.py-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-white) !important;
}

.text-accent {
    color: var(--accent-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

.text-success {
    color: var(--success) !important;
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }

    .hero-page {
        padding: 5rem 0 3rem;
        clip-path: none;
        margin-bottom: 2rem;
    }

    .hero-page h1 {
        font-size: 2.2rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: left;
    }

    .info-value {
        text-align: left;
    }
}

/* Enhanced Badge Pill */
.badge-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    /* Increased size */
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

/* Business Info Card Polish */
.business-info-header {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1.5rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border-color: var(--primary-light);
}

/* Fix Hero Grid Alignment */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        /* Force single column */
        gap: 2rem;
        text-align: center;
    }

    .hero-grid .text-start {
        text-align: center !important;
    }

    .hero-grid .d-flex {
        justify-content: center;
    }

    .quote-form-card {
        margin: 2rem auto 0;
        max-width: 100%;
        width: 100%;
    }
}

/* -----------------------------------------------------
   Trendy Policy Pages (Sidebar + Content)
   ----------------------------------------------------- */

.policy-page-container {
    padding: 4rem 1.5rem;
    background: #fdfdfd;
    /* Subtle texture or plain */
}

/* Layout Grid: Sidebar (250px) + Content (Rest) */
.policy-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Sidebar Styling */
.policy-sidebar {
    position: sticky;
    top: 100px;
    /* Below navbar */
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.policy-toc-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-toc-list li {
    margin-bottom: 0.5rem;
}

.policy-toc-link {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.policy-toc-link:hover,
.policy-toc-link.active {
    background: rgba(15, 118, 110, 0.05);
    /* very light teal */
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Main Content Area */


.policy-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Content Sections */
.policy-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 120px;
    /* For anchor scrolling */
}

.policy-section:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.policy-section h2 i {
    color: var(--accent-color);
    opacity: 0.8;
}

.policy-section p {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-section ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 1rem;
}

.policy-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #475569;
}

.policy-section ul li::before {
    content: '\f058';
    /* fa-circle-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--success);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .policy-sidebar {
        display: none;
        /* Hide sidebar on mobile/tablet or make collapsible? */
        /* For simplicity, hiding sidebar on smaller screens or moving to top */
    }
}

/* -----------------------------------------------------
   Trendy Blog Styles
   ----------------------------------------------------- */

.blog-hero-trend {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
    padding: 6rem 0 8rem;
    /* Extra bottom padding for overlap */
    color: white;
    text-align: center;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    /* Curved bottom */
    margin-bottom: -4rem;
    /* Overlap content */
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.trend-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.trend-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.trend-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.trend-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trend-card:hover .trend-card-img {
    transform: scale(1.1);
}

.trend-category-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trend-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trend-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trend-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.trend-read-more {
    margin-top: auto;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.trend-card:hover .trend-read-more {
    gap: 0.8rem;
    color: var(--accent-hover);
}

/* Blog Filters */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(15, 118, 110, 0.2);
}

/* Blog Details Specific */
.blog-details-container {
    max-width: 900px;
    margin: -6rem auto 4rem;
    position: relative;
    z-index: 10;
}

.blog-details-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-featured-img-large {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.blog-meta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-meta-tags {
    margin-bottom: 1.5rem;
}

.blog-article-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #334155;
}

.blog-article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.blog-author-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

@media (max-width: 768px) {
    .blog-details-card {
        padding: 2rem;
    }

    .blog-hero-content h1 {
        font-size: 2.5rem;
    }

    .blog-featured-img-large {
        height: 250px;
    }
}

/* Horizontal Scroll Categories */
.blog-filters-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    overflow: hidden;
    /* Hide overflow to manage scroll shadows */
}

/* Add fade effect on sides */
/* Fade effect removed to avoid color mismatch */

.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 5px;
    /* Space for scrollbar if needed */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-right: 50px;
    /* Space for end fade */
}

.category-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Update buttons for scroll layout */
.filter-btn {
    flex: 0 0 auto;
    /* Don't shrink */
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: white;
    border: 1px solid #e1e4e8;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* =========================================
   Redesigned Services Section (Mint Center Match)
   ================================********* */
.bg-mint-light {
    background-color: #f0faf9;
    /* Mint from image */
    padding: 4rem 0;
}

.service-grid-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-grid-center {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .service-grid-center {
        grid-template-columns: 1fr;
    }
}

.service-card-center {
    background: white;
    border-radius: 24px;
    /* Soft round */
    padding: 2rem 1.5rem;
    border-radius: 24px;
    /* Soft round */
    padding: 2rem 1.5rem;
    width: 200px;
    /* Fixed width for desktop, overridden on mobile */
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.1);
}

@media (max-width: 768px) {
    .service-card-center {
        width: 100%;
        /* Fill grid cell */
        height: auto;
        min-height: 180px;
    }
}

.service-icon-circle {
    width: 56px;
    height: 56px;
    background-color: #fff7ed;
    /* Light Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f59e0b;
    /* Orange text */
    margin-bottom: 1rem;
}

.service-card-title {
    color: #0f766e;
    /* Teal text */
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
}

.section-title-teal {
    color: #0f766e;
    font-weight: 800;
    margin-bottom: 0.5rem;
}



/* =========================================
   Redesigned Quote Form (Reference Match)
   ================================********* */
.quote-form-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-left: auto;
    /* Keep it on the right side if needed, or inline */
}

.quote-title {
    color: #115e59;
    /* Dark Teal */
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-input {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #475569;
    width: 100%;
    margin-bottom: 0;
    /* Handled by container mb-3 */
}

.quote-input:focus {
    border-color: #0d9488;
    /* Teal focus */
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    outline: none;
}

/* Custom Input Group for Mobile+OTP */
.quote-input-group {
    display: flex;
    gap: 10px;
}

.quote-input-group .quote-input {
    flex: 1;
    /* Input takes available space */
}

.btn-get-otp-styled {
    background-color: #e2e8f0;
    /* Light Gray/Blueish as per image */
    color: #0f172a;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0 1.5rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-get-otp-styled:hover {
    background-color: #cbd5e1;
}

.btn-quote-submit {
    background-color: #fca5a5;
    /* Fallback */
    background: #fbbf24;
    /* Yellow/Orange from image */
    color: #1e293b;
    /* Dark text */
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(251, 191, 36, 0.3);
}

.btn-quote-submit:hover:not(:disabled) {
    background: #f59e0b;
    transform: translateY(-2px);
}

.btn-quote-submit:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

/* Increase gap between fields */
.quote-form-card .mb-3 {
    margin-bottom: 1.5rem !important;
}

/* =========================================
   Redesigned Quote Form (Trendy / Modern) OVERRIDE
   ================================********* */
.quote-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    /* Deep soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

/* Decorative top gradient line */
.quote-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0f766e, #f59e0b);
}

.quote-title {
    color: #0f172a;
    /* Slate 900 */
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

/* Trendy Inputs: Filled Style */
.quote-input {
    border: 2px solid transparent;
    background-color: #f1f5f9;
    /* Slate 100 */
    border-radius: 12px;
    padding: 1rem 1.2rem;
    /* Larger touch area */
    font-size: 1rem;
    color: #334155;
    width: 100%;
    margin-bottom: 0;
    transition: all 0.2s ease;
    font-weight: 500;
}

.quote-input:focus {
    background-color: #ffffff;
    border-color: #0f766e;
    /* Teal Focus */
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
    outline: none;
}

/* Trendy Buttons */
/* Trendy Buttons */
.btn-get-otp-styled {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0 1.2rem;
    white-space: nowrap;
    transition: all 0.2s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.2);
}

.btn-get-otp-styled:hover {
    background-color: #0d9488;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(15, 118, 110, 0.3);
}

.btn-quote-submit {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    /* Orange Gradient */
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    padding: 1.1rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-quote-submit:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

/* =========================================
   Trendy FAQ Styling (Fix "Not Working")
   ================================********* */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    overflow: hidden;
    background: transparent;
}

.accordion-button {
    background-color: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    font-weight: 600;
    color: #0f766e !important;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #f0faf9 !important;
    /* Mint Light */
    color: #0f766e !important;
    box-shadow: none;
    border-bottom: 1px solid #f0faf9;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #0f766e;
}

.accordion-collapse {
    border: 1px solid #e2e8f0;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: white;
    margin-top: -10px;
    /* Connect to header */
    padding-top: 10px;
}

.accordion-body {
    color: #475569;
    line-height: 1.6;
}

/* =========================================
   Redesigned FAQ Section (2-Column Pro Layout)
   ================================********* */
.faq-pro-section {
    padding: 5rem 0;
    transition: background 0.3s;
}

.faq-pro-title {
    color: #1e293b;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.faq-search-container {
    position: relative;
    max-width: 400px;
    margin-bottom: 3rem;
    /* Added to align with screenshot */
    background: #f1f5f9;
    padding: 5px;
    border-radius: 50px;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    border: none;
    background: transparent;
    /* Changed to transparent for container styling */
    border-radius: 50px;
    font-size: 1rem;
    color: #475569;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    outline: none;
}

.faq-search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    /* Icon shouldn't block click */
}

/* Pro Accordion List (Clean Text Override) */
.accordion-pro .accordion-item {
    border: none !important;
    background: transparent !important;
    border-bottom: 1px solid #e2e8f0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    /* Remove shadow from prev style */
}

/* Remove the 'Bubble' look from previous Trendy style */
.accordion-pro .accordion-button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1.5rem 0 !important;
    color: #334155 !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0 !important;
    cursor: pointer !important;
    /* Force click cursor */
    z-index: 10;
    /* Ensure strictly above other elements */
    width: 100%;
    /* Full width click area */
    text-align: left;
}

.accordion-pro .accordion-button:not(.collapsed) {
    color: #0f766e !important;
    font-weight: 700;
    background: transparent !important;
    /* Force transparent active state */
    border-bottom: none !important;
    /* Remove line from prev style */
}

.accordion-pro .accordion-collapse {
    background: transparent !important;
    border: none !important;
    margin-top: 0 !important;
}

.accordion-pro .accordion-body {
    padding: 0 0 1.5rem 0 !important;
    color: #64748b;
    line-height: 1.6;
}

.accordion-pro .accordion-button::after {
    background-size: 1rem;
    opacity: 0.5;
    /* Ensure icon is visible and doesn't block clicks (though it's in the button) */
    pointer-events: none;
}

.faq-illustration-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    /* Optional: Add decorative circle behind */
}

.faq-illustration-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hide Google reCAPTCHA Badge */
.grecaptcha-badge {
    visibility: hidden;
}

/* Custom Section Padding for Contact Page */
.contact-page-section {
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
}

/* Trendy Contact Page Design */
.contact-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-top: -80px;
    /* Adjusted overlap */
    margin-bottom: 60px;
    /* Added bottom spacing */
    margin-bottom: 60px;
    /* Added bottom spacing */
    position: relative;
    z-index: 10;
}

.contact-info-side {
    flex: 1;
    min-width: 250px;
    background-color: #0f766e;
    /* Fallback */
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d9488 100%);
    /* Teal Gradient */
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.contact-info-side::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.contact-info-side::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-form-side {
    flex: 1.5;
    min-width: 250px;
    padding: 3rem;
    background: white;
}

.form-control-trendy {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s;
}

.form-control-trendy:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    outline: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        margin-top: 0;
    }
}

/* Custom Trendy Button for OTP Verify */
.btn-get-otp,
.btn-verify-otp {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    /* Matches input padding */
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    line-height: 1.5;
    /* Match input line-height */
}

.btn-get-otp:hover,
.btn-verify-otp:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Typography Improvements for Left Side */
.info-item {
    display: flex;
    /* Ensure flex behavior */
    align-items: center;
    /* Default center vertical */
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    text-align: left;
    /* Force left text alignment */
}

/* Allow text container to take available space */
.info-item>div:last-child {
    flex: 1;
}

.contact-info-side p.small {
    font-size: 0.95rem !important;
    opacity: 0.9 !important;
}