    .mt-0 {
        margin-top: 0 !important;
    }

    /* Genel Form Stilleri */
    .quote-form-card {
        background-color: var(--theme-soft);
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
        padding: 30px;
        margin-bottom: 40px;
        transition: all 0.3s ease;
        border: 1px solid var(--theme-soft);
    }

    .quote-form-card:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .section-title {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 25px;
        font-weight: 600;
        color: #333;
        letter-spacing: -0.5px;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--white);
        border-radius: 2px;
    }

    /* Form Elemanları */
    .form-control,
    .form-select {
        color: var(--white);
        border-radius: 6px;
        padding: 12px 15px;
        border: 1px solid var(--theme-soft);
        transition: all 0.3s ease;
        background-color: var(--theme-soft);
        font-size: 15px;
    }

    .form-control:focus {
        box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
        border-color: var(--theme-red);
        background-color: var(--theme);
        color: var(--white);
    }

    /* Select elementlerindeki çift ok sorununu düzeltme */
    .form-select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: none !important;
        /* Tarayıcının varsayılan okunu kaldır */
    }

    /* NiceSelect için özel stiller */
    .nice-select {
        width: 100%;
        border-radius: 6px;
        padding: 12px 15px;
        height: auto;
        line-height: normal;
        border: 1px solid #e0e0e0;
        background-color: #f9f9f9;
        font-family: inherit;
        font-size: 15px;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .nice-select:hover {
        border-color: #ccc;
    }

    .nice-select:active,
    .nice-select.open,
    .nice-select:focus {
        border-color: var(--theme, var(--theme2));
        box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
        background-color: #fff;
        z-index: 999;
    }

    .nice-select .list {
        width: 100%;
        border-radius: 6px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-top: 4px;
        border: 1px solid #f0f0f0;
    }

    .nice-select .option:hover,
    .nice-select .option.focus,
    .nice-select .option.selected.focus {
        background-color: rgba(227, 30, 36, 0.08);
    }

    .nice-select .option.selected {
        font-weight: 600;
        color: var(--theme, var(--theme2));
    }

    .nice-select:after {
        border-color: #999;
        width: 8px;
        height: 8px;
        right: 15px;
    }

    .nice-select.open:after {
        transform: rotate(-135deg);
    }

    .form-label {
        font-weight: 500;
        margin-bottom: 8px;
        color: #444;
        font-size: 14px;
    }

    /* Dosya Yükleme Alanı */
    .file-upload-wrapper {
        border: 1px dashed var(--white);
        border-radius: 6px;
        background-color: var(--theme-soft);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .file-upload-wrapper:hover {
        border-color: var(--theme, var(--theme2));
    }

    .file-upload-area {
        padding: 25px;
        cursor: pointer;
        text-align: center;
    }

    .file-upload-area.drag-over {
        background-color: rgba(227, 30, 36, 0.05);
        border-color: var(--theme, var(--theme2));
    }

    .file-upload-message i {
        color: var(--white);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .file-upload-wrapper:hover .file-upload-message i {
        transform: translateY(-5px);
        opacity: 1;
    }

    /* Bilgi Kutuları */
    .quote-info-card {
        background-color: var(--theme);
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
        padding: 30px;
    }

    .info-box {
        background-color: var(--theme-soft);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        height: 100%;
        transition: all 0.4s ease;
        border-bottom: 2px solid transparent;
        padding: 25px 20px;
    }

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border-bottom: 2px solid var(--theme, var(--theme2));
    }

    .info-box i {
        color: var(--white);
        transition: all 0.3s ease;
    }

    .info-box:hover i {
        transform: scale(1.1);
    }

    /* Dosya Listesi */
    .file-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 6px;
        transition: all 0.3s ease;
        padding: 12px 15px;
        margin-bottom: 5px;
        background-color: var(--theme-soft);
    }

    .file-item:hover {
        background-color: var(--theme-soft);
    }

    .file-item .file-name {
        flex-grow: 1;
        margin-right: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 500;
        color: var(--white);
    }

    .file-item .file-size {
        color: #6c757d;
        font-size: 0.875rem;
        margin-right: 15px;
        font-weight: 500;
    }

    .file-item .remove-file {
        color: #dc3545;
        cursor: pointer;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .file-item .remove-file:hover {
        background-color: #ffeeee;
        transform: scale(1.1);
    }

    /* Yükleme Modalı */
    .modal-content {
        border-radius: 8px;
        border: none;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    }

    .progress {
        height: 8px;
        border-radius: 4px;
        background-color: #f0f0f0;
        overflow: hidden;
    }

    .progress-bar {
        background-color: var(--theme, var(--theme2)) !important;
        border-radius: 4px;
    }

    /* Başarı Mesajı */
    .quote-success-message {
        animation: fadeIn 0.5s ease-out;
    }

    .success-icon i {
        color: #28a745;
        animation: scaleIn 0.5s ease-out;
    }

    .quote-details {
        background-color: #f8f9fa;
        border-radius: 6px;
        border-left: 3px solid var(--theme, var(--theme2));
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .quote-details:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }



    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    @keyframes scaleIn {
        from {
            transform: scale(0.8);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Responsive Ayarlamalar */
    @media (max-width: 768px) {

        .quote-form-card,
        .quote-info-card {
            padding: 20px;
        }

        .file-upload-area {
            padding: 20px;
        }
    }

    /* Stepper Stilleri */
    .quote-stepper {
        margin-bottom: 30px;
    }

    .stepper-steps {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        margin-bottom: 30px;
    }

    .stepper-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        flex: 1;
        text-align: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f0f0f0;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 8px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .step-title {
        font-size: 14px;
        color: var(--white);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .stepper-step.active .step-number {
        background-color: var(--theme-red);
        color: white;
        box-shadow: 0 4px 10px rgba(227, 30, 36, 0.2);
    }

    .stepper-step.active .step-title {
        color: var(--white);
        font-weight: 600;
    }

    .stepper-step.completed .step-number {
        background-color: #28a745;
        color: white;
    }

    .stepper-connector {
        flex: 1;
        height: 2px;
        background-color: var(--white);
        position: relative;
        z-index: 0;
        margin: 0 15px;
    }

    .stepper-connector.active {
        background-color: var(--white);
    }

    .stepper-content {
        animation: fadeIn 0.4s ease-out;
    }

    .stepper-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }

    .stepper-buttons .theme-btn {
        min-width: 120px;
    }

    .stepper-buttons .btn-outline-secondary {
        border-color: #ccc;
        color: #666;
        background-color: transparent;
        padding: 12px 25px;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
        min-width: 120px;
    }

    .stepper-buttons .btn-outline-secondary:hover {
        background-color: #f5f5f5;
        border-color: #999;
    }

    /* Form Check Stilleri */
    .form-check-input {
        width: 18px;
        height: 18px;
        margin-top: 0.2em;
    }

    .form-check-input:checked {
        background-color: var(--theme, var(--theme2));
        border-color: var(--theme, var(--theme2));
    }

    .form-check-label {
        padding-left: 5px;
        font-size: 14px;
    }

    .form-check-label a {
        color: var(--white);
        text-decoration: none;
        font-weight: 800;
    }

    .form-check-label a:hover {
        text-decoration: underline;
    }

    /* Responsive Ayarlamalar */
    @media (max-width: 768px) {
        .stepper-steps {
            flex-direction: column;
            align-items: flex-start;
        }

        .stepper-step {
            flex-direction: row;
            width: 100%;
            margin-bottom: 15px;
            text-align: left;
        }

        .step-number {
            margin-bottom: 0;
            margin-right: 10px;
        }

        .stepper-connector {
            width: 2px;
            height: 20px;
            margin: 5px 0 5px 19px;
        }

        .stepper-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .stepper-buttons .btn {
            width: 100%;
        }
    }

    /* MODERN ANASAYFA STİLLERİ - KOYU TEMA */

    /* Modern Hero Section */
    .modern-hero-section {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, var(--theme) 100%);
        overflow: hidden;
        padding-top: 80px;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .animated-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        animation: float 6s ease-in-out infinite;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        top: 60%;
        right: 15%;
        animation-delay: 2s;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 20%;
        animation-delay: 4s;
    }

    @keyframes float {

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

        50% {
            transform: translateY(-20px) rotate(180deg);
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: var(--white);
    }

    .hero-badge {
        display: inline-block;
        margin-bottom: 20px;
    }

    .badge-text {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
    }

    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: var(--white);
    }

    .gradient-text {
        background: linear-gradient(45deg, var(--theme-red), #ff6b6b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 30px;
        opacity: 0.9;
        color: rgba(255, 255, 255, 0.8);
    }

    .mini-features {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .mini-feature {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
    }

    .hero-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .modern-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    .primary-btn {
        background: linear-gradient(45deg, var(--theme-red), #ff6b6b);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(128, 34, 58, 0.3);
    }

    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(128, 34, 58, 0.4);
        color: var(--white);
    }

    .secondary-btn {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .secondary-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        color: var(--white);
    }

    .large-btn {
        padding: 18px 40px;
        font-size: 18px;
    }

    /* Hero Visual */
    .hero-visual {
        position: relative;
        z-index: 2;
    }

    .visual-container {
        position: relative;
        height: 550px;
        margin: 60px 40px;
    }

    .card-1 {
        top: 0;
        left: 0;
        animation-delay: 0s;
    }

    .card-2 {
        top: 0;
        right: 0;
        animation-delay: 2s;
    }

    .card-3 {
        bottom: 0;
        left: 0;
        animation-delay: 4s;
    }

    .card-4 {
        bottom: 0;
        right: 0;
        animation-delay: 6s;
    }

    @keyframes cardFloat {

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

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

    .floating-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        animation: cardFloat 6s ease-in-out infinite;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .floating-card .card-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, var(--theme-red), #ff6b6b);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        margin-bottom: 15px;
    }

    .floating-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--WHİTE);
    }

    .floating-card p {
        font-size: 14px;
        color: var(--white);
        margin: 0;
    }

    .main-visual {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .floating-image {
        width: 400px;
        height: auto;
        animation: mainFloat 8s ease-in-out infinite;
    }

    @keyframes mainFloat {

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

        50% {
            transform: translateY(-30px) rotate(5deg);
        }
    }

    /* Modern Stats Section */
    .modern-stats-section {
        padding: 80px 0;
        background: var(--theme-soft);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }

    .stat-item {
        text-align: center;
        background: var(--theme);
        padding: 40px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        border-color: var(--theme-red);
    }

    .stat-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, var(--theme-red), #ff6b6b);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--white);
        font-size: 30px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 10px;
    }

    .stat-item p {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        margin: 0;
    }

    /* Modern Brands Section */
    .modern-brands-section {
        padding: 80px 0;
        background: var(--theme);
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(45deg, var(--theme-red), #ff6b6b);
        color: var(--white);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.1rem;
        color: var(--white);
        line-height: 1.6;
    }

    .brands-marquee {
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-track {
        display: inline-flex;
        animation: marquee 30s linear infinite;
        gap: 60px;
    }

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

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

    .brand-item {
        flex-shrink: 0;
    }

    .brand-logo {
        height: 120px;
        width: auto;
        object-fit: contain;
        filter: grayscale(100%) brightness(2);
        transition: all 0.3s ease;
    }

    .brand-logo:hover {
        filter: grayscale(0%) brightness(1);
        transform: scale(1.1);
    }

    /* Modern Materials Section */
    .modern-materials-section {
        padding: 120px 0;
        background: var(--theme-soft);
    }

    .materials-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .material-card {
        background: var(--theme);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: all 0.3s ease;
        animation: materialReveal 0.6s ease forwards;
        animation-delay: var(--delay);
        opacity: 0;
        transform: translateY(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .material-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        border-color: var(--theme-red);
    }

    .material-image {
        height: 200px;
        overflow: hidden;
    }

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

    .material-info {
        padding: 20px;
    }

    .material-info h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--white);
    }

    .thickness-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .thickness-tag {
        background: linear-gradient(45deg, var(--theme-red), #ff6b6b);
        color: var(--white);
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 12px;
        font-weight: 500;
    }

    /* Modern Process Section */
    .modern-process-section {
        padding: 120px 0;
        background: linear-gradient(135deg, var(--theme-soft) 0%, var(--theme) 50%, #0a0a0a 100%);
        position: relative;
        overflow: hidden;
    }

    .process-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 60px;
        position: relative;
    }

    .process-step {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        position: relative;
        transition: all 0.4s ease;
        overflow: hidden;
    }

    .process-step:hover {
        border-color: var(--theme-red);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .process-step::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--theme-red), #ff6b6b);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .process-step:hover::before {
        transform: scaleX(1);
    }

    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f0f0f0;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 8px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .step-number-2 {

        position: absolute;
        bottom: 0;
        left: 5px;
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background-color: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .step-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .step-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(var(--theme-red-rgb), 0.2), rgba(255, 255, 255, 0.1));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--theme-red);
        font-size: 32px;
        transition: all 0.3s ease;
    }

    .process-step:hover .step-icon {
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        color: var(--white);
    }

    .step-content {
        padding-right: 10px;
    }

    .step-content h3 {
        color: var(--white);
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        text-align: left;
    }

    .step-content p {
        color: var(--white);
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
        text-align: left;
    }

    /* Process Section Connection Lines */
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--theme-red), transparent);
        z-index: 0;
        opacity: 0.3;
    }

    .process-step {
        z-index: 1;
    }

    /* Responsive Design for Process Section */
    @media (max-width: 768px) {
        .process-timeline {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .process-timeline::before {
            display: none;
        }

        .process-step {
            padding: 30px 20px;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
    }

    /* Modern About Section */
    .modern-about-section {
        padding: 120px 0;
        background: var(--theme-soft);
    }

    .visual-grid {
        position: relative;
        height: 500px;
    }

    .visual-item {
        position: absolute;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .visual-item:hover {
        transform: scale(1.05);
        border-color: var(--theme-red);
    }

    .visual-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .item-1 {
        width: 250px;
        height: 300px;
        top: 0;
        left: 0;
    }

    .item-2 {
        width: 200px;
        height: 250px;
        top: 50px;
        right: 50px;
    }

    .item-3 {
        width: 180px;
        height: 200px;
        bottom: 0;
        right: 0;
    }

    .experience-badge {
        position: absolute;
        bottom: 50px;
        left: 50px;
        background: var(--theme);
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .experience-badge h3 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--theme-red);
        margin-bottom: 10px;
    }

    .experience-badge p {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 600;
        margin: 0;
    }

    .about-features {
        margin-top: 40px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        padding: 20px;
        background: var(--theme);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        border-radius: 15px;
    }

    .feature-item::before {
        content: "";
        width: 95%;
        margin: 0 auto;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        height: 3px;
        transform: scaleX(0);
        background: linear-gradient(90deg, var(--theme-soft), var(--theme-red), var(--theme-soft));
        transition: transform 0.4s;
    }

    .feature-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-color: var(--theme-red);
    }

    .feature-item:hover::before {
        transform: scaleX(1) !important;
    }


    .feature-item .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, var(--theme-red), #ff6b6b);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 20px;
    }

    .feature-content h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--white);
    }

    .feature-content p {
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }

    /* Modern Services Section */
    .modern-services-section {
        padding: 120px 0;
        background: var(--theme);
    }

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

    .service-card {
        background: var(--theme-soft);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-card:hover {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
        border-color: var(--theme-red);
    }

    .service-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

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

    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(19, 20, 24, 0.8), rgba(128, 34, 58, 0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover .service-overlay {
        opacity: 1;
    }

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

    .service-link {
        width: 60px;
        height: 60px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--theme-red);
        text-decoration: none;
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .service-link:hover {
        transform: scale(1.1);
        color: var(--theme-red);
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--white);
    }

    .service-content p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin: 0;
    }

    /* Modern Testimonials Section */
    .modern-testimonials-section {
        padding: 120px 0;
        background: var(--theme-soft);
    }

    .testimonials-slider {
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: var(--theme);
        padding: 40px;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        margin: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rating {
        margin-bottom: 25px;
    }

    .rating i {
        color: #ffd93d;
        font-size: 18px;
        margin: 0 2px;
    }

    .testimonial-content p {
        font-size: 18px;
        font-style: italic;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .author-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid var(--theme-red);
    }

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-info h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 5px;
    }

    .author-info p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin: 0;
    }

    /* Modern CTA Section */
    .modern-cta-section {
        padding: 120px 0;
        background: linear-gradient(135deg, var(--theme) 0%, var(--theme-red) 100%);
        text-align: center;
        color: var(--white);
    }

    .cta-icon {
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 40px;
        animation: pulse 2s infinite;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    .cta-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--white);
    }

    .cta-description {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        color: rgba(255, 255, 255, 0.8);
    }

    .cta-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .cta-title {
            font-size: 2rem;
        }

        .mini-features {
            justify-content: center;
        }

        .hero-actions,
        .cta-actions {
            justify-content: center;
        }

        .modern-btn {
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
        }

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

        .process-timeline {
            grid-template-columns: 1fr;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .materials-showcase {
            grid-template-columns: 1fr;
        }

        .visual-grid {
            height: 300px;
        }

        .item-1 {
            width: 200px;
            height: 250px;
        }

        .item-2 {
            width: 150px;
            height: 200px;
        }

        .item-3 {
            width: 130px;
            height: 150px;
        }
    }

    @media (max-width: 480px) {
        .modern-hero-section {
            padding: 100px 0;
        }

        .hero-title {
            font-size: 2rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .floating-card {
            position: absolute;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        animation: cardFloat 6s ease-in-out infinite;
        border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .floating-card h4 {
            color: var(--white);
        }

        .floating-card p {
            color: rgba(255, 255, 255, 0.8);
        }

        .card-1,
        .card-2,
        .card-3,
        .card-4 {
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            bottom: auto;
        }

        .visual-container {
            height: auto;
        }

        .main-visual {
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            margin-top: 20px;
        }

        .floating-image {
            width: 100%;
            max-width: 300px;
        }
    }

    /* Counter Animation */
    .stat-number {
        animation: countUp 2s ease-out forwards;
    }

    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    /* Enhanced Testimonials Section */
    .enhanced-testimonials-section {
        padding: 120px 0;
        background: linear-gradient(135deg, var(--theme) 0%, var(--theme-soft) 50%, #0f0f0f 100%);
        position: relative;
        overflow: hidden;
    }

    /* Testimonials Marquee */
    .testimonials-marquee-container {
        margin-top: 60px;
        overflow: hidden;
        mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
        -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    }

    .testimonials-marquee {
        overflow: hidden;
        width: 100%;
    }

    .marquee-track {
        display: flex;
        animation: marqueeTestimonials 60s linear infinite;
        gap: 30px;
        width: fit-content;
    }

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

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

    .marquee-track:hover {
        animation-play-state: paused;
    }

    .enhanced-testimonial-card {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(20px);
        border: 1px solid var(--theme-soft);
        padding: 30px;
        position: relative;
        transition: all 0.4s ease;
        overflow: hidden;
        min-width: 400px;
        max-width: 400px;
        flex-shrink: 0;
    }

    .enhanced-testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--theme-soft), var(--theme-red), var(--theme-soft));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

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

    .testimonial-quote {
        margin-bottom: 25px;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: white;
        font-size: 20px;
    }

    .testimonial-quote p {
        color: #e0e0e0;
        font-size: 16px;
        line-height: 1.7;
        font-style: italic;
        margin: 0;
    }

    .testimonial-rating {
        display: flex;
        gap: 5px;
        margin-bottom: 25px;
    }

    .testimonial-rating i {
        color: #ffd700;
        font-size: 18px;
    }

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

    .author-avatar {
        position: relative;
        width: 60px;
        height: 60px;
    }

    .author-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .avatar-ring {
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border: 2px solid var(--theme-red);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    .author-details h4 {
        color: white;
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 5px 0;
    }

    .author-details p {
        color: #888;
        font-size: 14px;
        margin: 0;
    }

    .floating-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 80px;
        flex-wrap: wrap;
    }

    .floating-stat {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 25px 35px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .floating-stat:hover {
        transform: translateY(-5px);
        border-color: var(--theme-red);
    }

    .stat-value {
        font-size: 32px;
        font-weight: 700;
        color: var(--theme-red);
        margin-bottom: 5px;
    }

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

    .testimonials-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }

    .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(var(--theme-red-rgb), 0.1), rgba(255, 255, 255, 0.05));
        animation: float 6s ease-in-out infinite;
    }

    .bg-shape.shape-1 {
        width: 300px;
        height: 300px;
        top: 10%;
        left: -10%;
        animation-delay: 0s;
    }

    .bg-shape.shape-2 {
        width: 200px;
        height: 200px;
        top: 60%;
        right: -5%;
        animation-delay: 2s;
    }

    .bg-shape.shape-3 {
        width: 150px;
        height: 150px;
        bottom: 20%;
        left: 20%;
        animation-delay: 4s;
    }

    /* Enhanced CTA Section */
    .enhanced-cta-section {
        padding: 120px 0;
        background: linear-gradient(135deg, #0a0a0a 0%, var(--theme) 50%, var(--theme-soft) 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-background-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.1;
        pointer-events: none;
    }

    .pattern-grid {
        display: grid;
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(10, 1fr);
        height: 100%;
        gap: 20px;
    }

    .pattern-dot {
        width: 4px;
        height: 4px;
        background: var(--theme-red);
        border-radius: 50%;
        animation: twinkle 3s infinite;
    }

    .pattern-dot:nth-child(odd) {
        animation-delay: 1s;
    }

    .pattern-dot:nth-child(3n) {
        animation-delay: 2s;
    }

    @keyframes twinkle {

        0%,
        100% {
            opacity: 0.3;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.5);
        }
    }

    .cta-content {
        padding-right: 40px;
    }

    .cta-badge {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 25px;
        animation: pulse 2s infinite;
    }

    .cta-heading {
        font-size: 48px;
        font-weight: 700;
        color: white;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .cta-text {
        font-size: 18px;
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 35px;
    }

    .cta-text strong {
        color: var(--theme-red);
        font-weight: 600;
    }

    .cta-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .cta-feature {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #ddd;
        font-size: 16px;
    }

    .cta-feature i {
        color: var(--theme-red);
        font-size: 18px;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .enhanced-btn {
        position: relative;
        padding: 16px 32px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        overflow: hidden;
        z-index: 1;
    }

    .primary-enhanced {
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        color: white;
        box-shadow: 0 8px 25px rgba(var(--theme-red-rgb), 0.3);
    }

    .primary-enhanced:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(var(--theme-red-rgb), 0.4);
    }

    .secondary-enhanced {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
    }

    .secondary-enhanced:hover {
        border-color: var(--theme-red);
        color: white;
        transform: translateY(-3px);
    }

    .btn-glow {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .primary-enhanced:hover .btn-glow {
        left: 100%;
    }

    .btn-icon {
        transition: transform 0.3s ease;
    }

    .enhanced-btn:hover .btn-icon {
        transform: translateX(3px);
    }

    .cta-visual {
        position: relative;
    }

    .visual-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        margin-top:30px;
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .status-indicator {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #4ecdc4;
        font-size: 14px;
        font-weight: 500;
    }

    .status-dot {
        width: 8px;
        height: 8px;
        background: #4ecdc4;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    .card-actions {
        display: flex;
        gap: 8px;
    }

    .action-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
    }

    .action-dot:nth-child(1) {
        background: #ff5f56;
    }

    .action-dot:nth-child(2) {
        background: #ffbd2e;
    }

    .action-dot:nth-child(3) {
        background: #27ca3f;
    }

    .card-content {
        padding: 25px;
        text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 15px;
        width:100%;
        padding: 15px 0;
        margin-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .step-info{
        text-align: left;
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .step-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px;
        margin-left: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        padding: 12px;
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        color: var(--white);
    }

    .process-step.active .step-icon {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: white;
        margin:auto 20px;
    }

    .process-step.processing .step-icon {
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        color: white;
        margin:auto 20px;
    }

    .single-contact-card .icon {
        width: 60px;
        height: 60px;
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
    }

    .single-contact-card .icon i {
        color: var(--theme);
        font-size: 24px;
    }


    .step-info h4 {
        color: white;
        font-size: 16px;
        margin: 0 0 5px 0;
    }

    .step-info p {
        color: #888;
        font-size: 14px;
        margin: 0;
    }

    .step-status {
        margin-left: auto;
        margin-right: 25px;
    }

    .step-status i {
        color: #4ecdc4;
        font-size: 18px;
    }

    .loading-dots {
        display: flex;
        gap: 4px;
    }

    .loading-dots span {
        width: 6px;
        height: 6px;
        background: var(--theme-red);
        border-radius: 50%;
        animation: bounce 1.4s infinite ease-in-out;
    }

    .loading-dots span:nth-child(1) {
        animation-delay: -0.32s;
    }

    .loading-dots span:nth-child(2) {
        animation-delay: -0.16s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: scale(0);
        }

        40% {
            transform: scale(1);
        }
    }

    .price-estimate {
        margin-top: 20px;
        padding: 20px;
        background: linear-gradient(135deg, rgba(var(--theme-red-rgb), 0.1), rgba(255, 255, 255, 0.05));
        border-radius: 12px;
        border: 1px solid rgba(var(--theme-red-rgb), 0.2);
        text-align: center;
    }

    .estimate-label {
        color: var(--white);
        font-size: 14px;
        margin-bottom: 8px;
    }

    .estimate-price {
        color: var(--white);
        font-size: 42px;
        font-weight: 700;
    }

    .floating-element {
        position: absolute;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--theme-red), #ff6b6b);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        animation: float 3s ease-in-out infinite;
    }

    .floating-element.elem-1 {
        top: 20%;
        right: -25px;
        animation-delay: 0s;
    }

    .floating-element.elem-2 {
        bottom: 30%;
        right: -15px;
        animation-delay: 1s;
    }

    .floating-element.elem-3 {
        top: 50%;
        left: -25px;
        animation-delay: 2s;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .cta-heading {
            font-size: 42px;
        }

        .cta-content {
            padding-right: 20px;
        }
    }

    @media (max-width: 768px) {

        .enhanced-testimonials-section,
        .enhanced-cta-section {
            padding: 80px 0;
        }

        .enhanced-testimonial-card {
            min-width: 300px;
            max-width: 300px;
            padding: 20px;
        }

        .testimonials-marquee-container {
            margin-top: 40px;
        }

        .floating-stats {
            gap: 20px;
            margin-top: 60px;
        }

        .floating-stat {
            padding: 20px 25px;
        }

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

        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .enhanced-btn {
            justify-content: center;
        }

        .floating-element {
            display: none;
        }
    }

    @media (max-width: 576px) {
        .enhanced-testimonial-card {
            min-width: 280px;
            max-width: 280px;
            padding: 20px;
        }

        .quote-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .testimonial-quote p {
            font-size: 14px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
        }

        .author-details h4 {
            font-size: 16px;
        }

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

        .cta-text {
            font-size: 16px;
        }

        .floating-stats {
            flex-direction: column;
            align-items: center;
        }

        .floating-stat {
            width: 100%;
            max-width: 200px;
        }
    }

    @media (max-width: 991px) {
        .mean__menu-wrapper ul {
            overflow-x: auto;
            white-space: nowrap;
            display: flex;
            gap: 10px;
        }

        .mean__menu-wrapper ul li {
            flex: 0 0 auto;
        }
    }