@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Reset and Core Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #B30D22;
    /* Tanzeel crimson red */
    --primary-hover: #D4142D;
    --dark-bg: #09090b;
    --light-bg: #F4F2EE;
    /* Warm cream background */
    --white: #ffffff;
    --text-white: #ffffff;
    --text-gray: #d4d4d8;
    --text-muted: #71717a;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: #18181b;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    /* padding: 0 2rem; */
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(179, 13, 34, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1.5px solid var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .header-actions .header-consultation-btn {
        display: none !important;
    }
}


/* Header & Navigation */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(9, 9, 11, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: var(--transition);
    border-radius: 50%;
}

.search-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.search-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    /* filter: invert(1); Since icon might be dark, make it white for dark header */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5rem;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section with Slider */
.hero-section {
    position: relative;
    min-height: 720px;
    height: 85vh;
    padding: 0 !important;
    overflow: hidden;
    background-color: #09090b;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 90px 50px 0px 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(179, 13, 34, 0.6);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.6;
    color: var(--text-gray);
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Client Logos Section (Infinite Scrolling Marquee) */
.clients-section {
    background-color: var(--light-bg);
    padding: 1rem 0;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.5rem 0;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--light-bg) 0%, rgba(244, 242, 238, 0) 100%);
}

.logo-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, var(--light-bg) 0%, rgba(244, 242, 238, 0) 100%);
}

.logo-track {
    display: flex;
    width: calc(240px * 10 + 1.5rem * 10);
    gap: 1.5rem;
    animation: scrollMarquee 25s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.client-card {
    flex: 0 0 240px;
    background-color: var(--white);
    border-radius: 16px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.client-logo {
    max-width: 80%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-240px * 5 - 1.5rem * 5));
    }
}

/* Common Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background-color: #F4F2EE;
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #1c1917;
    letter-spacing: 0.06em;
    border: 1px solid #dc262678;
    width: fit-content;
}

.badge-icon {
    width: 20px;
    height: 15px;
    object-fit: contain;
}

/* Explore Our Services Section */
.services-section {
    background-color: var(--white);
    padding: 4rem;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.services-header-text {
    max-width: 700px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1c1917;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
    padding-top: 10px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #57534e;
    font-weight: 400;
}

.carousel-nav {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.carousel-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid #d6d3d1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.carousel-nav-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(179, 13, 34, 0.03);
}

.carousel-nav-btn.next {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* .carousel-nav-btn.next img {
    filter: invert(1);
} */

.carousel-nav-btn.next:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: scale(1.05);
}

.services-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.services-carousel-track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.service-card {
    flex: 0 0 calc((100% - 1.75rem * 2) / 3);
    min-width: 320px;
    background-color: #F4F2EE;
    border-radius: 20px;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(179, 13, 34, 0.1);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Swiper Override Integration */
.services-carousel-wrapper.swiper {
    overflow: hidden !important;
    padding: 1rem 0 !important;
}

.services-carousel-track.swiper-wrapper {
    display: flex !important;
    gap: 0 !important;
}

.service-card.swiper-slide {
    flex: 0 0 auto !important;
    height: auto !important;
    min-width: 0 !important;
}

.service-card-header {
    margin-bottom: 2rem;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background-color: #0c0a09;
}

.service-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    /* filter: invert(1) brightness(2); */
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1c1917;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-card-title {
    color: #ffffff;
}

.service-card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #57534e;
    margin-bottom: 2.25rem;
    flex-grow: 1;
    transition: var(--transition);
}

.service-card:hover .service-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    color: #1c1917;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-learn-more:hover {
    background-color: #F4F2EE;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.arrow-up-right {
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: var(--transition);
    filter: invert(1) brightness(0);
}

.service-learn-more:hover .arrow-up-right {
    transform: translate(2px, -2px);
}

/* Pagination Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 3.5rem;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #d6d3d1;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background-color: #a8a29e;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* About Our Company Section */
.about-section {
    background-color: #F4F2EE;
    padding: 4rem 4rem 2.5rem 4rem;
}

.about-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-bottom: 4.5rem;
    align-items: start;
}

.about-badge-wrapper {
    padding-top: 0.25rem;
}

.about-heading-text {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    font-weight: 600;
    line-height: 1.45;
    color: #1c1917;
    letter-spacing: -0.015em;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.3fr;
    gap: 2rem;
    align-items: center;
}

.about-img-box {
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(63, 2, 10, 0.85) 0%, transparent 100%);
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-img-box:hover .about-image {
    transform: scale(1.03);
}

.about-stats-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 7.5vw, 6.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
    position: relative;
}

.stats-number sup {
    font-size: 0.55em;
    top: -0.22em;
    font-weight: 700;
}

.stats-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1c1917;
    line-height: 1.3;
    white-space: nowrap;
}

.about-card-box {
    display: flex;
}

.about-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 3.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.about-card-text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.6;
    color: #44403c;
    margin-bottom: 1.5rem;
}

