/* Prevent horizontal scroll on all pages */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Smooth Scroll Snap for All Pages */
html {
    scroll-behavior: smooth;
}

.page-content {
    scroll-snap-type: y proximity;
    /* overflow-y: scroll; */
}

.section-full {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Prevent Word Breaking in Headings */
h1, h2, h3, h4, h5, h6,
h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
.letters, .text-wrapper {
    word-break: keep-all !important;
    word-wrap: break-word !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    white-space: normal !important;
}

/* Why Choose Us Section Styles */
.why-choose-title {
    font-size: 36px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-choose-title strong {
    font-weight: 700;
    color: #1a1a1a;
}

.why-choose-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 90%;
}

.why-choose-image-wrapper {
    position: relative;
    width: 100%;
}

.why-choose-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #2C3E50;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}



.quality-badge {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.badge-icon {
    background: #FFFAFE;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 24px;
    color: #4CAF50;
}

.badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 12px;
    color: #2E7D32;
    margin-bottom: 2px;
}

.badge-value {
    font-size: 24px;
    font-weight: 700;
    color: #1B5E20;
}

.badge-chart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-chart span {
    font-size: 12px;
    color: #2E7D32;
    font-weight: 600;
}

.finance-card {
    background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: white;
}

.card-header-notice {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #2C3E50;
}

.card-header-notice i {
    font-size: 16px;
    color: #00ACC1;
}

.card-title {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 500;
}

.card-number {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.9;
}

.rev-btn,
.rev-btn:visited,
.tp-caption.rev-btn,
.rev-btn .site-button,
.rev-btn .site-button-secondry {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

@media only screen and (min-width: 992px) {
    .site-header.mobile-sider-drawer-menu .main-bar .container {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .site-header.mobile-sider-drawer-menu .logo-header {
        flex-shrink: 0;
    }

    .site-header.mobile-sider-drawer-menu .header-nav {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-header.mobile-sider-drawer-menu .header-nav .nav {
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .site-header.mobile-sider-drawer-menu .header-nav .nav > li > a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .site-header.mobile-sider-drawer-menu .extra-nav {
        margin-left: auto;
        height: auto;
        flex-shrink: 0;
    }

    .site-header.mobile-sider-drawer-menu .extra-nav .extra-cell {
        padding-left: 0;
    }

    .site-header.mobile-sider-drawer-menu .get-in-touch-btn {
        padding: 14px 16px;
        font-size: 13px;
        letter-spacing: 0.6px;
        white-space: nowrap;
    }
}

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

.why-feature-box {
    background: #FFFAFE;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.why-feature-box:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.feature-icon {
    /* background: #F9FAFB; */
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    margin-top: 0;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-subtitle {
        max-width: 100%;
    }

    .why-choose-main-image {
        min-height: 400px;
    }

    .why-choose-features {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }
}

.video-section-full-v2:after {
    content: "";
    position: absolute;
    top: -40px;
    right: 40px !important;
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 17px solid #23252d;
    z-index: 0;
    bottom: -40px;
}

@media (max-width: 767px) {
    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-card-overlay {
        width: 95%;
    }

    .finance-card {
        padding: 20px;
    }

    .card-number {
        font-size: 16px;
    }

    .quality-badge {
        padding: 12px 15px;
    }
}

/* Process Cards Section */
.bg-dark {
    background-color: #000 !important;
}

.process-cards-row {
    margin-bottom: 20px;
}

.process-card {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Text Only Card */
.process-card-text-only {
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 30px;
    min-height: 350px;
}

.process-card-content {
    width: 100%;
}

.process-badge {
    display: inline-block;
    background: #8B0425;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.process-main-title {
    color: 000;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

/* Cards With Image */
.process-card-with-image {
    display: flex;
    flex-direction: column;
}

.process-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.process-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.process-step-badge {
    display: inline-block;
    background: #8B0425;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
    text-transform: uppercase;
}

.process-card-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.process-card-text {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Process Cards */
@media (max-width: 991px) {
    .process-main-title {
        font-size: 26px;
    }

    .process-card-text-only {
        min-height: 300px;
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .process-main-title {
        font-size: 22px;
    }

    .process-card-text-only {
        min-height: 250px;
        padding: 25px 20px;
    }

    .process-card-image {
        height: 180px;
    }

    .process-card-body {
        padding: 20px;
    }
}

.nexnid-text {
    font-family: Virginia Medium;
    color: #8B0425;
    letter-spacing: 3px;
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 40vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(139, 4, 37, 0.95) 0%, rgba(107, 3, 25, 0.97) 50%, rgba(75, 1, 16, 0.98) 100%),
        url('../images/background/bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.02) 50px,
            rgba(255, 255, 255, 0.02) 100px
        );
    pointer-events: none;
    animation: ctaShimmer 20s linear infinite;
}

@keyframes ctaShimmer {
    0% {
        background-position: 0 0, 100% 100%, 0 0;
    }
    100% {
        background-position: 100% 100%, 0 0, 100% 100%;
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(139, 4, 37, 0.3) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    color: white;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.cta-title .nexnid-text {
    color: #FFD700;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.cta-primary-btn {
    background: white;
    color: #8B0425;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-primary-btn:hover {
    background: #FFD700;
    color: #8B0425;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-primary-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-primary-btn:hover i {
    transform: translateX(5px);
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Responsive Styles for CTA Section */
@media (max-width: 991px) {
    .cta-section {
        min-height: 500px;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

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

    .cta-description {
        max-width: 100%;
        font-size: 16px;
    }

    .cta-buttons {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .cta-section {
        min-height: 550px;
        padding: 40px 0;
    }

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

    .cta-description {
        font-size: 15px;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        width: 100%;
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(139, 4, 37, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 4, 37, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 200px
        );
    pointer-events: none;
}

.stats-row {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B0425 0%, #FFD700 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 4, 37, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 4, 37, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8B0425 0%, #6B0319 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #8B0425;
    opacity: 0;
    animation: statPulse 2s ease-out infinite;
}

@keyframes statPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 15px 0 10px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    font-weight: 600;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B0425 0%, #FFD700 100%);
    border-radius: 10px;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive Styles for Stats Section */
@media (max-width: 991px) {
    .stats-section {
        padding: 60px 0 40px;
    }

    .stat-card {
        padding: 35px 25px;
    }

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

@media (max-width: 767px) {
    .stats-section {
        padding: 50px 0 30px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 28px;
    }

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

    .stat-label {
        font-size: 14px;
    }
}

/* Get Estimate Cards */
.number-block-two {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.number-block-two .figcaption {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 20px;
    padding: 45px 40px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.number-block-two .figcaption::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 4, 37, 0.03) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.number-block-two:hover .figcaption::before {
    transform: scale(1);
}

.number-block-two .figcaption::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B0425 0%, #FFD700 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.number-block-two:hover .figcaption::after {
    transform: scaleX(1);
}

.number-block-two:hover .figcaption {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 4, 37, 0.15);
    border-color: #8B0425 !important;
}

.number-block-two .figcaption h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px !important;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.number-block-two:hover .figcaption h4 {
    color: #8B0425;
}

.number-block-two .figcaption p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.number-block-two .figcaption .site-button {
    background: linear-gradient(135deg, #8B0425 0%, #6B0319 100%);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.number-block-two .figcaption .site-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: -1;
    
}

.number-block-two .figcaption .site-button:hover::before {
    left: 0;
}

.number-block-two .figcaption .site-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 4, 37, 0.3);
    background-color: white;
}

.number-block-two .figcaption .site-button:hover span {
    color: #8B0425 !important;
}

.figcaption-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 80px;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    z-index: 1;
    background: linear-gradient(135deg, #8B0425 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.number-block-two:hover .figcaption-number {
    opacity: 0.12;
}

/* Responsive for Estimate Cards */
@media (max-width: 991px) {
    .number-block-two .figcaption {
        padding: 35px 30px !important;
    }

    .number-block-two .figcaption h4 {
        font-size: 24px;
    }

    .figcaption-number {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .number-block-two .figcaption {
        padding: 30px 25px !important;
    }

    .number-block-two .figcaption h4 {
        font-size: 22px;
    }

    .number-block-two .figcaption p {
        font-size: 15px;
    }

    .figcaption-number {
        font-size: 60px;
        top: 20px;
        right: 20px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.faq-content-wrapper {
    padding-right: 30px;
}

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

.faq-main-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #8B0425;
    color: white;
    transform: rotate(45deg);
}

.faq-item.active .faq-question h4 {
    color: #8B0425;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, #8B0425 0%, #6B0319 100%);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.faq-cta-text {
    font-size: 18px;
    color: white;
    font-weight: 600;
    margin: 0;
}

.faq-contact-btn {
    background: white;
    color: #8B0425;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.faq-contact-btn:hover {
    background: #FFD700;
    color: #8B0425;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-contact-btn i {
    font-size: 16px;
}

/* FAQ Image */
.faq-image-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.faq-image-card:hover .faq-image {
    transform: scale(1.05);
}

/* Second Info Card */
.faq-info-card {
    background: linear-gradient(135deg, #8B0425 0%, #6B0319 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.faq-info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.faq-info-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.faq-info-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.faq-stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.faq-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    display: block;
}

.faq-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.faq-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-content i {
    font-size: 32px;
    color: #8B0425;
}

.badge-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.badge-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .faq-main-title {
        font-size: 36px;
    }

    .faq-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .faq-image-wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-main-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .badge-content i {
        font-size: 28px;
    }

    .badge-content h5 {
        font-size: 14px;
    }

    .badge-content p {
        font-size: 12px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 70px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 150px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInUp 0.4s ease-out;
}

.whatsapp-chat-widget.show {
    display: flex;
}

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

.whatsapp-chat-header {
    background: #075E54;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 5px;
}

.whatsapp-chat-info h4 {
    color: white;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-chat-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 2px 0 0 0;
    font-size: 12px;
}

.whatsapp-chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.whatsapp-chat-close:hover {
    opacity: 0.7;
}

.whatsapp-chat-body {
    padding: 20px;
    background: #E5DDD5;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23E5DDD5" width="100" height="100"/></svg>');
}

.whatsapp-message {
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

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

.whatsapp-message-content {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 80%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-message-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent white transparent transparent;
}

.whatsapp-message-content p {
    margin: 5px 0;
    font-size: 14px;
    color: #303030;
    line-height: 1.5;
}

.whatsapp-message-time {
    display: block;
    font-size: 11px;
    color: #667781;
    margin-top: 5px;
}

.whatsapp-chat-footer {
    background: #F0F0F0;
    padding: 12px 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.whatsapp-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: white;
    font-size: 14px;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.whatsapp-input:focus {
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
}

.whatsapp-send-btn {
    background: #25D366;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-send-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.whatsapp-send-btn i {
    font-size: 16px;
}

/* Responsive WhatsApp Chat Widget */
@media (max-width: 767px) {
    .whatsapp-chat-widget {
        bottom: 140px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}
