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

body,
html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background-color: #f9f9f7;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    /* Thinner padding */
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Scrolled Navbar State */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    /* White glass effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Dark shadow behind it */
    padding: 0.5rem 5%;
    /* Thinner padding when scrolled */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled .logo {
    height: 48px;
    /* Slightly smaller logo when scrolled */
}

.nav-left .logo {
    height: 58px;
    /* Reduced logo size */
    width: auto;
    transition: all 0.3s ease;
    /* Smooth transition */
}

.nav-center .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    /* Reduced gap */
}

.nav-links li a {
    text-decoration: none;
    color: #2b4d2d;
    font-weight: 600;
    font-size: 0.95rem;
    /* Reduced font size */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a:hover {
    color: #1a4324;
}

.nav-links li a.active {
    color: #1a4324;
    position: relative;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    /* Thinner underline */
    background-color: #1a4324;
    border-radius: 2px;
}

.nav-links li a i {
    font-size: 0.7rem;
}

.nav-right .call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #1a4324;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    /* Reduced padding */
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    /* Reduced font size */
}

.nav-right .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: flex-start;
    /* Align to left */
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
    background-color: #f9f9f7;
    padding: 120px 6% 10px;
    /* Reduced bottom padding */
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 100;
    position: relative;
    padding-bottom: 50px;
}

.tagline,
.hero-title,
.divider,
.hero-description,
.hero-btns {
    max-width: 600px;
    /* Keep text content centered/aligned to left */
}

.tagline {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 0.8rem;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3.5rem;
    width: 100%;
    max-width: 900px;
    justify-content: space-between;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 1.5rem;
    border-right: 1px solid #f0f0f0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: #f0f7f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-size: 1.2rem;
}

.trust-icon.icon-red {
    background: #fff5f5;
    color: #e63946;
}

.trust-icon.icon-green {
    background: #f0f7f2;
    color: #1a4324;
}

.trust-icon.icon-orange {
    background: #fffaf0;
    color: #f59e0b;
}

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

.trust-text strong {
    font-size: 0.95rem;
    color: #333;
}

.trust-text span {
    font-size: 0.8rem;
    color: #777;
}