.about-card-text.sub-text {
    color: #78716c;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.about-card .btn {
    align-self: flex-start;
    padding: 0.95rem 2.25rem;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation Actions */
.mobile-nav-action {
    display: none;
}

/* Responsive Breakpoints */

@media (max-width: 1200px) {
    .about-grid {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .service-card {
        flex: 0 0 calc((100% - 1.75rem) / 2);
        /* show 2 cards */
    }

    .about-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .about-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 2.5rem;
    }

    .about-card-box {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-container {
        position: absolute;
        top: 0;
        width: 280px;
        height: 113vh;
        background-color: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
        z-index: 105;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
    }

    .nav-container.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        align-items: center;
    }

    .mobile-nav-action {
        display: block;
        width: 100%;
        text-align: center;
    }

    .mobile-nav-action .btn {
        width: 100%;
        max-width: 220px;
        box-sizing: border-box;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-actions {
        margin-right: 1rem;
        order: 2;
    }

    .hero-section {
        min-height: 560px;
        height: 80vh;
        padding: 0 !important;
    }

    .services-section {
        background-color: var(--white);
        padding: 4rem;
    }

    .hero-slide {
        padding: 90px 24px 20px 24px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .carousel-nav {
        align-self: flex-end;
    }

    .service-card {
        flex: 0 0 100%;
        /* show 1 card */
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-card-box {
        grid-column: span 1;
    }

    .about-stats-box {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .stats-text {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .services-carousel-wrapper {
        overflow: none;
        width: 100%;
        position: relative;
        padding: 0rem 0;
    }
}

@media (max-width: 480px) {
    .header-actions {
        display: none;
        /* Hide Header Actions container on micro screens */
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        margin-bottom: 1.75rem;
    }

    .services-section {
        background-color: var(--white);
        padding: 3rem 1rem;
    }

    .offerings-section {
        background-color: #F4F2EE;
        padding: 4rem 1rem !important;
    }

    .stats-section {
        background-color: var(--white);
        padding: 2rem 1rem;
    }
}

/* What We Offer Section Styles */
.offerings-section {
    background-color: #F4F2EE;
    padding: 4rem;
}

.offerings-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.offerings-header .section-title {
    margin-top: 0.5rem;
}

.offerings-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.offering-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

/* Stacking cards styling for desktop when javascript is enabled */
@media (min-width: 1025px) {
    .js-enabled .offering-card {
        /* Let GSAP control scale, opacity and filters without transition delay */
        transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
        will-change: transform, opacity;
    }

    .js-enabled .offering-card:hover {
        /* Avoid CSS transform overriding GSAP scroll animations */
        transform: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    .js-enabled .offering-image-box {
        transition: var(--transition);
    }

    /* Shift hover animation to the image-box to keep interaction delight */
    .js-enabled .offering-card:hover .offering-image-box {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.offering-content {
    flex: 1.2;
}

.offering-num {
    color: var(--primary-color);
    font-weight: 700;
}

.offering-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: #1c1917;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
}

.offering-card-text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.6;
    color: #57534e;
    margin-bottom: 2.25rem;
    max-width: 500px;
}

.offering-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.offering-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 13, 34, 0.3);
}

.arrow-up-right-white {
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: var(--transition);
}

.offering-btn:hover .arrow-up-right-white {
    transform: translate(2px, -2px);
}

.offering-image-box {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    height: 320px;
    display: flex;
}

.offering-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.offering-card:hover .offering-image {
    transform: scale(1.02);
}

/* Responsive styles for offerings */
@media (max-width: 1024px) {
    .offering-card {
        flex-direction: column-reverse;
        gap: 2.5rem;
        padding: 1.5rem;
    }

    .offering-image-box {
        width: 100%;
        height: 260px;
    }

    .offering-card-text {
        max-width: 100%;
    }
}

/* What We Offer Section (Stats Block) */
.stats-section {
    background-color: var(--white);
    padding: 2rem 4rem 4rem 4rem;
}

.stats-banner-card {
    background: linear-gradient(135deg, #3f020a 0%, #b30d22 55%, #c80d24 100%);
    border-radius: 32px;
    padding: 4rem 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(179, 13, 34, 0.15);
}

.stats-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stats-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stats-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
}

.stats-card-number {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.stats-card-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.stats-content-box {
    color: var(--white);
}

.badge-outline {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}

/* .badge-outline .badge-icon {
    filter: invert(1) brightness(2);
} */

.stats-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
    letter-spacing: -0.015em;
}

.stats-banner-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.stats-banner-description:last-of-type {
    margin-bottom: 0;
}

/* Client Testimonials Section */
.testimonials-section {
    background-color: #F4F2EE;
    padding: 4rem 4rem 3.5rem 4rem;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials-carousel-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.testimonials-carousel-wrapper {
    overflow: hidden;
    flex: 1;
    padding: 1rem 0;
}

.testimonials-carousel-track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 1.75rem) / 2);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars .star {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: #44403c;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-divider {
    border: none;
    border-top: 1px solid #e7e5e4;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c1917;
    line-height: 1.2;
}

.author-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #78716c;
}

.author-client-logo {
    max-height: 36px;
    max-width: 100px;
    object-fit: contain;
}

.testimonial-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid #d6d3d1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-nav-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.testimonial-nav-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(179, 13, 34, 0.03);
}

.testimonial-nav-btn.next {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* .testimonial-nav-btn.next img {
    filter: invert(1);
} */

.testimonial-nav-btn.next:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: scale(1.05);
}

/* Responsive styles for Stats Section and Testimonials Section */
@media (max-width: 1024px) {
    .stats-banner-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 3rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        /* show 1 card */
    }

    .testimonials-carousel-container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .stats-banner-card {
        padding: 3rem 2rem;
    }

    .testimonials-section {
        padding: 3rem 1.5rem 2.5rem 1.5rem;
    }

    .testimonials-carousel-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .testimonials-carousel-wrapper {
        width: 100%;
        flex: 0 0 100%;
        order: 1;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
        min-width: 0;
        flex: 0 0 100%;
    }

    .testimonial-nav-btn {
        width: 48px;
        height: 48px;
    }

    .testimonial-nav-btn.prev {
        order: 2;
    }

    .testimonial-nav-btn.next {
        order: 3;
    }
}

@media (max-width: 480px) {
    .stats-grid-container {
        grid-template-columns: 1fr;
    }

    .testimonials-section {
        padding: 2.5rem 1rem 2rem 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.25rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .author-client-logo {
        align-self: flex-start;
        margin-top: 0.25rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .stats-section {
        padding: 2rem 1rem;
    }

    .blog-section {
        padding: 2rem 1rem !important;
    }

    .site-footer {
        padding: 2rem !important;
    }
}

/* Our Expert Team Section Styles */
.team-section {
    background-color: var(--white);
    padding: 1rem 4rem 4rem;
}

.team-banner-card {
    background: linear-gradient(135deg, #3f020a 0%, #b30d22 55%, #c80d24 100%);
    border-radius: 32px;
    padding: 3rem 3rem;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(179, 13, 34, 0.15);
}

.team-content-box {
    color: var(--white);
}

.team-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
    letter-spacing: -0.015em;
}

.team-banner-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.25rem;
    font-weight: 300;
}

.team-cta-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.team-cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 13, 34, 0.3);
}

.team-actions-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.team-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.team-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.member-card {
    flex: 0 0 calc((100% - 1.5rem * 2) / 3);
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.member-portrait-box {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.member-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.member-card:hover .member-portrait {
    transform: scale(1.03);
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
}

.member-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Get In Touch Section Styles */
.contact-section {
    background-color: #F4F2EE;
    padding: 4rem 4rem 3.5rem 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.15rem, 3.8vw, 2.85rem);
    font-weight: 800;
    color: #1c1917;
    line-height: 1.25;
    margin-top: 1rem;
    margin-bottom: 2.25rem;
    letter-spacing: -0.015em;
}

.contact-card-group {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.contact-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.contact-card-group:hover .contact-image {
    transform: scale(1.02);
}

.contact-details-box {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: var(--white);
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-item.full-width {
    grid-column: span 2;
    border-top: 1px solid #f3f4f6;
}

.detail-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(179, 13, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.4;
    font-weight: 500;
    padding-top: 14px;
}

.detail-text a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
}

.detail-text a:hover {
    color: var(--primary-color);
}

/* Form Overlap Styling */
.contact-form-col {
    display: flex;
    align-items: center;
}

.contact-form-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.contact-bg-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #1f0206 0%, #b30d22 100%);
    border-radius: 24px;
    z-index: 1;
}

.contact-form-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 92%;
    height: 94%;
    background-color: var(--white);
    border-radius: 24px;
    padding: 3.5rem 3rem 2rem 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Floating Form Labels */
.form-group {
    position: relative;
    margin-bottom: 1.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #1f2937;
    border: none;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #6b7280;
    pointer-events: none;
    transition: 0.25s ease all;
}

/* Focus and active label translations */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -1.25rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-submit-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 0.85rem 2.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 1rem;
    transition: var(--transition);
}

.form-submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(179, 13, 34, 0.3);
}

/* Responsive styles for Team Section and Contact Section */
@media (max-width: 1024px) {
    .team-banner-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 3rem;
    }

    .team-carousel-track {
        gap: 1.5rem;
    }

    .member-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: 240px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 3rem 1.5rem;
    }

    .team-carousel-track {
        gap: 1.25rem;
    }

    .member-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .contact-form-container {
        min-height: auto;
    }

    .contact-bg-card {
        display: none;
    }

    .contact-form-card {
        position: relative;
        width: 100%;
        height: auto;
        padding: 2.5rem 2rem;
    }

    .team-banner-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .team-actions-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .team-actions-row .team-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .team-actions-row .carousel-nav {
        align-self: center !important;
        margin-top: 0.5rem;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 2.5rem 1rem;
    }

    .team-banner-card {
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
    }

    .member-portrait-box {
        height: 240px;
    }

    .contact-details-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .contact-detail-item.full-width {
        grid-column: span 1;
    }

    .contact-section {
        padding: 2rem 1rem !important;
    }
}

/* Latest Blog Insights Section */
.blog-section {
    background-color: #F4F2EE;
    padding: 2rem 4rem 3% 4rem;
    position: relative;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.blog-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-header-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.blog-header-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 13, 34, 0.3);
}