/* Expertise Banner */
/* Updated Expertise Banner Design */
.expertise-banner {
    display: flex;
    background: #f4f8f4;
    /* Very light sage */
    padding: 1.6rem 2.5rem;
    /* Increased height by ~30% */
    border-radius: 20px;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 1300px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.exp-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-intro {
    flex: 1.5;
}

.ca-circle {
    width: 75px;
    height: 75px;
    border: 1px dashed #cedbd0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.exp-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: #1a4324;
    margin-bottom: 2px;
}

.exp-text p {
    font-size: 0.85rem;
    color: #666;
    max-width: 320px;
    line-height: 1.3;
}

.exp-divider {
    width: 1px;
    height: 50px;
    background-color: #cedbd0;
    margin: 0 1rem;
}

.check-box {
    width: 45px;
    height: 45px;
    border: 2px solid #1a4324;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.check-text span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}

.text-red {
    color: #e63946;
}

/* Floating Supervision Badge - Ultra Compact */
.supervision-badge {
    position: absolute;
    top: 26%;
    right: 5%;
    background: #003010;
    padding: 16px 10px;
    /* Less horizontal padding */
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 200;
    animation: float 3s ease-in-out infinite;
    max-width: 210px;
    /* Further reduced width */
}

@keyframes float {

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

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

.badge-left {
    width: 32px;
    /* Even smaller */
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.badge-ca-logo {
    width: 22px;
    /* Even smaller */
    height: auto;
}

.badge-center {
    display: flex;
    flex-direction: column;
}

.badge-center span {
    font-size: 0.6rem;
    /* Even smaller */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.badge-center strong {
    font-size: 0.72rem;
    /* Even smaller */
    color: #fff;
    font-weight: 600;
    margin-top: 0;
}

.badge-right {
    margin-left: 0px;
}

.verified-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1rem;
    /* Even smaller */
}

/* 
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.2;
} */

.badge-center strong {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
    margin-top: 2px;
}

.badge-right {
    margin-left: 5px;
}

.verified-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    /* Brighter green for verified */
    font-size: 1.5rem;
}

.check-inner {
    position: absolute;
    font-size: 0.6rem;
    color: #003010;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.2rem;
    /* Increased slightly more */
    line-height: 1;
    color: #1a4324;
    margin-bottom: 1.0rem;
    font-weight: 700;
}

.divider {
    width: 40px;
    height: 3px;
    background-color: #1a4324;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1rem;
    /* Reduced to 1rem */
    color: #444;
    max-width: 450px;
    margin-bottom: 2.2rem;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.7rem 1.6rem;
    /* Reduced padding further */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    /* Reduced font size */
}

.btn-filled {
    background-color: #003010;
    /* Very dark green */
    color: white;
}

.btn-filled:hover {
    background-color: #004d1a;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1.5px solid #1a4324;
    color: #1a4324;
}

.btn-outline:hover {
    background-color: #1a4324;
    color: white;
    transform: translateY(-3px);
}

.right-image-container {
    width: 55%;
    max-width: 850px;
    /* Prevent container from over-expanding on huge screens */
    height: 100vh;
    position: absolute;
    right: 0;
    /* Moved back from -5% to shift left */
    top: 0;
    z-index: 1;
}

.right-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right 60%;
    /* Center vertically more */
    transform: translateY(0);
    mask-image: linear-gradient(to right, transparent, black 25%), linear-gradient(to top, transparent, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 25%), linear-gradient(to top, transparent, black 15%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

/* Full width for trust bar */
.trust-bar {
    display: flex;
    background: #fff;
    padding: 1.2rem 1.5rem;
    /* Compact height */
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
    width: 100%;
    max-width: 1100px;
    /* Even wider */
    justify-content: space-between;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 2rem;
    border-right: 1px solid #f0f0f0;
    flex: 1;
    justify-content: center;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: #f0f7f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-size: 1.25rem;
}

/* Full width for expertise banner */
.expertise-banner {
    display: flex;
    background: #f1f6f2;
    padding: 2.5rem 2.5rem;
    /* Increased further */
    border-radius: 20px;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    /* Even wider */
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #cedbd0;
}

.ca-circle {
    width: 65px;
    height: 65px;
    border: 1px dashed #1a4324;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a4324;
    font-family: 'Cormorant Garamond', serif;
}

.ca-circle {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
}

.expertise-title h3 {
    font-size: 1.3rem;
}

.expertise-title p {
    font-size: 0.8rem;
    max-width: 300px;
}

.expertise-right {
    gap: 8px;
    padding-left: 1.5rem;
}

/* Floating Services Panel */
.services-float-panel {
    position: absolute;
    top: 28%;
    right: 65%;
    /* Moved left */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 200;
}

.service-float-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 7px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    min-width: 150px;
}

.service-float-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.service-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #444;
    flex-shrink: 0;
}

.service-float-icon.icon-red {
    background: #fff0f0;
    color: #e63946;
}

.service-float-icon.icon-green-light {
    background: #f0fff4;
    color: #1a4324;
}

/* --- Mobile Helpers (Hidden on Desktop) --- */
.mobile-only {
    display: none !important;
}

.mobile-only-desc {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #1a4324;
    cursor: pointer;
}

/* --- Universal Scaling --- */
@media screen and (min-width: 1440px) {
    body {
        zoom: calc(100vw / 1440);
    }
}

/* --- Mobile View (< 991px) --- */
@media screen and (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    span.mobile-only,
    br.mobile-only {
        display: inline !important;
    }

    .mobile-icon-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        background: #f1f6f2 !important;
        border: none !important;
        color: #1a4324 !important;
    }

    /* Navbar */
    .navbar {
        padding: 15px 5%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-center {
        display: none;
    }

    .hide-mobile {
        display: none !important;
    }

    .nav-right {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .nav-left .logo {
        height: 45px;
    }

    /* Layout Ordering */
    .container {
        flex-direction: column;
        padding: 100px 5% 40px;
    }

    .hero-content {
        display: contents;
    }

    .hero-text-section {
        order: 1;
        margin-bottom: 20px;
        width: 100%;
        position: relative;
        z-index: 5;
    }

    .right-image-container {
        order: 2;
        position: relative;
        width: 100%;
        height: auto;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .services-float-panel {
        order: 3;
    }

    .trust-bar {
        order: 4;
    }

    .expertise-banner {
        order: 5;
    }

    /* Hero Text */
    .tagline {
        font-size: 0.7rem;
        display: inline-block;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 2rem;
        /* Reduced from 2.2rem */
        line-height: 1.1;
        margin: 5px 0 10px;
        max-width: 85%;
    }

    .hero-description {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.4;
        max-width: 60%;
    }

    .hero-btns {
        flex-direction: column;
        width: 50%;
        max-width: 200px;
        gap: 7px;
        position: relative;
        z-index: 10;
        margin-top: -8px;
    }

    .btn {
        width: 100%;
        justify-content: space-between;
        padding: 0.45rem 0.9rem;
        font-size: 0.72rem;
        gap: 6px;
    }

    .btn-outline {
        background: #fff;
    }

    /* Solid background to prevent image overlap issues */

    /* Image & Supervision Badge */
    .right-image-container img {
        position: absolute;
        right: -30%;
        top: -360px;
        width: 95%;
        height: auto;
        mask-image: none;
        -webkit-mask-image: none;
        z-index: 1;
        transform: scale(0.95);
    }

    .supervision-badge {
        position: absolute;
        top: -350px;
        right: 0;
        max-width: 140px;
        padding: 8px 6px;
        border-radius: 6px;
        background: #11361c;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 20;
    }

    .badge-center span {
        font-size: 0.35rem;
        line-height: 1.1;
    }

    .badge-center strong {
        font-size: 0.45rem;
        line-height: 1.1;
        margin-top: 2px;
    }

    .badge-ca-logo {
        width: 16px;
    }

    .verified-icon i {
        font-size: 0.65rem;
    }

    .verified-icon .check-inner {
        font-size: 0.35rem;
    }

    /* Services Grid (White Box) */
    .services-float-panel {
        position: relative;
        right: auto;
        top: auto;
        flex-direction: row;
        background: #fff;
        padding: 15px 5px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        width: 100%;
        margin-top: -15px;
        z-index: 10;
        gap: 0;
    }

    .service-float-item {
        flex: 1;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0 2px;
        border-radius: 0;
        border-right: 1px dashed #e0e0e0;
        min-width: 0;
        text-align: center;
        gap: 5px;
    }

    .service-float-item:last-child {
        border-right: none;
    }

    .service-float-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 auto;
        border-radius: 50%;
    }

    .service-float-item span {
        font-size: 0.65rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .mobile-only-desc {
        display: block;
        font-size: 0.55rem;
        color: #666;
        line-height: 1.3;
        font-weight: 500;
        margin-top: 5px;
    }

    /* Trust Bar Grid */
    .trust-bar {
        flex-wrap: wrap;
        padding: 1.2rem 0.5rem;
        border-radius: 15px;
        margin-top: 15px;
        gap: 15px 0;
    }

    .trust-item {
        flex: 1 1 50%;
        border-right: none !important;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .trust-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .trust-text strong {
        font-size: 0.8rem;
    }

    .trust-text span {
        font-size: 0.65rem;
    }

    /* Expertise Banner */
    .expertise-banner {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1.2rem 0.5rem;
        border-radius: 15px;
        gap: 15px 0;
        margin-top: 15px;
        justify-content: space-between;
        align-items: center;
        background: #f4f7f4;
    }

    .exp-intro {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 5px;
        padding: 0 10px;
    }

    .exp-divider {
        display: block;
        width: 1px;
        height: 25px;
        background: #ccc;
        margin: 0;
    }

    .expertise-banner>.exp-divider:nth-child(2) {
        display: none !important;
    }

    .exp-text h3 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .exp-text p {
        font-size: 0.65rem;
        color: #555;
    }

    .ca-circle {
        flex-shrink: 0;
    }

    .ca-circle img {
        width: 35px !important;
    }

    .exp-section:not(.exp-intro) {
        width: 32%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        gap: 4px;
        padding: 0;
    }

    .check-box {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
        margin: 0;
        flex-shrink: 0;
    }

    .check-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        text-align: left;
    }

    .check-text span:first-child {
        font-size: 0.55rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .check-text .sub-text {
        font-size: 0.45rem;
        color: #555;
        line-height: 1.2;
    }
}

/* --- Services Section --- */
.services-section {
    padding: 15px 6%;
    background-color: #f9f9f7;
    width: 100%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-top {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.services-sidebar {
    flex: 0 0 300px;
}

.services-sidebar .sub-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.services-sidebar .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.1;
    color: #1a4324;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.small-divider {
    width: 30px;
    height: 3px;
    background-color: #1a4324;
    margin-bottom: 0.8rem;
}

.section-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.main-focus-box {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    padding: 35px 20px 15px;
    border: 1px solid #f0f0f0;
}

.focus-header {
    position: absolute;
    top: 0;
    left: 0;
    background: #003010;
    color: #fff;
    padding: 6px 15px;
    border-radius: 12px 0 12px 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.focus-card {
    text-align: center;
    padding: 5px 2px;
    transition: all 0.3s ease;
    border-right: 1px solid #f0f0f0;
}

.focus-card:last-child {
    border-right: none;
}

.focus-card:hover {
    transform: translateY(-2px);
}

.card-num {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a4324;
    margin-bottom: 8px;
    opacity: 0.6;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: #1a4324;
    border: 1px dashed #cedbd0;
    transition: all 0.3s ease;
}

.focus-card:hover .card-icon {
    background: #1a4324;
    color: #fff;
    border-style: solid;
}

.focus-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.2;
}

.focus-card p {
    font-size: 0.72rem;
    color: #777;
    margin-bottom: 8px;
    min-height: 0.8rem;
}

.card-line {
    width: 20px;
    height: 2px;
    background: #ddd;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.focus-card:hover .card-line {
    width: 35px;
    background: #1a4324;
}

/* Other Services Box */
.other-services-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
    margin-bottom: 15px;
    display: flex;
    gap: 30px;
}

.other-header {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.other-tab {
    background: #003010;
    color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.other-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.other-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 10px;
}

.other-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.other-item:hover {
    transform: translateY(-2px);
}

.other-icon {
    width: 38px;
    height: 38px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1a4324;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.other-icon.icon-red {
    color: #e63946;
}

.other-item:hover .other-icon {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.other-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    line-height: 1.1;
    margin-bottom: 6px;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-line {
    width: 18px;
    height: 2px;
    background: #eee;
    transition: all 0.3s ease;
}

.other-item:hover .item-line {
    width: 30px;
    background: #1a4324;
}

/* Bottom Trust Bar New */
.bottom-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.trust-item-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    border-right: 1px solid #f0f0f0;
}

.trust-item-new:last-child {
    border-right: none;
}

.trust-icon-new {
    width: 38px;
    height: 38px;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1a4324;
    flex-shrink: 0;
}

.trust-icon-new.icon-red {
    background: #fff5f5;
    color: #e63946;
}

.trust-icon-new.icon-green {
    background: #f0f7f2;
    color: #1a4324;
}

.trust-icon-new.icon-orange {
    background: #fffaf0;
    color: #f59e0b;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    font-size: 0.85rem;
    color: #222;
    font-weight: 700;
}

.trust-content span {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.2;
}

/* Responsive Styles for Services */
@media screen and (max-width: 1200px) {
    .other-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .services-top {
        flex-direction: column;
    }

    .services-sidebar {
        flex: none;
        text-align: center;
    }

    .small-divider {
        margin: 0 auto 1.5rem;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-item-new {
        border-right: none;
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 20px 4% !important;
    }

    .services-sidebar {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .services-sidebar .sub-title {
        text-align: center !important;
    }

    .services-sidebar .section-title {
        font-size: 1.6rem !important;
        text-align: center !important;
    }

    .small-divider {
        margin: 0 auto 10px !important;
    }

    .section-desc {
        text-align: center !important;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .focus-card {
        border-right: 1px solid #f0f0f0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        padding: 15px 5px !important;
    }

    .focus-card:nth-child(2n) {
        border-right: none !important;
    }

    .focus-card:nth-child(3),
    .focus-card:nth-child(4) {
        border-bottom: none !important;
    }

    .card-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
    }

    .other-services-box {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 15px !important;
    }

    .other-header {
        flex: none !important;
        align-items: center !important;
        text-align: center !important;
    }

    .other-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Fixed: 2 columns instead of 5 */
        gap: 12px !important;
    }

    .other-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .other-item span {
        font-size: 0.75rem !important; /* Better readability */
        line-height: 1.2 !important;
    }

    .bottom-trust-bar {
        grid-template-columns: repeat(2, 1fr) !important; /* Fixed: 2x2 grid instead of 4 wide */
        gap: 10px !important;
        padding: 15px !important;
        background: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
        border: 1px solid #f0f0f0 !important;
        border-radius: 8px !important;
    }

    .trust-item-new {
        background: transparent !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        padding: 5px 2px !important;
        border: none !important;
        border-right: 1px solid #f0f0f0 !important;
        box-shadow: none !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 4px !important;
        justify-content: center !important;
    }

    .trust-item-new:last-child {
        border-right: none !important;
    }

    .trust-content strong {
        font-size: 0.65rem !important;
        line-height: 1 !important;
    }

    .trust-content span {
        font-size: 0.5rem !important;
        line-height: 1 !important;
        display: none !important;
        /* Hide description on mobile to fit in one row */
    }

    .trust-icon-new {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
    }

    .main-focus-box {
        padding: 30px 10px 5px !important;
    }
}

/* --- Premium Services Hub Section --- */
.premium-hub-section {
    padding: 30px 6%;
    background-color: #f4f8f4;
    position: relative;
    overflow: hidden;
}

.hub-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* Main Hub Area */
.hub-main {
    flex: 1;
}

.hub-header {
    text-align: center;
    margin-bottom: 25px;
}

.hub-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a4324;
    display: block;
    margin-bottom: 10px;
}

.hub-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #1a4324;
    line-height: 1;
    margin-bottom: 12px;
}

.hub-header p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Network Grid Layout - 6 Column for Exact Match */
.hub-network-area {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(70px, auto);
    gap: 15px 10px;
    position: relative;
    padding: 30px 0;
}

/* Radiating Lines Visual - Updated for Elbow Lines */
.hub-network-area::before {
    display: none;
    /* Remove old radial lines */
}

.central-hub {
    grid-column: 3 / span 2;
    grid-row: 2 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hub-circle {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
}

.hub-grid-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    width: 24px;
    margin: 0 auto 8px;
}

.hub-grid-icon span {
    width: 10px;
    height: 10px;
    background: #1a4324;
    border-radius: 2px;
}

.hub-inner strong {
    font-size: 0.9rem;
    color: #1a4324;
    line-height: 1.2;
    display: block;
}

.hub-dash {
    width: 20px;
    height: 2px;
    background: #1a4324;
    margin: 10px auto 0;
}

/* Spoke Cards */
.spoke-card {
    background: #fff;
    border-radius: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.spoke-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-color: #1a4324;
}

.card-icon-hub {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.card-icon-hub.icon-green {
    background: #f4f8f4;
    color: #1a4324;
}

.card-icon-hub.icon-red {
    background: #fff5f5;
    color: #e63946;
}

.card-icon-hub.icon-orange {
    background: #fffaf0;
    color: #f59e0b;
}

.card-info strong {
    font-size: 0.78rem;
    color: #222;
    font-weight: 700;
}

/* Structured Connecting Lines */
.hub-network-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-image:
        /* Vertical main stem */
        linear-gradient(to bottom, transparent 15%, #d1e2d1 15%, #d1e2d1 85%, transparent 85%),
        /* Horizontal main stem */
        linear-gradient(to right, transparent 15%, #d1e2d1 15%, #d1e2d1 85%, transparent 85%);
    background-size: 1px 100%, 100% 1px;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    border: none;
    /* Clear old border */
}

/* Dot nodes on intersections */
.hub-network-area::after {
    display: none;
    /* Remove old circular line */
}

.central-hub::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #d1e2d1;
    border-radius: 50%;
    transform: translateX(-50%);
}

.central-hub::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #d1e2d1;
    border-radius: 50%;
    transform: translateX(-50%);
}

.card-arrow {
    margin-left: auto;
    width: 24px;
    height: 24px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #999;
    transition: all 0.3s ease;
}

.spoke-card:hover .card-arrow {
    background: #1a4324;
    color: #fff;
}

/* Positioning Spoke Cards for 6-Column Grid */
.card-1 {
    grid-column: 2;
    grid-row: 1;
}

.card-2 {
    grid-column: 3;
    grid-row: 1;
}

.card-3 {
    grid-column: 4;
    grid-row: 1;
}

.card-4 {
    grid-column: 5;
    grid-row: 1;
}

.card-5 {
    grid-column: 1;
    grid-row: 2;
}

.card-6 {
    grid-column: 2;
    grid-row: 2;
}

.card-7 {
    grid-column: 5;
    grid-row: 2;
}

.card-8 {
    grid-column: 6;
    grid-row: 2;
}

.card-9 {
    grid-column: 1;
    grid-row: 3;
}

.card-10 {
    grid-column: 2;
    grid-row: 3;
}

.card-11 {
    grid-column: 5;
    grid-row: 3;
}

.card-12 {
    grid-column: 6;
    grid-row: 3;
}

.card-13 {
    grid-column: 3;
    grid-row: 4;
}

.card-14 {
    grid-column: 4;
    grid-row: 4;
}

/* Connection Lines System (Simplified) */
.hub-network-area::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 70%;
    transform: translate(-50%, -50%);
    border: 1px dashed #d1e2d1;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Hub Bottom Bar */
.hub-bottom-bar {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.hub-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-right: 1px solid #f0f0f0;
}

.hub-trust-item:last-child {
    border-right: none;
}

.hub-trust-icon {
    width: 40px;
    height: 40px;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-size: 1.1rem;
}

.hub-trust-text strong {
    display: block;
    font-size: 1rem;
    color: #1a4324;
}

.hub-trust-text span {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Hub - Premium Circular Mobile View */
@media screen and (max-width: 1200px) {
    .hub-container {
        transform: scale(0.9);
        transform-origin: top center;
    }
}

@media screen and (max-width: 768px) {
    * {
        box-sizing: border-box !important;
    }

    html,
    body {
        overflow-x: hidden !important;
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative;
    }

    .premium-hub-section {
        padding: 40px 0 !important;
        overflow: hidden !important;
        background: #fdfdfd;
        width: 100vw !important;
        margin: 0 !important;
    }

    .hub-container {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
        transform: none !important; /* Block any scaling */
    }

    .hub-header {
        margin-bottom: 30px;
        padding: 0 5%;
    }

    .hub-header h1 {
        font-size: 2.2rem !important; /* Much bigger */
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hub-header p {
        font-size: 0.85rem;
        padding: 0 10%;
    }

    .hub-main {
        width: 100% !important;
        max-width: 100vw !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hub-network-area {
        position: relative;
        width: 100vw !important;
        height: 650px; /* Increased height for Vertical Hexagon layout */
        display: block;
        margin: 0;
        overflow: visible;
    }

    .central-hub {
        position: absolute;
        top: 325px; /* Vertical Center of 650px */
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        z-index: 10;
    }

    .hub-circle {
        width: 120px; /* Optimized size */
        height: 120px;
        background: #fff;
        border: 2px solid #1a4324;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .spoke-card {
        position: absolute;
        width: 100px; /* Reduced width to prevent overlap */
        padding: 10px 6px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        transform: translate(-50%, -50%);
    }

    .card-icon-hub {
        width: 38px;
        /* Reduced from 42px */
        height: 38px;
        font-size: 0.9rem;
        /* Reduced from 1rem */
        margin-bottom: 0;
    }

    .card-info strong {
        font-size: 0.68rem; /* Adjusted for smaller cards */
        line-height: 1.1;
        color: #1a1a1a;
        font-weight: 700;
        display: block;
        max-width: 85px;
    }

    /* Strictly hide arrows on mobile circle */
    .card-arrow {
        display: none !important;
    }

    /* Slide State Management */
    .hub-network-area[data-active-slide="0"] .spoke-card {
        display: none;
    }

    .hub-network-area[data-active-slide="0"] .card-1,
    .hub-network-area[data-active-slide="0"] .card-2,
    .hub-network-area[data-active-slide="0"] .card-3,
    .hub-network-area[data-active-slide="0"] .card-4,
    .hub-network-area[data-active-slide="0"] .card-5,
    .hub-network-area[data-active-slide="0"] .card-6,
    .hub-network-area[data-active-slide="0"] .card-9,
    .hub-network-area[data-active-slide="0"] .card-10 {
        display: flex !important;
    }

    .hub-network-area[data-active-slide="1"] .spoke-card {
        display: none;
    }

    .hub-network-area[data-active-slide="1"] .card-7,
    .hub-network-area[data-active-slide="1"] .card-8,
    .hub-network-area[data-active-slide="1"] .card-11,
    .hub-network-area[data-active-slide="1"] .card-12,
    .hub-network-area[data-active-slide="1"] .card-13,
    .hub-network-area[data-active-slide="1"] .card-14 {
        display: flex !important;
    }

    /* Tighter Circular Positioning for Slide 1 (8 cards) */
    /* Robust Circular Positioning */
    /* Vertical Hexagon Layout (Slide 1) */
    .hub-network-area[data-active-slide="0"] .card-1 { left: 50%; top: 60px; }
    .hub-network-area[data-active-slide="0"] .card-2 { left: 88%; top: 150px; }
    .hub-network-area[data-active-slide="0"] .card-10 { left: 12%; top: 150px; }
    .hub-network-area[data-active-slide="0"] .card-3 { left: 88%; top: 325px; }
    .hub-network-area[data-active-slide="0"] .card-9 { left: 12%; top: 325px; }
    .hub-network-area[data-active-slide="0"] .card-4 { left: 88%; top: 500px; }
    .hub-network-area[data-active-slide="0"] .card-6 { left: 12%; top: 500px; }
    .hub-network-area[data-active-slide="0"] .card-5 { left: 50%; top: 590px; }

    /* Vertical Layout (Slide 2) */
    .hub-network-area[data-active-slide="1"] .card-7 { left: 50%; top: 80px; }
    .hub-network-area[data-active-slide="1"] .card-8 { left: 85%; top: 200px; }
    .hub-network-area[data-active-slide="1"] .card-11 { left: 85%; top: 450px; }
    .hub-network-area[data-active-slide="1"] .card-12 { left: 50%; top: 570px; }
    .hub-network-area[data-active-slide="1"] .card-13 { left: 15%; top: 450px; }
    .hub-network-area[data-active-slide="1"] .card-14 { left: 15%; top: 200px; }

    /* Connection Ring */
    .hub-network-area::after {
        content: '';
        position: absolute;
        top: 325px;
        left: 50%;
        width: 320px;
        height: 480px; /* Oval ring for Vertical Hexagon */
        border: 2px dashed #1a4324;
        opacity: 0.1;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        display: block !important;
    }

    .mobile-hub-pagination {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100% !important;
        max-width: 100vw !important;
        gap: 15px;
        /* Reduced from 20px */
        margin: 20px 0;
        /* Reduced from 30px */
        z-index: 100;
        position: relative;
        pointer-events: all !important;
        left: 0;
    }

    .hub-dot {
        width: 13px;
        /* Reduced from 16px */
        height: 13px;
        border-radius: 50%;
        background: #ccc;
        border: 2px solid #fff;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .hub-dot.active {
        background: #1a4324;
        width: 32px;
        /* Reduced from 35px */
        border-radius: 10px;
    }

    .hub-bottom-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        width: 95% !important;
        margin: 20px auto !important;
        gap: 15px;
        padding: 20px !important;
    }

    .hub-trust-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }

    .hub-trust-text strong {
        font-size: 1rem !important;
        font-weight: 700 !important;
    }

    .hub-trust-text span {
        font-size: 0.85rem !important;
        color: #1a4324 !important;
        font-weight: 600;
    }
}

/* Fine-tune for very small mobile screens */
/* Removed aggressive scale */
@media screen and (max-width: 380px) {
    .hub-container {
        transform: scale(1); /* No more tiny scaling */
    }
}

/* --- How It Works Section (Refined Split Layout) --- */
.how-it-works {
    padding: 60px 6% 50px;
    background: linear-gradient(180deg, #fdfdfd 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.works-top-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.works-header-left {
    flex: 0 0 400px;
    text-align: left;
}

.works-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a4324;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tag-line {
    width: 30px;
    height: 1px;
    background: #1a4324;
    opacity: 0.3;
}

.section-title-large {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    color: #1a4324;
    line-height: 1.05;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-underline {
    width: 40px;
    height: 3px;
    background: #1a4324;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 400px;
    line-height: 1.5;
}

/* 3D Path Area Right */
.works-path-area-right {
    flex: 1;
    position: relative;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.path-visual-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.road-path-img {
    width: 90%;
    /* Give room for mask to fade */
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.04));
    /* Extremely aggressive mask to ensure 0% cut visibility */
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%, black 60%, transparent);
    mask-image: linear-gradient(to right, transparent, black 40%, black 60%, transparent);
}

/* Step Cards Grid */
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 60px;
}

.step-card {
    flex: 1;
    background: #fff;
    padding: 45px 25px 40px;
    border-radius: 24px;
    border: 1px solid #f2f5f2;
    position: relative;
    transition: all 0.5s ease;
    text-align: center;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: #e0e6e0;
}

.step-num-large {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    z-index: 1;
}

.step-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

/* Accent Lines in Cards */
.card-line-accent {
    width: 25px;
    height: 2px;
    background: #eee;
    margin: 10px auto;
    border-radius: 2px;
}

.step-01 .step-num-large {
    color: #1a4324;
    opacity: 0.1;
}

.step-01 .step-icon-wrap {
    background: #f0fdf4;
    color: #1a4324;
    border: 1.5px solid #dcfce7;
}

.step-01 .card-line-accent {
    background: #1a4324;
    opacity: 0.4;
}

.step-02 .step-num-large {
    color: #f59e0b;
    opacity: 0.1;
}

.step-02 .step-icon-wrap {
    background: #fffaf0;
    color: #f59e0b;
    border: 1.5px solid #ffedd5;
}

.step-02 .card-line-accent {
    background: #f59e0b;
    opacity: 0.4;
}

.step-03 .step-num-large {
    color: #3b82f6;
    opacity: 0.1;
}

.step-03 .step-icon-wrap {
    background: #eff6ff;
    color: #3b82f6;
    border: 1.5px solid #dbeafe;
}

.step-03 .card-line-accent {
    background: #3b82f6;
    opacity: 0.4;
}

.step-04 .step-num-large {
    color: #065f46;
    opacity: 0.1;
}

.step-04 .step-icon-wrap {
    background: #f0fdfa;
    color: #065f46;
    border: 1.5px solid #ccfbf1;
}

.step-04 .card-line-accent {
    background: #065f46;
    opacity: 0.4;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 5px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: 200px;
}

/* Connector Circles */
.step-connector-wrap {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.connector-circle {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.step-card:hover+.step-connector-wrap .connector-circle {
    color: #1a4324;
    border-color: #1a4324;
    transform: scale(1.1);
}

/* Trust Banner Refinement - PREMIUM 3D */
.works-trust-banner {
    display: flex;
    background: #fff;
    padding: 40px 50px;
    border-radius: 32px;
    border: 1px solid #f0f3f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    align-items: center;
    width: 100%;
}

.trust-left {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-right: 30px;
    border-right: 1.5px solid #f0f0f0;
}

.shield-pedestal {
    position: relative;
    width: 90px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.pedestal-platform {
    width: 70px;
    height: 15px;
    background: linear-gradient(180deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 50% / 100% 100% 0 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.shield-3d-wrap {
    position: absolute;
    top: 5px;
    width: 55px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.main-shield {
    font-size: 4rem;
    color: #1a4324;
    filter: drop-shadow(0 8px 20px rgba(26, 67, 36, 0.2));
}

.shield-check {
    position: absolute;
    font-size: 1.5rem;
    color: #fff;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.platform-leaf-left,
.platform-leaf-right {
    position: absolute;
    width: 25px;
    bottom: 18px;
    filter: grayscale(1) brightness(0.5) opacity(0.2);
}

.platform-leaf-left {
    left: -10px;
    transform: rotate(-45deg);
}

.platform-leaf-right {
    right: -10px;
    transform: rotate(45deg);
}

.trust-text-group h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1.1;
    color: #111;
    margin-bottom: 3px;
    font-weight: 700;
}

.text-green-dark {
    color: #1a4324;
}

.trust-text-group p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.banner-divider {
    width: 40px;
    height: 3px;
    background: #1a4324;
    border-radius: 2px;
}

.trust-features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 30px;
    gap: 15px 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.f-icon {
    width: 45px;
    height: 45px;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1a4324;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .f-icon {
    background: #1a4324;
    color: #fff;
    transform: translateY(-5px);
}

.f-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.f-info strong {
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 2px;
}

.f-info span {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.3;
}

/* Mobile Responsive Overrides */
@media screen and (max-width: 1024px) {
    .works-top-split {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .works-header-left {
        flex: none;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steps-grid {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 10px;
        justify-content: center;
    }

    .step-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
    }

    .step-connector-wrap {
        display: none;
    }

    .trust-left {
        flex: 0 0 280px;
    }
}

@media screen and (max-width: 768px) {
    .how-it-works {
        padding: 40px 5%;
        /* Reduced from 50px */
    }

    .section-title-large {
        font-size: 2rem;
        /* Reduced from 2.2rem */
    }

    .works-path-area-right {
        display: none;
        /* Hide path on mobile */
    }

    .steps-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-card {
        flex: none;
        width: 100%;
        max-width: 400px;
        padding: 30px 20px;
        /* Reduced from 35px 25px */
    }

    /* Vertical Dash Connectors for Mobile Flow */
    .step-connector-wrap {
        display: flex;
        flex: none;
        height: 35px;
        /* Reduced from 40px */
        width: 2px;
        background: repeating-linear-gradient(to bottom, #1a432420 0, #1a432420 4px, transparent 4px, transparent 8px);
        margin: 0 auto;
        position: relative;
    }

    .step-connector-wrap .connector-circle {
        display: none;
        /* Hide circle on mobile vertical flow */
    }

    .works-trust-banner {
        flex-direction: column;
        padding: 35px 20px;
        /* Reduced padding */
        border-radius: 22px;
        margin-top: 35px;
    }

    .trust-left {
        flex: none;
        border-right: none;
        border-bottom: 1.5px solid #f0f0f0;
        padding: 0 0 30px 0;
        /* Reduced */
        margin-bottom: 30px;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .trust-text-group {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-divider {
        margin: 0 auto;
    }

    .trust-features-grid {
        padding-left: 0;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 20px;
        /* Reduced */
    }

    .feature-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    .f-info {
        text-align: center;
    }

    .f-info strong {
        font-size: 0.95rem;
        /* Reduced */
    }

    .f-info span {
        font-size: 0.8rem;
        /* Reduced */
    }
}

/* --- Trust & Credentials Section --- */
.trust-credentials {
    padding: 80px 6% 40px;
    background-color: #fff;
    text-align: center;
}

.trust-credentials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-top-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a4324;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.trust-badge-icon {
    font-size: 1.5rem;
    color: #1a4324;
    margin-bottom: 15px;
}

.trust-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #1a4324;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 15px;
}

.trust-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Features Grid */
.trust-features-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f3f0;
    margin-bottom: 40px;
}

.trust-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid #f0f0f0;
}

.trust-feature-card:last-child {
    border-right: none;
}

.tf-icon-wrap {
    width: 65px;
    height: 65px;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #1a4324;
    margin-bottom: 20px;
    border: 1px dashed #cedbd0;
    transition: all 0.3s ease;
}

.trust-feature-card:hover .tf-icon-wrap {
    background: #1a4324;
    color: #fff;
    transform: translateY(-5px) rotate(5deg);
    border-style: solid;
}

.trust-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tf-accent-line {
    width: 20px;
    height: 2px;
    background: #1a4324;
    opacity: 0.3;
    margin: 5px auto 0;
    transition: all 0.3s ease;
}

.trust-feature-card:hover .tf-accent-line {
    width: 35px;
    opacity: 1;
}

/* Credentials Panel */
.credentials-panel {
    background: #fff;
    border-radius: 20px;
    padding: 35px 50px;
    border: 1px solid #f0f3f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cred-panel-left {
    flex: 0 0 280px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1.5px solid #f0f0f0;
    padding-right: 30px;
}

.cred-shield-icon {
    font-size: 3.5rem;
    color: #1a4324;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cred-shield-icon i.fa-check {
    position: absolute;
    font-size: 1.2rem;
    color: #fff;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cred-panel-left h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    color: #111;
    font-weight: 700;
}

.text-green-accent {
    color: #1a4324;
}

.cred-panel-right {
    flex: 1;
}

.authority-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.auth-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.auth-logo-item img {
    height: 50px;
    width: auto;
    filter: grayscale(1) opacity(0.8);
    transition: all 0.3s ease;
}

/* Fallback for missing images */
.auth-logo-placeholder {
    width: 50px;
    height: 50px;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a4324;
    border: 1px dashed #cedbd0;
}

.auth-logo-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.auth-logo-item span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #777;
    line-height: 1.2;
}

/* Compliance Footer Bar */
.compliance-footer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.compliance-footer-bar i {
    color: #1a4324;
    font-size: 1.1rem;
    border: 1px solid #1a4324;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.compliance-footer-bar p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
}

.compliance-footer-bar p strong {
    color: #1a4324;
}

/* Mobile Responsiveness for Trust Section */
@media screen and (max-width: 991px) {
    .trust-features-grid-new {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }

    .trust-feature-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 20px;
    }

    .trust-feature-card:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .credentials-panel {
        flex-direction: column;
        padding: 30px 20px;
    }

    .cred-panel-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-right: 0;
        padding-bottom: 20px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .authority-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        padding-top: 20px;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .trust-main-title {
        font-size: 2.2rem;
    }

    .trust-features-grid-new {
        grid-template-columns: 1fr;
    }

    .trust-feature-card {
        border-bottom: 1px solid #f0f0f0;
    }

    .trust-feature-card:last-child {
        border-bottom: none;
    }

    .authority-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- FAQ Section --- */
.premium-faq-section {
    padding: 70px 6% 60px;
    /* Restored professional breathing room */
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-main-layout {
    display: flex;
    gap: 100px;
    margin-bottom: 0;
    /* Completely removed space */
    align-items: flex-start;
}

.faq-left-column {
    flex: 0 0 540px;
    /* Widened to fit the ultra-large image */
}

.faq-header {
    margin-bottom: 30px;
}

.faq-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a4324;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    /* Restored to a premium scale */
    color: #1a4324;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 18px;
}

.faq-underline {
    width: 50px;
    height: 4px;
    background: #1a4324;
    margin: 20px 0;
}

.faq-subtitle {
    font-size: 0.95rem;
    /* Slightly smaller */
    color: #555;
    line-height: 1.4;
    max-width: 320px;
}

.faq-visual-wrap {
    margin-top: 8px;
}

.faq-3d-img {
    max-width: 500px;
    /* Ultra-large for extreme prominence */
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
    width: 506px;
    margin-top: 20px;
}

/* Accordion Styling */
.faq-right-column {
    flex: 1;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Tighter gap */
}

.accordion-item {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-header {
    padding: 14px 24px;
    /* Shrinked headers as requested */
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.acc-icon-wrap {
    width: 34px;
    /* Scaled down with the header */
    height: 34px;
    background: #f4f8f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.acc-toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

.acc-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: #bbb;
    transition: all 0.3s ease;
}

.acc-toggle i.fa-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* Active State */
.accordion-item.active {
    border-color: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.accordion-item.active .acc-icon-wrap {
    background: #1a4324;
    color: #fff;
}

.accordion-item.active .acc-toggle i.fa-plus {
    opacity: 0;
}

.accordion-item.active .acc-toggle i.fa-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
    color: #1a4324;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 30px 30px 90px;
}

.accordion-content p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
}

/* Help Banner Styling */
.faq-help-banner {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eef2ee;
    padding: 15px 35px;
    /* Ultra-compact banner padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.headset-icon-3d {
    position: relative;
    width: 65px;
    /* Shrinked support visual */
    height: 65px;
}

.headset-circle {
    width: 100%;
    height: 100%;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    /* Smaller icon */
    color: #1a4324;
}

.status-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border: 2.5px solid #fff;
    border-radius: 50%;
}

.help-bubble-icon {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 28px;
    height: 28px;
    background: #1a4324;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transform: rotate(-15deg);
}

.banner-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a4324;
    line-height: 1.1;
    margin-bottom: 4px;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.6rem;
    color: #1a4324;
    font-weight: 800;
}

.banner-middle {
    text-align: left;
    padding: 0 20px;
}

.banner-middle p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 500;
}

.banner-trust-tags {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-trust-tags span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a4324;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-line {
    width: 1px;
    height: 15px;
    background: #eee;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-get-touch {
    background: #1a4324;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-get-touch:hover {
    background: #14351c;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hand-text {
    font-size: 0.9rem;
    color: #444;
    font-style: italic;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    text-align: right;
}

.swash-line {
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 100px;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"><path d="M0 5 Q50 0, 100 5" stroke="%231a4324" fill="transparent" stroke-width="2" opacity="0.2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
    .faq-main-layout {
        flex-direction: column;
        gap: 50px;
    }

    .faq-left-column {
        flex: none;
        text-align: center;
    }

    .faq-underline {
        margin: 20px auto;
    }

    .faq-help-banner {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 30px;
    }

    .banner-left {
        flex-direction: column;
    }

    .banner-right {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 2.6rem;
        /* Reduced from 2.8rem */
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 20px 20px;
    }

    .faq-3d-img {
        max-width: 260px; /* Reduced for mobile fit */
        height: auto;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
        margin: 0 auto;
    }

}
/* --- Footer Section --- */
.main-footer {
    background-color: #fff;
    padding: 80px 6% 0;
    font-family: 'Outfit', sans-serif;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Col 1: Branding */
.footer-brand .footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.footer-brand .slogan {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a4324;
    margin-bottom: 15px;
    display: block;
}

.footer-brand .slogan span {
    color: #16a34a;
}

.footer-brand p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #1a4324;
    color: #fff;
    border-color: #1a4324;
    transform: translateY(-3px);
}

/* Common List Styles */
.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #16a34a;
}

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

.footer-list li {
    margin-bottom: 14px;
}

.footer-list a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.footer-list a i {
    font-size: 0.8rem;
    color: #16a34a;
    width: 16px;
    text-align: center;
}

.footer-list a:hover {
    color: #1a4324;
    transform: translateX(5px);
}

/* Resources specific: no icons */
.resources-list a i {
    display: none;
}

/* Contact Col */
.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info i {
    width: 34px;
    height: 34px;
    background: #f4f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Expert Assistance Banner - Full Width */
.expert-banner {
    background: #f8faf8;
    border-radius: 0; /* Full width edge-to-edge */
    padding: 35px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -6.5% 50px; /* Pulling it out to be edge-to-edge */
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    width: auto;
}

.expert-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.expert-icon-wrap {
    width: 65px;
    height: 65px;
    background: #1a4324;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}

.expert-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.expert-text p {
    font-size: 0.92rem;
    color: #666;
}

.expert-btn {
    background: #1a4324;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.expert-btn i {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.expert-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

/* Dark Green Trust Bar - Full Width */
.footer-trust-bar {
    background: #1a4324;
    padding: 35px 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0 -6.5%; /* Edge to edge */
}

.f-trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    padding: 0 15px;
}

.f-trust-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.f-trust-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.f-trust-content strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.f-trust-content span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Bottom Copyright Bar - Full Width */
.footer-bottom {
    background: #0d2a17; /* Darker green */
    padding: 25px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0 -6.5%; /* Edge to edge */
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #fff;
}

.made-in-india {
    display: flex;
    align-items: center;
    gap: 8px;
}

.made-in-india i {
    color: #16a34a;
}

.company-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand { grid-column: span 2; margin-bottom: 20px; }
    .footer-trust-bar { grid-template-columns: repeat(2, 1fr); }
    .f-trust-item:nth-child(2n) { border-right: none; }
}

@media screen and (max-width: 768px) {
    .footer-top-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .expert-banner { flex-direction: column; text-align: center; gap: 25px; padding: 30px 20px; }
    .expert-left { flex-direction: column; }
    .footer-trust-bar { grid-template-columns: 1fr; padding: 40px 10%; }
    .f-trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
    .f-trust-item:last-child { border-bottom: none; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
}

/* --- Navbar Functionality & Mobile Menu Styles --- */
@media screen and (max-width: 768px) {
    .nav-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-center.active {
        right: 0;
        display: flex !important;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }
}

.nav-links li a.active {
    color: #16a34a;
}

.nav-links li a.active::after {
    width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 6%;
    background: #fff;
    font-family: 'Outfit', sans-serif;
}

.test-header {
    text-align: center;
    margin-bottom: 60px;
}

.test-tag {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.test-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a4324;
    margin-bottom: 15px;
}

.test-header h2 span {
    color: #16a34a;
}

.test-header p {
    color: #555;
    font-size: 1.1rem;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.test-card {
    background: #f8faf8;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
}

.test-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(26, 67, 36, 0.08);
    border-color: #16a34a;
}

.test-rating {
    color: #ffb800;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.test-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    background: #1a4324;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.img-purple { background: #6b21a8; }
.img-orange { background: #ea580c; }

.author-info strong {
    display: block;
    font-size: 1rem;
    color: #111;
}

.author-info span {
    font-size: 0.85rem;
    color: #666;
}

.verified-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 6%;
    background: #f4f8f4;
}

.contact-card-wrap {
    background: #fff;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.contact-info-side {
    background: #1a4324;
    padding: 60px;
    color: #fff;
}

.contact-tag {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    font-weight: 800;
}

.contact-info-side h2 span {
    color: #16a34a;
}

.contact-info-side p {
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.c-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-item {
    display: flex;
    gap: 20px;
}

.c-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #16a34a;
}

.c-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.c-item p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.contact-form-side {
    padding: 60px;
}

.lead-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #16a34a;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    margin-top: 30px;
    background: #1a4324;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(22, 163, 74, 0.2);
}

@media screen and (max-width: 1024px) {
    .contact-card-wrap {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .test-header h2 { font-size: 2.2rem; }
    .contact-info-side { padding: 40px 30px; }
    .contact-form-side { padding: 40px 30px; }
    .lead-form .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebea5;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
    opacity: 0.7;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* --- TaxFlix AI Assistant --- */
.ai-assistant-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    font-family: 'Outfit', sans-serif;
}

.ai-toggle-btn {
    width: 60px;
    height: 60px;
    background: #1a4324;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(26, 67, 36, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ai-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: #16a34a;
}

.ai-toggle-btn .notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #ff4d4d;
    border: 2px solid #fff;
    border-radius: 50%;
}

.ai-chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: none; /* Hidden by default */
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom left;
    animation: ai-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-chat-window.active {
    display: flex;
}

@keyframes ai-slide-in {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.ai-chat-header {
    background: #1a4324;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-size: 1.2rem;
}

.bot-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.bot-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.ai-chat-body {
    height: 350px;
    padding: 20px;
    overflow-y: auto;
    background: #f9fbf9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-msg.bot {
    background: #fff;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.chat-msg.user {
    background: #1a4324;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #1a4324;
    font-weight: 600;
}

.quick-reply-btn:hover {
    background: #1a4324;
    color: #fff;
    border-color: #1a4324;
}

.ai-chat-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.ai-chat-footer input {
    flex: 1;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    outline: none;
    background: #f5f5f5;
}

.ai-chat-footer button {
    width: 40px;
    height: 40px;
    background: #1a4324;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.ai-chat-footer button:hover {
    background: #16a34a;
}

@media screen and (max-width: 480px) {
    .ai-assistant-wrapper { bottom: 20px; left: 20px; }
    .ai-chat-window { width: calc(100vw - 40px); bottom: 70px; }
}

/* --- Smart AI Typing Indicator --- */
.typing-indicator {
    display: none;
    align-self: flex-start;
    background: #fff;
    padding: 10px 15px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    margin-bottom: 10px;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 0 1px;
    background-color: #1a4324;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
    animation: typing-bounce 1s infinite;
}

.typing-indicator span:nth-child(1) { animation-delay: 0.1s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* --- All Services Page Specific Styles --- */
.services-page-hero {
    background: linear-gradient(135deg, #f1f6f2 0%, #e2ece5 100%);
    padding: 140px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #dce8df;
}

.services-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.services-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-page-hero-content .tagline {
    color: #1a4324;
    font-weight: 700;
}

.services-page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    color: #003010;
    line-height: 1.1;
    margin-bottom: 15px;
}

.services-page-hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Search and Filters Section */
.search-filter-section {
    padding: 40px 5%;
    background-color: #f9f9f7;
    position: relative;
    z-index: 10;
}

.search-filter-wrapper {
    max-width: 1200px;
    margin: -70px auto 0; /* overlap with hero slightly */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-box-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.search-box-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 1.2rem;
}

.search-box-container input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border-radius: 50px;
    border: 1.5px solid #e0eae2;
    background: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.search-box-container input:focus {
    border-color: #1a4324;
    box-shadow: 0 4px 20px rgba(26, 67, 36, 0.1);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.category-tab-btn {
    background: #fff;
    border: 1px solid #e0eae2;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.category-tab-btn:hover {
    background: #f1f6f2;
    color: #1a4324;
    border-color: #cedbd0;
    transform: translateY(-1px);
}

.category-tab-btn.active {
    background: #003010;
    color: #fff;
    border-color: #003010;
    box-shadow: 0 4px 12px rgba(0, 48, 16, 0.2);
}

/* Services Grid */
.services-grid-section {
    padding: 20px 5% 80px;
    background-color: #f9f9f7;
}

.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    transition: all 0.4s ease;
}

.service-detail-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eef3ef;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1a4324;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-detail-card[data-category*="registration"]::before { background: #1a4324; }
.service-detail-card[data-category*="taxation"]::before { background: #e63946; }
.service-detail-card[data-category*="auditing"]::before { background: #f59e0b; }
.service-detail-card[data-category*="growth"]::before { background: #3b82f6; }

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #dce8df;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #f0f7f2;
    color: #1a4324;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.service-detail-card[data-category*="taxation"] .service-card-icon-wrap {
    background: #fff5f5;
    color: #e63946;
}

.service-detail-card[data-category*="auditing"] .service-card-icon-wrap {
    background: #fffaf0;
    color: #f59e0b;
}

.service-detail-card[data-category*="growth"] .service-card-icon-wrap {
    background: #eff6ff;
    color: #3b82f6;
}

.service-detail-card:hover .service-card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.service-card-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: #cedbd0;
    font-family: 'Outfit', sans-serif;
}

.service-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.service-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f1f6f2;
    color: #1a4324;
}

.service-tag.tag-red {
    background: #fff5f5;
    color: #e63946;
}

.service-tag.tag-orange {
    background: #fffaf0;
    color: #f59e0b;
}

.service-tag.tag-blue {
    background: #eff6ff;
    color: #3b82f6;
}

.service-card-desc {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-divider {
    height: 1px;
    background: #eef3ef;
    margin-bottom: 20px;
}

.service-card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-pricing-preview {
    display: flex;
    flex-direction: column;
}

.service-pricing-preview span {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-pricing-preview strong {
    font-size: 1.15rem;
    color: #111;
    font-weight: 700;
}

.btn-view-details {
    background: #f1f6f2;
    color: #1a4324;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-view-details i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-view-details:hover {
    background: #003010;
    color: #fff;
}

.btn-view-details:hover i {
    transform: translateX(3px);
}

.no-results-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px dashed #cedbd0;
}

.no-results-msg i {
    font-size: 3rem;
    color: #cedbd0;
    margin-bottom: 15px;
}

.no-results-msg h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.no-results-msg p {
    color: #777;
    font-size: 0.95rem;
}

/* Premium Dynamic Modal */
.service-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 10, 3, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.service-detail-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-wrapper {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-detail-modal.active .modal-wrapper {
    transform: translateY(0);
}

.modal-header-section {
    padding: 25px 30px;
    border-bottom: 1px solid #f1f6f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #f8fbf9, #fff);
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f0f7f2;
    color: #1a4324;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.modal-title-group h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
}

.btn-close-modal {
    background: #f0f3f1;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: #e63946;
    color: #fff;
    transform: rotate(90deg);
}

.modal-content-layout {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
}

.modal-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-tab-nav {
    display: flex;
    border-bottom: 1.5px solid #f1f6f2;
    gap: 20px;
}

.modal-tab-btn {
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #777;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.modal-tab-btn:hover {
    color: #1a4324;
}

.modal-tab-btn.active {
    color: #1a4324;
}

.modal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a4324;
}

.modal-tab-content-wrapper {
    min-height: 220px;
}

.modal-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.modal-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-tab-pane h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.modal-tab-pane p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
}

.docs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.docs-list li {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.docs-list li i {
    color: #1a4324;
    margin-top: 4px;
    font-size: 0.85rem;
}

.timeline-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.info-grid-item {
    background: #f8fbf9;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eef5f0;
}

.info-grid-item span {
    display: block;
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-grid-item strong {
    font-size: 1.05rem;
    color: #111;
}

/* Sidebar Box */
.modal-action-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card-box {
    background: #f1f6f2;
    border-radius: 18px;
    padding: 20px;
    border: 1px dashed #cedbd0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-card-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #003010;
}

.sidebar-card-box p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.modal-pricing-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e2ece5;
    text-align: center;
}

.modal-pricing-box span {
    font-size: 0.72rem;
    color: #777;
    text-transform: uppercase;
}

.modal-pricing-box h4 {
    font-size: 1.4rem;
    color: #1a4324;
    font-weight: 800;
    margin-top: 3px;
}

.btn-sidebar-primary {
    background: #003010;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-sidebar-primary:hover {
    background: #004d1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 48, 16, 0.15);
}

.btn-sidebar-secondary {
    background: #fff;
    color: #2b4d2d;
    border: 1px solid #cedbd0;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-sidebar-secondary:hover {
    background: #f9f9f7;
    border-color: #1a4324;
    color: #1a4324;
}

/* Consultation Section */
.consultation-form-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #f9f9f7, #f1f6f2);
}

.consultation-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.03);
    border: 1px solid #eef5f0;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.consult-text-side h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #003010;
    line-height: 1.1;
    margin-bottom: 15px;
}

.consult-text-side p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

.consult-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consult-benefits-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.consult-benefits-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f7f2;
    color: #1a4324;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.consult-form-side form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-custom label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #cedbd0;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
    border-color: #1a4324;
    background: #fff;
    box-shadow: 0 4px 12px rgba(26, 67, 36, 0.05);
}

.btn-submit-consult {
    background: #003010;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-consult:hover {
    background: #004d1a;
    transform: translateY(-2px);
}

/* Response Media Queries for Services Page */
@media screen and (max-width: 991px) {
    .services-page-hero {
        padding: 110px 5% 50px;
    }
    .services-page-hero-content h1 {
        font-size: 2.8rem;
    }
    .search-filter-wrapper {
        margin-top: -30px;
        padding: 20px;
    }
    .services-list-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .modal-wrapper {
        max-height: 95vh;
    }
    .modal-content-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modal-action-sidebar {
        order: -1; /* show sidebar/pricing first on mobile */
    }
    .consultation-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .services-page-hero-content h1 {
        font-size: 2.2rem;
    }
    .search-box-container input {
        padding: 12px 15px 12px 45px;
        font-size: 0.9rem;
    }
    .search-box-container i {
        left: 15px;
    }
    .category-tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Card Banners and Dedicated Service Pages Layout --- */
.card-image-wrap {
    margin: -30px -30px 20px -30px;
    height: 160px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eef3ef;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .card-image-wrap img {
    transform: scale(1.06);
}

/* Dedicated Service Page Layout */
.dedicated-service-hero {
    background: linear-gradient(135deg, #f1f6f2 0%, #dce8df 100%);
    padding: 150px 6% 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #cedbd0;
}

.dedicated-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dedicated-hero-text {
    display: flex;
    flex-direction: column;
}

.breadcrumbs {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a4324;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #1a4324;
}

.dedicated-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #003010;
    line-height: 1.1;
    margin-bottom: 20px;
}

.dedicated-hero-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.dedicated-hero-tags {
    display: flex;
    gap: 10px;
}

.dedicated-hero-image-wrap {
    width: 100%;
    max-width: 450px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 4px solid #fff;
    margin: 0 auto;
}

.dedicated-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Split Content Grid */
.dedicated-service-content-section {
    padding: 60px 6% 80px;
    background-color: #f9f9f7;
}

.dedicated-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 40px;
}

.service-main-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card-block {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #eef3ef;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.01);
}

.info-card-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    color: #003010;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card-block h3 i {
    color: #1a4324;
}

.info-card-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Styled checklists */
.docs-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

@media screen and (max-width: 576px) {
    .docs-checklist-grid {
        grid-template-columns: 1fr;
    }
}

.checklist-item-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8fbf9;
    border-radius: 12px;
    border: 1px solid #eef5f0;
    transition: all 0.3s ease;
}

.checklist-item-box:hover {
    transform: translateY(-2px);
    border-color: #cedbd0;
    background: #f1f6f2;
}

.checklist-item-box i {
    color: #1a4324;
    font-size: 1.1rem;
    margin-top: 2px;
}

.checklist-item-box span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Step list roadmap styling */
.roadmap-flow {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding-left: 20px;
    margin-top: 20px;
}

.roadmap-flow::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #cedbd0;
}

.roadmap-step {
    position: relative;
    padding-left: 25px;
}

.step-badge {
    position: absolute;
    left: -31px;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1a4324;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #1a4324;
}

.roadmap-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.roadmap-step p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.5;
}

/* Service FAQ Accordion */
.service-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-faq-item {
    border: 1px solid #eef3ef;
    border-radius: 12px;
    overflow: hidden;
}

.service-faq-header {
    background: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #222;
    transition: background 0.3s;
}

.service-faq-header:hover {
    background: #f8fbf9;
}

.service-faq-item.active .service-faq-header {
    border-bottom: 1px solid #eef3ef;
    background: #f1f6f2;
}

.service-faq-toggle {
    font-size: 0.8rem;
    color: #1a4324;
    transition: transform 0.3s;
}

.service-faq-item.active .service-faq-toggle {
    transform: rotate(180deg);
}

.service-faq-content {
    background: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.service-faq-item.active .service-faq-content {
    padding: 20px;
    max-height: 300px;
}

/* Related Services Cards Row */
.related-services-section {
    padding: 45px 6% 80px;
    background-color: #f1f6f2;
    border-top: 1px solid #eef3ef;
}

.related-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-services-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #003010;
    margin-bottom: 25px;
}

/* Mobile Responsiveness for Dedicated Service Pages */
@media screen and (max-width: 991px) {
    .dedicated-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .dedicated-hero-title {
        font-size: 2.8rem;
    }
    .dedicated-hero-tags {
        justify-content: center;
    }
    .dedicated-content-container {
        grid-template-columns: 1fr;
    }
    .modal-action-sidebar {
        margin-top: 20px;
        position: static !important;
    }
}

/* --- SIDEBAR ENHANCEMENTS --- */
.modal-action-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-card-box {
    position: static !important;
}

/* Flash Offer Card */
.sidebar-offer-card {
    background: linear-gradient(135deg, #003010 0%, #1a4324 100%);
    color: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #235c32;
    box-shadow: 0 10px 25px rgba(26, 67, 36, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.sidebar-offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.promo-badge {
    align-self: flex-start;
    background: #e6b200;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: promo-pulse 1.5s infinite alternate;
}

@keyframes promo-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(230,178,0,0); }
    100% { transform: scale(1.05); box-shadow: 0 0 10px rgba(230,178,0,0.5); }
}

.promo-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 5px 0 2px;
}

.promo-desc {
    font-size: 0.78rem;
    opacity: 0.9;
    line-height: 1.4;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.promo-timer i {
    color: #e6b200;
}

.timer-nums {
    font-family: monospace;
    font-size: 0.95rem;
    color: #e6b200;
}

/* Trust Carousel */
.sidebar-trust-carousel {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #eef5f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    animation: carousel-fadeIn 0.5s ease forwards;
    text-align: center;
}

.carousel-slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.carousel-icon {
    font-size: 1.4rem;
    color: #1a4324;
}

.carousel-text {
    font-size: 0.82rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
}

@keyframes carousel-fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #1a4324;
    width: 14px;
    border-radius: 10px;
}

/* Live Activity Feed */
.sidebar-feed-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #eef5f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f6f2;
    padding-bottom: 8px;
}

.feed-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #003010;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feed-live-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2e7d32;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.feed-content {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.feed-item {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.feed-item.active {
    opacity: 1;
    transform: translateY(0);
}

.feed-item.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.feed-item-icon {
    width: 32px;
    height: 32px;
    background: #f1f6f2;
    color: #1a4324;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feed-item-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feed-item-text {
    font-size: 0.78rem;
    color: #333;
    line-height: 1.3;
}

.feed-item-time {
    font-size: 0.65rem;
    color: #888;
}

/* Floating Toast Notification */
.floating-toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.floating-toast {
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eef5f0;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 340px;
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2ece5 0%, #c2d6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4324;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.toast-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.toast-message {
    font-size: 0.82rem;
    color: #333;
    line-height: 1.4;
}

.toast-message strong {
    color: #003010;
}

.toast-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    color: #888;
}

.toast-footer i {
    color: #4caf50;
}

/* Assigned Advisor Card */
.sidebar-advisor-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #eef5f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.advisor-status {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 3px 8px;
    border-radius: 50px;
}

.advisor-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #003010;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.advisor-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.advisor-avatar {
    width: 44px;
    height: 44px;
    background: #f1f6f2;
    color: #1a4324;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid #cedbd0;
}

.advisor-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.advisor-info strong {
    font-size: 0.88rem;
    color: #111;
}

.advisor-info span {
    font-size: 0.72rem;
    color: #666;
}

.advisor-desc {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.4;
}

.btn-advisor-chat {
    background: #1a4324;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-advisor-chat:hover {
    background: #003010;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Quick Reference Resources Card */
.sidebar-resources-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #eef5f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resources-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #003010;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.resources-title i {
    color: #1a4324;
}

.resources-list-sidebar {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resources-list-sidebar li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: #444;
    font-weight: 500;
    transition: all 0.3s;
    padding: 6px 0;
}

.resources-list-sidebar li a i {
    color: #1a4324;
    font-size: 0.88rem;
}

.resources-list-sidebar li a:hover {
    color: #1a4324;
    padding-left: 5px;
}