.blog-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.blog-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.blog-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.blog-card {
    flex: 0 0 calc((100% - 2rem * 2) / 3);
    min-width: 340px;
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.blog-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.blog-card:hover .blog-image {
    transform: scale(1.03);
}

.blog-content {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.blog-card-title a {
    color: #1c1917;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
    border-top: 1px solid #f3f4f6;
    width: 100%;
    padding-top: 1.25rem;
}

.blog-readmore .arrow img {
    transition: var(--transition);

}

.blog-readmore img {
    width: 22px;
    height: 20px;
    align-items: center;
    display: block;
}

.blog-readmore:hover {
    color: var(--primary-hover);
}

.blog-readmore:hover .arrow {
    transform: translate(2px, -2px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 0.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(179, 13, 34, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top img {
    width: 20px;
    height: 22px;
    align-items: center;
    display: block;
}

.scroll-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(179, 13, 34, 0.4);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1b0104 0%, #3a0209 45%, #6a030f 100%);
    color: var(--white);
    padding: 4rem 4rem 1.5rem 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    max-height: 48px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    align-self: flex-start;
}

.footer-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
}

.footer-cta-btn .arrow img {
    width: 22px;
    height: 20px;
    align-items: center;
    display: block;
}

.footer-cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(179, 13, 34, 0.3);
}

.footer-cta-btn .arrow {
    transition: var(--transition);
}

.footer-cta-btn:hover .arrow {
    transform: translate(2px, -2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links-list a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.newsletter-input-group {
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.12);
}

.newsletter-submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.newsletter-submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(179, 13, 34, 0.3);
}

.newsletter-submit-btn .arrow {
    transition: var(--transition);
}

.newsletter-submit-btn .arrow img {
    width: 22px;
    height: 20px;
    align-items: center;
    display: block;
}

.newsletter-submit-btn:hover .arrow {
    transform: translate(2px, -2px);
}

.footer-social-row {
    display: flex;
    gap: 0.75rem;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icon-svg.stroke {
    width: 18px;
    height: 18px;
}

.social-icon-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* Responsive overrides for Blog & Footer */
@media (max-width: 1024px) {
    .blog-carousel-track {
        gap: 1.5rem;
    }

    .blog-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .blog-header-right {
        width: 100%;
        justify-content: space-between;
    }

    .blog-header-btn {
        flex-grow: 1;
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .blog-carousel-track {
        gap: 1rem;
    }

    .blog-card {
        flex: 0 0 100%;
        min-width: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-social-row {
        justify-content: center;
    }
}

/* Prevent animation flicker on page load for js-enabled browsers */
.js-enabled .hero-content .section-badge,
.js-enabled .hero-content .hero-title,
.js-enabled .hero-content .hero-subtitle,
.js-enabled .hero-content .hero-cta-btn,
.js-enabled .services-header .section-badge,
.js-enabled .services-header .section-title,
.js-enabled .services-header .section-subtitle,
.js-enabled .service-card,
.js-enabled .about-header .section-badge,
.js-enabled .about-header .about-heading-text,
.js-enabled .about-img-box,
.js-enabled .about-stats-box,
.js-enabled .about-card-box,
.js-enabled .offerings-header .section-badge,
.js-enabled .offerings-header .section-title,
.js-enabled .offering-card,
.js-enabled .stats-card,
.js-enabled .stats-content-box .section-badge,
.js-enabled .stats-content-box .stats-banner-title,
.js-enabled .stats-content-box .stats-banner-description,
.js-enabled .testimonials-header .section-badge,
.js-enabled .testimonials-header .section-title,
.js-enabled .testimonial-card,
.js-enabled .team-content-box .section-badge,
.js-enabled .team-content-box .team-banner-title,
.js-enabled .team-content-box .team-banner-description,
.js-enabled .team-content-box .team-cta-btn,
.js-enabled .member-card,
.js-enabled .contact-info-col .section-badge,
.js-enabled .contact-info-col .contact-title,
.js-enabled .contact-card-group,
.js-enabled .contact-form-col,
.js-enabled .blog-header .section-badge,
.js-enabled .blog-header .section-title,
.js-enabled .blog-header .blog-header-btn,
.js-enabled .blog-card {
    opacity: 1;
}

/* About Page Specific Styles */
.about-hero-section {
    position: relative;
    min-height: 400px;
    height: 50vh;
    background: linear-gradient(135deg, #1d0106 0%, #09090b 100%);
    display: flex;
    align-items: center;
    padding: 120px 50px 0 50px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Breadcrumbs Styling */
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.breadcrumb-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-link:hover .breadcrumb-icon {
    transform: translateY(-2px) scale(1.05);
}

.breadcrumbs .separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .separator svg {
    width: 10px;
    height: 10px;
}

.current-page {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(179, 13, 34, 0.12);
    border: 1px solid rgba(179, 13, 34, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.about-hero-content {
    max-width: 100%;
    color: var(--white);
    text-align: center;
    padding: 0px 60px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-white);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero-description {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    padding-bottom: 30px;
}

/* Vision & Mission Grid */
.vision-mission-section {
    background-color: var(--background-dark);
    padding: 6rem 4rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.vision-mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 13, 34, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.vision-mission-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(179, 13, 34, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(179, 13, 34, 0.25);
}

.vision-mission-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.vision-mission-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--white);
    font-weight: 700;
}

.vision-mission-card p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Timeline/History Section */
.history-section {
    background-color: var(--white);
    padding: 4rem 4rem 2rem 4rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
    padding: 1rem 0;
}

.timeline-track {
    position: relative;
    width: 100%;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(179, 13, 34, 0.15);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 3rem;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px rgba(179, 13, 34, 0.2);
    z-index: 5;
}

.timeline-item.left .timeline-badge {
    right: -9px;
}

.timeline-item.right .timeline-badge {
    left: -9px;
}

.timeline-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.timeline-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Responsiveness for About Page */
@media (max-width: 1024px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 380px;
        height: auto;
        padding: 100px 24px 40px 24px;
    }

    .vision-mission-section,
    .history-section {
        padding: 4rem 24px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-badge,
    .timeline-item.right .timeline-badge {
        left: 11px;
        right: auto;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--light-bg);
    padding: 4rem 4rem;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(179, 13, 34, 0.15);
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-chevron {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-body {
    padding: 0 2rem 1.75rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

/* Business Setup Comparison Cards */
.setup-cards-section {
    background-color: var(--background-dark);
    padding: 6rem 4rem;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.setup-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.setup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.setup-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(179, 13, 34, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.setup-card:hover::before {
    opacity: 1;
}

.setup-icon-box {
    width: 72px;
    height: 72px;
    background: rgba(179, 13, 34, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(179, 13, 34, 0.2);
    margin-bottom: 2rem;
}

.setup-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.setup-card h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.setup-card p {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.25rem;
    min-height: 75px;
}

.setup-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setup-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.setup-check-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.setup-cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.setup-btn {
    display: inline-block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.setup-card:hover .setup-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(179, 13, 34, 0.4);
}

/* Steps section styling */
.steps-section {
    background-color: var(--white);
    padding: 6rem 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(179, 13, 34, 0.15);
}

.step-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(179, 13, 34, 0.1);
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.step-card p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Setup responsive layout */
@media (max-width: 1024px) {
    .setup-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .setup-cards-section,
    .steps-section,
    .faq-section {
        padding: 4rem 24px;
    }

    .setup-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Business Setup Services Directory Section Styles */
.services-directory-section {
    padding: 4rem 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.directory-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr 0.9fr;
    gap: 3.5rem;
    width: 100%;
}

.directory-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.directory-col:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding-right: 3.5rem;
}

.directory-col-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.header-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(179, 13, 34, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.header-icon-svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5px;
}

.col-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
    line-height: 1.2;
}

.col-subtitle {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.directory-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.directory-links-list li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 0.9rem;
}

.directory-links-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.directory-links-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 500;
    transition: var(--transition);
}

.directory-links-list a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.chevron-icon {
    width: 11px;
    height: 11px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.directory-links-list a:hover .chevron-icon {
    transform: translateX(3px);
}

.setup-sub-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sub-col-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.6rem;
}

.sub-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-color);
}

.connect-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1.2px solid rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.connect-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(179, 13, 34, 0.06);
    border-color: rgba(179, 13, 34, 0.12);
}

.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.1);
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.06);
}

.connect-card .card-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-card .card-icon-box {
    background-color: rgba(37, 211, 102, 0.06);
    color: #25D366;
}

.meeting-card .card-icon-box {
    background-color: rgba(179, 13, 34, 0.05);
    color: var(--primary-color);
}

.card-icon-svg {
    width: 24px;
    height: 24px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.card-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Responsive styles for Services Directory */
@media (max-width: 1024px) {
    .directory-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .directory-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-right: 0;
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 768px) {
    .services-directory-section {
        padding: 4rem 24px;
    }
}

@media (max-width: 576px) {
    .setup-sub-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Corporate Services Page Specific Styles */
.corporate-details-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.corp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.corp-service-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1.2px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.corp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(179, 13, 34, 0.1);
}

.corp-service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(179, 13, 34, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    flex-shrink: 0;
}

.corp-card-svg {
    width: 28px;
    height: 28px;
}

.corp-service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.corp-service-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.corp-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.corp-service-features li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.corp-service-features li::before {
    content: "\2713";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.95rem;
}

.corp-service-cta {
    margin-top: auto;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-learn-more:hover {
    color: var(--primary-hover);
}

.btn-learn-more .arrow-up-right {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.btn-learn-more:hover .arrow-up-right {
    transform: translate(2px, -2px);
}

/* Why Choose Us Corp Section */
.why-choose-corp-section {
    padding: 6rem 0;
    background-color: #F4F2EE;
}

.why-choose-corp-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4.5rem;
    align-items: center;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.75rem 0 1.5rem 0;
    line-height: 1.2;
}

.why-choose-desc {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 2rem 0;
}

.why-choose-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bullet-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(179, 13, 34, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bullet-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bullet-text strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.bullet-text span {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.why-choose-image-box {
    width: 100%;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.why-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles for Corporate Services */
@media (max-width: 1024px) {
    .corp-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-choose-corp-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .why-choose-image-box {
        height: 360px;
    }
}

@media (max-width: 768px) {

    .corporate-details-section,
    .why-choose-corp-section {
        padding: 4rem 24px;
    }
}

@media (max-width: 600px) {
    .corp-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Standalone Contact Page Styles */
.standalone-contact-section {
    padding: 4rem 0 3.5rem 0 !important;
}

.contact-map-section {
    padding: 0 0 4rem 0;
    background-color: #F4F2EE;
}

.map-container-card {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1.2px solid rgba(0, 0, 0, 0.04);
    display: flex;
    background-color: var(--white);
}

.map-container-card iframe {
    border: 0;
}

@media (max-width: 768px) {
    .standalone-contact-section {
        padding: 4rem 24px 2rem 24px !important;
    }

    .contact-map-section {
        padding: 0 24px 4rem 24px;
    }

    .map-container-card iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container-card iframe {
        height: 280px;
    }
}

/* Standalone Blog Page Styles */
.blog-index-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4.5rem;
}

.blog-card.index-mode {
    flex: unset;
    min-width: unset;
    width: 100%;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.pagination-btn,
.pagination-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--text-muted);
    border: 1.2px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    background-color: var(--white);
}

.pagination-btn:hover:not(.disabled),
.pagination-num:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(179, 13, 34, 0.02);
}

.pagination-num.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .blog-index-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-index-section {
        padding: 4rem 24px;
    }
}

@media (max-width: 650px) {
    .blog-index-grid {
        grid-template-columns: 1fr;
    }
}

/* Standalone Blog Detail Page Styles */
.blog-detail-hero {
    padding: 8rem 4rem 4rem 4rem;
    background-color: #09090b;
    text-align: center;
}

.blog-detail-tag {
    display: inline-block;
    padding: 0.5rem 1.15rem;
    background-color: rgba(179, 13, 34, 0.06);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.blog-detail-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    max-width: 100%;
    letter-spacing: -0.015em;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    padding-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.meta-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    stroke-width: 2.2px;
}

.blog-detail-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.blog-detail-grid {
    display: grid !important;
    grid-template-columns: 2.05fr 0.95fr !important;
    gap: 4.5rem;
    align-items: start;
}

.blog-detail-content-area {
    display: flex;
    flex-direction: column;
    grid-column: 1 !important;
}

.blog-sidebar {
    grid-column: 2 !important;
}

.main-featured-image-box {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.article-text p {
    margin: 0 0 1.5rem 0;
}

.article-text h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.25rem 0;
    line-height: 1.3;
}

.article-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-text ul li {
    margin-bottom: 0.25rem;
}

.article-quote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    background-color: #F4F2EE;
    border-radius: 0 16px 16px 0;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 2.5rem 0;
}

.key-takeaways-box {
    background-color: rgba(179, 13, 34, 0.02);
    border: 1.2px solid rgba(179, 13, 34, 0.08);
    padding: 2.25rem 2rem;
    border-radius: 24px;
    margin: 3rem 0;
}

.key-takeaways-box h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
}

.takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.takeaways-list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.takeaways-list li::before {
    content: "\2713";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.author-bio-card {
    border: 1.2px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.author-bio-text p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Sidebar Styling */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background-color: #F4F2EE;
    border-radius: 24px;
    padding: 2.5rem;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}

.sidebar-search-form {
    display: flex;
    position: relative;
    width: 100%;
}

.sidebar-search-form .search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.25rem;
    border-radius: 50px;
    border: 1.2px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: var(--white);
    outline: none;
    transition: var(--transition);
}

.sidebar-search-form .search-input:focus {
    border-color: var(--primary-color);
}

.sidebar-search-form .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sidebar-search-form .search-submit img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.widget-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.widget-categories-list li a span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.widget-categories-list li a:hover {
    color: var(--primary-color);
}

.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    align-items: center;
}

.post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.post-meta-info .post-date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-meta-info .post-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    transition: var(--transition);
}

.popular-post-item:hover .post-title {
    color: var(--primary-color);
}

.promo-widget-card {
    background-color: var(--text-dark);
    text-align: center;
    color: var(--white);
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.promo-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 2rem 0;
}

.promo-btn {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .blog-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .blog-detail-content-area {
        grid-column: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .blog-sidebar {
        grid-column: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .article-text table,
    .blog-detail-content-area table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 4rem 3rem 3rem 3rem;

    }

    .blog-detail-section {
        padding: 4rem 24px;
    }

    .main-featured-image-box {
        height: 320px;
        margin-bottom: 2rem;
    }

    .author-bio-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .about-section {
        padding: 4rem 1rem .5rem 1rem;
    }
}

/* 4-Column Corporate Services Directory Layout Styles */
.directory-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.directory-grid.four-cols .directory-col:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding-right: 2.5rem;
}

@media (max-width: 1200px) {
    .directory-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }

    .directory-grid.four-cols .directory-col:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .directory-grid.four-cols {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .directory-grid.four-cols .directory-col {
        border-right: none !important;
        padding-right: 0 !important;
    }

    .directory-grid.four-cols .directory-col:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-bottom: 3.5rem;
    }
}

/* About Page Clearing Services Section Styles */
.about-clearing-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
}

.about-clearing-text-col {
    display: flex;
    flex-direction: column;
}

.about-clearing-title {
    font-family: var(--font-heading);
    font-size: 2.65rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    margin: 0 0 2rem 0;
    letter-spacing: -0.015em;
}

.about-clearing-p {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.about-clearing-cta {
    margin-top: 1.25rem;
}

.btn-view-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.02rem;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-view-more:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 13, 34, 0.25);
}

.about-clearing-img-col {
    display: flex;
}

.about-clearing-image-box {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1.2px solid rgba(0, 0, 0, 0.04);
}

.about-clearing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .about-clearing-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-top: 3rem;
    }

    .about-clearing-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .about-clearing-image-box {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .btn-view-more {
        width: 100%;
        text-align: center;
    }
}

/* Contact Page FAQ Section */
.contact-faq-section {
    background-color: var(--light-bg);
    padding: 2rem 4rem 4rem 4rem;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-faq-left {
    position: sticky;
    top: 120px;
}

.contact-faq-left .faq-badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1.5rem;
}

.contact-faq-left .faq-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #18181b;
    letter-spacing: -0.02em;
}

.contact-faq-right {
    display: flex;
    flex-direction: column;
}

.contact-faq-right {
    color: var(--primary-color);
}

.contact-faq-list {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.contact-faq-header {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    gap: 1.5rem;
}

.contact-faq-question {
    font-family: var(--font-heading);
    font-size: 1.10rem;
    font-weight: 400;
    color: #18181b;
    transition: var(--transition);
}

.contact-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #18181b;
    transition: var(--transition);
}

.contact-faq-header:hover .contact-faq-toggle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.contact-faq-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.line-v {
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-faq-item.active .contact-faq-question {
    color: var(--primary-color);
}

.contact-faq-item.active .contact-faq-toggle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.contact-faq-item.active .line-v {
    transform: rotate(90deg);
    opacity: 0;
}

.contact-faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.contact-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-faq-body {
    padding: 0 0 2rem 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .contact-faq-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-faq-left {
        position: static;
    }

    .contact-faq-left .faq-title {
        font-size: 2.75rem;
    }

    .contact-faq-section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-faq-section {
        padding: 4rem 24px;
    }
}

@media (max-width: 576px) {
    .contact-faq-left .faq-title {
        font-size: 2.25rem;
    }

    .contact-faq-question {
        font-size: 1.1rem;
    }

    .contact-faq-header {
        padding: 1.5rem 0;
    }

    .contact-faq-body {
        padding-bottom: 1.5rem;
        font-size: 0.95rem;
    }
}

/* Service Detail and Cost Calculator Page Layouts and Elements (Migrated Inline Styles) */

.breadcrumb-sep {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.breadcrumbs-mt-1 {
    margin-top: 1rem;
}

.blog-detail-padding-3 {
    padding: 3rem 3rem;
}

.service-faq-container {
    max-width: 100%;
    margin-top: 1rem;
}

.calculator-section {
    padding: 1rem 0 1rem 0;
    background-color: var(--light-bg);
}

.slider-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark, #18181b);
}

.slider-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sidebar consultation help widget */
.consultation-widget {
    background-color: var(--dark-bg) !important;
    color: var(--white) !important;
}

.consultation-widget-title {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.consultation-widget-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.consultation-contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.consultation-contact-row.whatsapp-row {
    margin-bottom: 1.5rem;
}

.consultation-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-icon-box.phone-icon-box {
    color: var(--primary-color);
}

.consultation-phone-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.consultation-wa-icon {
    width: 18px;
    height: 18px;
    color: #25D366;
}

.consultation-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.consultation-btn {
    width: 100%;
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    text-align: center;
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Dynamic CTA section banner */
.cta-section-banner {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.cta-button-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn-light {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white) !important;
    padding: 1rem 2.25rem !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: var(--transition) !important;
    text-align: center;
    width: auto;
    display: inline-flex;
    height: 55px;
    align-items: center;
    justify-content: center;
}

.cta-btn-light:hover {
    background-color: transparent !important;
    color: var(--white) !important;
}

.cta-btn-outline {
    background-color: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
    padding: 1rem 2.25rem !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: var(--transition) !important;
    text-align: center;
    width: auto;
    display: inline-flex;
    height: 55px;
    align-items: center;
    justify-content: center;
}

.cta-btn-outline:hover {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .blog-detail-padding-3 {
        padding: 3rem 24px;
    }
}

/* Page Specific CSS for Cost Calculator Page */
.calculator-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: start;
    margin: 4rem 0 6rem 0;
}

@media (max-width: 991px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.calc-steps-wrapper {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-radius: 24px;
    padding: 3rem;
}

@media (max-width: 600px) {
    .calc-steps-wrapper {
        padding: 2rem 1.25rem;
    }
}

.calc-step {
    margin-bottom: 3.5rem;
}

.calc-step:last-child {
    margin-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 1rem;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(179, 13, 34, 0.2);
    flex-shrink: 0;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .option-grid {
        grid-template-columns: 1fr;
    }
}

.option-card {
    background-color: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.option-card:hover {
    border-color: rgba(179, 13, 34, 0.3);
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(179, 13, 34, 0.02);
}

.option-card.selected::after {
    content: '\2713';
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.option-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.option-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.slider-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-val-box {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(179, 13, 34, 0.05);
    padding: 0.25rem 1.25rem;
    border-radius: 30px;
}

input.slider-val-box {
    width: 75px;
    border: 1px solid rgba(179, 13, 34, 0.1);
    outline: none;
    text-align: center;
    -moz-appearance: textfield;
    transition: var(--transition);
}

input.slider-val-box:focus {
    border-color: var(--primary-color);
    background-color: rgba(179, 13, 34, 0.08);
}

input.slider-val-box::-webkit-outer-spin-button,
input.slider-val-box::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.06);
    outline: none;
    margin: 1.5rem 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(179, 13, 34, 0.3);
    transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.summary-panel-wrapper {
    background-color: var(--dark-bg);
    color: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

@media (max-width: 991px) {
    .summary-panel-wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .summary-panel-wrapper {
        padding: 2rem 1.25rem;
    }
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.25rem;
    margin-bottom: 1.75rem;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.summary-item.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.summary-item.total .total-val {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.lead-capture-box {
    /* margin-top: 2.5rem; */
    /* border-top: 1px dashed rgba(255, 255, 255, 0.15); */
    /* padding-top: 2rem; */
}

.lead-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.85rem 1.25rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.lead-input:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.lead-submit-btn {
    width: 100%;
    border-radius: 30px;
    padding: 0.95rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.calc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.calc-modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: modalFadeIn 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.modal-close-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background-color: var(--primary-hover);
}

/* Page Specific CSS for Service Detail Page Tabs and Components */
.widget-categories-list li a {
    cursor: pointer;
}

.widget-categories-list li a.active-tab {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.widget-categories-list li a.active-tab span {
    color: var(--primary-color) !important;
}

.service-detail-tab-content {
    display: none;
}

.service-detail-tab-content.active-content {
    display: block;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 2.5rem 0;
}

@media (max-width: 600px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checklist-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    background-color: rgba(179, 13, 34, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-checkbox svg {
    width: 12px;
    height: 12px;
    stroke-width: 3.5px;
}

.checklist-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.process-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 1.5rem 0 2.5rem 0;
    position: relative;
}

.process-step-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.process-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 42px;
    bottom: -22px;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.06);
}

.process-step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(179, 13, 34, 0.25);
}

.process-step-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.process-step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-parameter-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #F4F2EE;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.parameter-box {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.parameter-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.parameter-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================
   Header Dropdown Menu Styles
   ========================================== */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-chevron {
    font-size: 0.65rem;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

/* Desktop Dropdown Layout & Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(9, 9, 11, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 120;
    list-style: none;
    margin: 0;
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding-left: 1.75rem;
    /* micro-animation slide right */
}

/* Hover behaviors for Desktop */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(5px);
    }

    .nav-item.dropdown:hover .dropdown-chevron {
        transform: rotate(180deg);
    }
}

/* Mobile Dropdown styles (max-width: 768px) */
@media (max-width: 768px) {
    .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.02);
        border: none;
        border-radius: 8px;
        padding: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease;
        margin-top: 0;
    }

    .nav-item.dropdown.active-mobile-dropdown .dropdown-menu {
        max-height: 400px;
        /* enough space for items */
        margin-top: 0.75rem;
        padding: 0.25rem 0;
    }

    .dropdown-menu li a {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
    }

    .dropdown-menu li a:hover {
        background-color: transparent;
        color: var(--primary-color);
        padding-left: 1.25rem;
    }
}

/* WhatsApp Floating Widget */
.whatsapp-float-widget {
    position: fixed;
    bottom: 105px;
    right: 7px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float-label {
    background-color: var(--white);
    color: #18181b;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-float-icon-box {
    background-color: #25d366;
    /* WhatsApp brand green color */
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

/* Ripple Pseudo-elements on the icon box */
.whatsapp-float-icon-box::before,
.whatsapp-float-icon-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.whatsapp-float-icon-box::before {
    animation: whatsapp-ripple 2s infinite ease-out;
}

.whatsapp-float-icon-box::after {
    animation: whatsapp-ripple 2s infinite ease-out 0.6s;
}

/* Hover effects */
.whatsapp-float-widget:hover .whatsapp-float-icon-box {
    transform: scale(1.08);
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
}

.whatsapp-float-widget:hover .whatsapp-float-icon-box::before,
.whatsapp-float-widget:hover .whatsapp-float-icon-box::after {
    background-color: #128C7E;
}

@keyframes whatsapp-ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float-widget:hover .whatsapp-float-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive styles */
@media (max-width: 480px) {
    .whatsapp-float-widget {
        bottom: 95px;
        right: 20px;
        gap: 8px;
    }

    .whatsapp-float-icon-box {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float-icon {
        width: 26px;
        height: 26px;
    }

    .whatsapp-float-label {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Consultation Modal Popup */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.consultation-modal.show {
    display: flex;
}

.consultation-modal .modal-content {
    background-color: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.consultation-modal .modal-close-btn-x {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.consultation-modal .modal-close-btn-x:hover {
    color: var(--primary-color);
}

.consultation-modal .modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.consultation-modal .modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
}

.consultation-modal .form-submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.95rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.consultation-modal .form-submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(179, 13, 34, 0.4);
}

/* Consultation Form Select Dropdown Styling */
.form-group select {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #1f2937;
    border: none;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
}

.form-group.select-group::after {
    content: "\25BC";
    font-size: 0.65rem;
    color: #6b7280;
    position: absolute;
    right: 0;
    top: 1rem;
    pointer-events: none;
}

.form-group select:focus~label,
.form-group select:valid~label {
    top: -1.25rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer Contact Info List Styles */
.footer-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-info-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-white);
    font-size: 0.95rem;
}

.footer-contact-info-list li.align-center {
    align-items: center;
}

.footer-contact-info-list .contact-icon {
    width: 16px;
    filter: brightness(0) invert(1);
}

.footer-contact-info-list li .contact-icon.icon-location {
    margin-top: 4px;
}

.footer-contact-info-list li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info-list li a:hover {
    color: var(--primary-color);
}

footer .footer-contact-info-list li:first-child span {
    padding-right: 13px;
}

/* Form Handler Toast & Spinner Styles */
#tanzeel-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100% - 60px);
    pointer-events: none;
}

.tanzeel-toast {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 5px solid #10b981;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    opacity: 0;
    pointer-events: auto;
    position: relative;
}

.tanzeel-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.tanzeel-toast.error {
    border-left-color: #ef4444;
}

.toast-icon {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #10b981;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tanzeel-toast.error .toast-icon {
    background-color: #ef4444;
}

.toast-message {
    font-family: var(--font-body), sans-serif;
    font-size: 0.9rem;
    color: #1f2937;
    line-height: 1.4;
    flex-grow: 1;
}

.toast-close-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.toast-close-btn:hover {
    color: #374151;
}

.form-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Success Modal Popup Styles */
.form-success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-success-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.form-success-modal-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success-modal-overlay.show .form-success-modal-box {
    transform: scale(1);
}

.success-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.success-modal-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.success-modal-desc {
    font-family: var(--font-body), sans-serif;
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.success-modal-close-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2.5rem;
    font-family: var(--font-heading), sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(179, 13, 34, 0.2);
}

.success-modal-close-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.success-modal-close-btn:active {
    transform: translateY(0);
}

/* Unified Phone Input Wrapper Styling */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    background-color: var(--white);
    transition: var(--transition);
    width: 100%;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(179, 13, 34, 0.1);
}

.phone-input-wrapper select.country-code-select {
    flex: 0 0 85px !important;
    width: 85px !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0.25rem 0 1rem !important;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: #1f2937;
    cursor: pointer;
    outline: none !important;
    margin: 0 !important;
    height: 48px !important;
    line-height: 48px;
}

.phone-input-wrapper input[type="tel"] {
    flex: 1 !important;
    width: auto !important;
    min-width: 0 !important;
    border: none !important;
    background: transparent !important;
    padding: 0.85rem 1rem 0.85rem 0.5rem !important;
    outline: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    height: 48px !important;
    pointer-events: auto !important;
}

/* Floating labels inside wrapper styling */
.phone-input-wrapper label {
    position: absolute;
    left: calc(85px + 1rem) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
}

.phone-input-wrapper input[type="tel"]:focus~label,
.phone-input-wrapper input[type="tel"]:not(:placeholder-shown)~label {
    top: 0 !important;
    transform: translateY(-50%) scale(0.8) !important;
    background-color: var(--white);
    padding: 0 0.4rem;
    left: 1rem !important;
}

/* Dark theme lead form wrapper styling */
.phone-input-wrapper.lead-phone-wrapper {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px !important;
    color: var(--white) !important;
    padding: 0 0.5rem !important;
}

.phone-input-wrapper.lead-phone-wrapper:focus-within {
    border-color: var(--primary-color) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.phone-input-wrapper.lead-phone-wrapper select.country-code-select {
    color: var(--white) !important;
    background: transparent !important;
    padding: 0 0.25rem 0 0.5rem !important;
    width: 75px !important;
    flex: 0 0 75px !important;
}

.phone-input-wrapper.lead-phone-wrapper select.country-code-select option {
    background-color: var(--dark-bg);
    color: var(--white);
}

.phone-input-wrapper.lead-phone-wrapper input[type="tel"] {
    color: var(--white) !important;
    font-size: 0.88rem !important;
    padding: 0.85rem 0.5rem 0.85rem 0.5rem !important;
    width: auto !important;
    min-width: 0 !important;
    pointer-events: auto !important;
}

/* Standard Form Group wrapper adjustment (bottom border style) */
.form-group.phone-group .phone-input-wrapper {
    border: none !important;
    border-bottom: 1px solid #d1d5db !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.form-group.phone-group .phone-input-wrapper:focus-within {
    border-bottom-color: var(--primary-color) !important;
}

.form-group.phone-group .phone-input-wrapper select.country-code-select {
    padding: 0.75rem 0.5rem 0.75rem 0 !important;
    color: #1f2937 !important;
    height: auto !important;
    line-height: normal !important;
    width: 80px !important;
    flex: 0 0 80px !important;
}

.form-group.phone-group .phone-input-wrapper input[type="tel"] {
    padding: 0.75rem 0 0.75rem 0.5rem !important;
    color: #1f2937 !important;
    height: auto !important;
    width: auto !important;
    min-width: 0 !important;
    pointer-events: auto !important;
}

.form-group.phone-group .phone-input-wrapper label {
    left: calc(80px + 0.5rem) !important;
    color: var(--text-muted);
}

.form-group.phone-group .phone-input-wrapper input[type="tel"]:focus~label,
.form-group.phone-group .phone-input-wrapper input[type="tel"]:not(:placeholder-shown)~label {
    top: -1.25rem !important;
    transform: scale(0.85) !important;
    background-color: transparent !important;
    padding: 0 !important;
    left: 0 !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}
}