    /* === SCROLL BACKGROUND === */
    .scroll-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
        opacity: 0.05;
        background: linear-gradient(135deg, var(--primary-color), transparent, var(--accent-color));
        transition: all 0.3s ease;
        pointer-events: none;
    }



    /* === SCROLL PROGRESS === */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
        z-index: 1000;
        transition: width 0.1s ease;
    }

    /* === FLOATING ELEMENTS === */
    .floating-elements {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        pointer-events: none;
        z-index: 1;
        overflow: hidden;
    }
    
    /* === MOBILE OVERFLOW FIX === */
    @media (max-width: 768px) {
        html, body {
            overflow-x: hidden;
            width: 100%;
        }
        
        .floating-elements {
            display: none;
        }
        
        .scroll-background {
            display: none;
        }
        
        .floating-shape {
            display: none;
        }
        
        .video-hero-section {
            overflow: hidden;
            width: 100%;
        }
        
        .container {
            max-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .row {
            margin-left: 0;
            margin-right: 0;
        }
        
        .col-lg-4, .col-lg-6, .col-md-6, .col-sm-6 {
            padding-left: 15px;
            padding-right: 15px;
        }
    }

    .floating-shape {
        position: absolute;
        background: rgba(197, 154, 109, 0.1);
        border-radius: 50%;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
        top: 10%;
        left: 10%;
        animation: floatUpDown 6s ease-in-out infinite;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
        top: 20%;
        right: 15%;
        animation: floatUpDown 8s ease-in-out infinite reverse;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
        bottom: 30%;
        left: 20%;
        animation: floatLeftRight 10s ease-in-out infinite;
    }

    .shape-4 {
        width: 120px;
        height: 120px;
        bottom: 20%;
        right: 10%;
        animation: floatRotate 12s linear infinite;
    }

    /* Parallax layers removed for cleaner video background */

    /* === GLASSMORPHISM === */
    .glassmorphism-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .glassmorphism-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }

    /* === MAGNETIC BUTTONS === */
    .magnetic-btn {
        position: relative;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        cursor: pointer;
    }

    .magnetic-btn:hover {
        transform: scale(1.05);
    }

    /* === MODERN BUTTONS === */
    .modern-btn {
        position: relative;
        overflow: hidden;
        border-radius: 50px;
        padding: 12px 30px;
        transition: all 0.3s ease;
        background: linear-gradient(135deg, var(--primary-color), #2c4a85);
        border: none;
        color: white;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
    }

    .modern-btn:hover {
        background: linear-gradient(135deg, #2c4a85, var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(26, 43, 72, 0.3);
        color: white;
        text-decoration: none;
    }

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

    .modern-btn:hover::before {
        left: 100%;
    }

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

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

    /* === GRADIENT TEXT === */
    .gradient-text {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 3s ease-in-out infinite;
    }

    /* === STAT ICONS === */
    .stat-icon-container {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1;
    }

    .stat-plus-icon {
        font-size: 1.5rem;
        color: var(--accent-color);
        margin-top: -1rem;
        animation: plusPulse 2s ease-in-out infinite;
    }

    @keyframes plusPulse {
        0%, 100% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.2); opacity: 1; }
    }

 
  

    /* === BLUEPRINT EFFECT === */
    .blueprint-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        background-color: rgba(26, 43, 72, 0.9);
    }

    .expertise-image-container:hover .blueprint-overlay {
        opacity: 1;
    }

    .blueprint-lines {
        width: 100%;
        height: 100%;
    }

    .blueprint-path {
        fill: none;
        stroke: var(--accent-color);
        stroke-width: 2;
        stroke-dasharray: 10;
        animation: blueprintDraw 2s ease-in-out infinite;
    }

    /* Accordion animations removed */

    /* 3D building section removed */

    /* === ANIMATED GRADIENT === */
    .animated-gradient {
        background: linear-gradient(45deg, var(--primary-color), #2c4a85, var(--accent-color), var(--primary-color));
        background-size: 400% 400%;
        animation: gradientMove 5s ease infinite;
    }



    /* === SPLIT TEXT === */
    .split-text {
        display: inline-block;
        word-spacing: 0.5rem;
        letter-spacing: 0.1rem;
    }

    .split-text span {
        margin-right: 0.5rem;
        display: inline-block;
    }

    /* === MORPHING DIVIDER === */
    .morphing-path {
        animation: morphShape 8s ease-in-out infinite;
    }

    /* === KEYFRAME ANIMATIONS === */


    @keyframes floatUpDown {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    @keyframes floatLeftRight {
        0%, 100% { transform: translateX(0px); }
        50% { transform: translateX(20px); }
    }

    @keyframes floatRotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

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

    @keyframes blueprintDraw {
        0% { stroke-dashoffset: 0; }
        100% { stroke-dashoffset: 20; }
    }

    @keyframes gradientMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes morphShape {
        0%, 100% { d: path("M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"); }
        50% { d: path("M200,60c100-20,200-20,300,0c100,20,200,20,300,0c100-20,200-10,300,10V0H0V40C100,50,150,70,200,60Z"); }
    }

    /* === NEW SECTIONS STYLES === */
    
    /* Services Section */
    .services-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .service-card {
        background: var(--white-color);
        padding: 2.5rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border-top: 4px solid var(--accent-color);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(197, 154, 109, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .service-icon {
        font-size: 3.5rem;
        color: var(--accent-color);
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin-top: 1.5rem;
    }

    .service-features li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
    }

    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
    }

    /* Process Section */
    .process-section {
        background: var(--primary-color);
        color: var(--white-color);
        position: relative;
        overflow: hidden;
    }

    /* Process Connection Lines */
    .process-step::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -50px;
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-color), transparent);
        transform: translateY(-50%);
        z-index: 1;
        opacity: 0.5;
        animation: connectionPulse 3s ease-in-out infinite;
    }

    .process-step:last-child::before {
        display: none;
    }

    @keyframes connectionPulse {
        0%, 100% {
            opacity: 0.3;
            transform: translateY(-50%) scaleX(1);
        }
        50% {
            opacity: 0.8;
            transform: translateY(-50%) scaleX(1.1);
        }
    }

    @media (max-width: 991px) {
        .process-step::before {
            display: none;
        }
    }

    .process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        z-index: 1;
    }

    .process-section .container {
        position: relative;
        z-index: 2;
    }

    .process-step {
        position: relative;
        padding: 2rem 1rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-radius: 15px;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.1);
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .process-step:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        border-color: rgba(197, 154, 109, 0.3);
        background: rgba(197, 154, 109, 0.1);
    }

    .step-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 1rem;
        opacity: 0.8;
        transition: all 0.3s ease;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        flex-shrink: 0;
    }

    .step-icon {
        font-size: 2rem;
        color: var(--white-color);
        margin-bottom: 1.5rem;
        background: rgba(255,255,255,0.15);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 2px solid rgba(197, 154, 109, 0.3);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .step-icon::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s ease;
        border-radius: 50%;
    }

    .process-step:hover .step-icon {
        background: var(--accent-color);
        transform: scale(1.15) rotate(360deg);
        border-color: var(--accent-color);
        box-shadow: 0 8px 25px rgba(197, 154, 109, 0.4);
    }

    .process-step:hover .step-icon::after {
        left: 100%;
    }

    .process-step:hover .step-number {
        opacity: 1;
        transform: scale(1.1);
        color: var(--accent-color);
        text-shadow: 0 0 20px rgba(197, 154, 109, 0.5);
    }

    .process-step h5 {
        color: var(--white-color);
        margin-bottom: 1rem;
        font-size: 1.3rem;
        font-weight: 600;
        transition: all 0.3s ease;
        flex-shrink: 0;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.6);
        letter-spacing: 0.2px;
        -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
    }

    .process-step:hover h5 {
        color: var(--accent-color);
        transform: translateY(-5px);
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .process-step p {
        color: rgba(255,255,255,0.9);
        line-height: 1.6;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .process-step:hover p {
        color: rgba(255,255,255,1);
        transform: translateY(-3px);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    /* Mobile Responsive Improvements */
    @media (max-width: 768px) {
        .process-step {
            padding: 1.5rem 0.5rem;
            margin-bottom: 2rem;
            height: 300px;
        }
        
        .step-number {
            font-size: 2.5rem;
        }
        
        .step-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
        
        .process-step h5 {
            font-size: 1.2rem;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.6);
            -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.5);
        }
        
        .process-step p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .process-step {
            height: 280px;
            padding: 1rem 0.5rem;
        }
        
        .step-number {
            font-size: 2rem;
        }
        
        .step-icon {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }
        
        .process-step h5 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.7);
            -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.6);
        }
        
        .process-step p {
            font-size: 0.85rem;
            line-height: 1.4;
        }
    }

    /* Recent Projects */
    .recent-projects-section {
        position: relative;
        overflow: hidden;
    }

    .recent-projects-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 43, 72, 0.02), rgba(197, 154, 109, 0.02));
        z-index: 1;
    }

    .recent-projects-section .container {
        position: relative;
        z-index: 2;
    }

    .modern-project-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: var(--white-color);
        position: relative;
        transform: translateY(0);
        will-change: transform;
        cursor: pointer;
    }

    .modern-project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(197, 154, 109, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
        border-radius: 15px;
    }

    .modern-project-card:hover::before {
        opacity: 1;
    }

    .modern-project-card:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    }

    .project-image {
        position: relative;
        overflow: hidden;
        height: 280px;
        cursor: pointer;
    }

    .project-img-clickable {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        pointer-events: none !important;
        cursor: default !important;
        user-select: none;
    }

    .modern-project-card:hover .project-img-clickable {
        transform: scale(1.15) rotate(1deg);
        filter: brightness(1.1) contrast(1.1);
    }



     .project-overlay {
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
         display: flex;
         align-items: flex-end;
         justify-content: center;
         padding: 2rem;
         opacity: 0;
         transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
         z-index: 5;
     }

     .modern-project-card:hover .project-overlay {
         opacity: 1;
     }

     .project-info {
         text-align: center;
         color: white;
         transform: translateY(30px);
         transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     }

     .modern-project-card:hover .project-info {
         transform: translateY(0);
     }

     .project-info h5 {
         font-size: 1.5rem;
         font-weight: 600;
         margin-bottom: 0.5rem;
         text-shadow: 0 2px 4px rgba(0,0,0,0.5);
     }

     .project-category {
         display: inline-block;
         background: rgba(26, 43, 72, 0.95);
         color: white;
         padding: 0.25rem 0.75rem;
         border-radius: 20px;
         font-size: 0.85rem;
         font-weight: 600;
         margin-bottom: 1rem;
         backdrop-filter: blur(10px);
         border: 1px solid rgba(255,255,255,0.2);
         text-shadow: 0 1px 2px rgba(0,0,0,0.5);
         letter-spacing: 0.3px;
     }

     .project-actions {
         display: flex;
         gap: 0.5rem;
         justify-content: center;
         flex-wrap: wrap;
     }

     .project-actions .btn {
         backdrop-filter: blur(10px);
         border: 2px solid rgba(255,255,255,0.3);
         transition: all 0.3s ease;
         font-size: 0.85rem;
         padding: 0.4rem 0.8rem;
     }

     .project-actions .btn:hover {
         background: rgba(255,255,255,0.2);
         border-color: rgba(255,255,255,0.6);
         transform: translateY(-2px);
     }

     .project-details {
         padding: 1.5rem;
         position: relative;
         z-index: 2;
     }

     .project-details h6 {
         font-size: 1.1rem;
         font-weight: 600;
         color: var(--primary-color);
         margin-bottom: 0.5rem;
         transition: color 0.3s ease;
     }

     .modern-project-card:hover .project-details h6 {
         color: var(--accent-color);
     }

     .project-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

     .project-meta i {
         color: var(--accent-color);
         font-size: 0.8rem;
     }



    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 43, 72, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

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

    .project-info {
        text-align: center;
        color: var(--white-color);
    }

    .project-info h5 {
        color: var(--white-color);
        margin-bottom: 0.5rem;
    }

    .project-category {
        color: var(--accent-color);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .project-details {
        padding: 1.5rem;
    }

    .project-details h6 {
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }

    .project-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

    .project-meta i {
        color: var(--accent-color);
        margin-right: 0.5rem;
    }

    /* Certificates Section */
    .certificates-content h4 {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

    .certificate-item {
        display: flex;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid #e9ecef;
    }

    .certificate-item:last-child {
        border-bottom: none;
    }

    .certificate-item i {
        font-size: 1.5rem;
        margin-right: 1rem;
        width: 30px;
    }





    /* === EXISTING STYLES === */
    .site-section {
        padding: 6rem 0;
        width: 100%;
    }

            .section-title {
            font-weight: 700;
            position: relative;
            padding-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 1px 1px 2px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.2px;
            -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.2);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .section-title.mx-auto::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Left-aligned section title for "Bizi Farklı Kılan Nedir?" */
        .section-title.text-start {
            text-align: left;
        }

        .section-title.text-start::after {
            left: 0;
            transform: none;
        }

        /* Mobile responsive - center the title on mobile devices */
        @media (max-width: 768px) {
            .section-title.text-start {
                text-align: center !important;
            }

            .section-title.text-start::after {
                left: 50% !important;
                transform: translateX(-50%) !important;
            }
        }

        /* Extra specific mobile rule to ensure centering works */
        @media (max-width: 768px) {
            h2.section-title.text-start {
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            h2.section-title.text-start::after {
                left: 50% !important;
                transform: translateX(-50%) !important;
            }
        }

        /* Mobile centering for specific title */
        @media (max-width: 768px) {
            .mobile-center {
                text-align: center !important;
            }

            .mobile-center::after {
                left: 50% !important;
                transform: translateX(-50%) !important;
            }
        }

    .video-hero-section {
        height: 90vh;
        min-height: 700px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        width: 100%;
    }

    .hero-title, .hero-subtitle {
        animation: heroTextReveal 1s ease-out 0.5s both;
    }

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

    #bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 1;
        transform: translateX(-50%) translateY(-50%);
    }

    .video-hero-section .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(26, 43, 72, 0.6);
        z-index: 2;
    }

    .video-hero-section .container {
        position: relative;
        z-index: 3;
    }

    .video-hero-section h1 {
        color: var(--white-color);
        text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    }

    .video-hero-section p {
        color: rgba(255,255,255,0.8);
    }

    .custom-accordion .accordion-item {
        border: none;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.5rem;
        background-color: transparent;
    }

    .custom-accordion .accordion-header {
        margin: 0;
    }

    .custom-accordion .accordion-button {
        font-weight: 600;
        color: var(--primary-color);
        background-color: transparent;
        box-shadow: none;
        padding: 1.5rem 1rem;
    }

        .custom-accordion .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: var(--accent-color);
            box-shadow: none;
        }

        .custom-accordion .accordion-button i {
            color: var(--accent-color);
        }

        .custom-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c59a6d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

    .custom-accordion .accordion-body {
        padding: 0 1rem 1.5rem;
    }

    .shape-divider {
        overflow: hidden;
        position: relative;
        background-color: var(--background-color);
    }

        .shape-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .shape-divider .shape-fill {
            fill: var(--white-color);
        }

    /* === MAGNIFICENT SLIDER === */
    .magnificent-slider-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b48 50%, #2c4a85 100%);
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }

    .magnificent-slider-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(197, 154, 109, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(197, 154, 109, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .magnificent-slider-section h2,
    .magnificent-slider-section p {
        color: var(--white-color);
    }

    .magnificent-slider-container {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }



    .magnificent-carousel {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        touch-action: pan-y pinch-zoom;
    }

    .magnificent-slide {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .slide-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transform: scale(1.1);
        transition: transform 8s ease;
        will-change: transform;
    }

    .carousel-item.active .slide-background {
        transform: scale(1);
    }

    .slide-overlay {
            position: absolute;
        top: 0;
            left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(26, 43, 72, 0.7) 0%, 
            rgba(26, 43, 72, 0.4) 50%, 
            rgba(197, 154, 109, 0.3) 100%);
    }

        .slide-content {
        position: relative;
        z-index: 5;
        padding: 0 60px;
        max-width: 600px;
        transform: translateX(-50px);
            opacity: 0;
        transition: all 0.8s ease 0.1s;
    }

    .carousel-item.active .slide-content {
        transform: translateX(0);
        opacity: 1;
    }

    .slide-number {
        font-size: 6rem;
        font-weight: 900;
        color: rgba(197, 154, 109, 0.3);
        line-height: 0.8;
        margin-bottom: 1rem;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease 0.2s;
    }

    .carousel-item.active .slide-number {
            transform: translateY(0);
            opacity: 1;
        }

    .slide-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1.5rem;
        text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.9), 3px 3px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.7);
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease 0.3s;
        letter-spacing: 0.5px;
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
    }

    .carousel-item.active .slide-title {
        transform: translateY(0);
        opacity: 1;
    }

    .slide-description {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 1);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease 0.4s;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .carousel-item.active .slide-description {
        transform: translateY(0);
        opacity: 1;
    }

    .slide-action {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease 0.5s;
    }

    .carousel-item.active .slide-action {
        transform: translateY(0);
        opacity: 1;
    }

    .slide-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 15px 35px;
        background: rgba(197, 154, 109, 0.9);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .slide-btn:hover {
        background: rgba(197, 154, 109, 1);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(197, 154, 109, 0.4);
        color: white;
        text-decoration: none;
    }

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

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

    .slide-decorations {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        pointer-events: none;
        z-index: 3;
    }

    .decoration {
        position: absolute;
        border-radius: 50%;
        background: rgba(197, 154, 109, 0.1);
        animation: decorationFloat 6s ease-in-out infinite;
    }

    .decoration-1 {
        width: 120px;
        height: 120px;
        top: 10%;
        right: 15%;
        animation-delay: 0s;
    }

    .decoration-2 {
        width: 80px;
        height: 80px;
        top: 60%;
        right: 25%;
        animation-delay: 2s;
    }

    .decoration-3 {
        width: 60px;
        height: 60px;
        top: 30%;
        right: 5%;
        animation-delay: 4s;
    }

    /* Navigation */
    .magnificent-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        background: rgba(197, 154, 109, 0.9);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        backdrop-filter: blur(10px);
    }

    .magnificent-nav-btn:hover {
        background: rgba(197, 154, 109, 1);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 25px rgba(197, 154, 109, 0.4);
    }

    .carousel-control-prev {
        left: 30px;
    }

    .carousel-control-next {
        right: 30px;
    }

    /* Indicators */
    .magnificent-indicators {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 10;
    }

    .magnificent-indicators button {
        position: relative;
        background: none;
        border: none;
        padding: 8px 16px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 20px;
        overflow: hidden;
    }

    .indicator-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(197, 154, 109, 0.3);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        border-radius: 20px;
    }

    .magnificent-indicators button.active .indicator-bg,
    .magnificent-indicators button:hover .indicator-bg {
        transform: scaleX(1);
    }

    .magnificent-indicators button.active {
        color: white;
    }

    .indicator-label {
        position: relative;
        z-index: 2;
    }

    /* Animations */
    @keyframes decorationFloat {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .magnificent-slider-section {
            padding: 4rem 0;
        }
        
        .magnificent-slider-container {
            padding: 0 15px;
        }
        
        .magnificent-slide {
            height: 450px;
        }
        
        .slide-content {
            padding: 0 25px;
            max-width: 100%;
            text-align: center;
        }
        
        .slide-number {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
        }
        
        .slide-title {
            font-size: 2.2rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8);
            letter-spacing: 0.2px;
            -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
            margin-bottom: 1rem;
        }
        
        .slide-description {
            font-size: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
            margin-bottom: 2rem;
            line-height: 1.5;
        }
        
        .slide-btn {
            padding: 12px 28px;
            font-size: 1rem;
        }
        
        .magnificent-nav-btn {
            width: 45px;
            height: 45px;
            font-size: 0.9rem;
        }
        
        .carousel-control-prev {
            left: 10px;
        }
        
        .carousel-control-next {
            right: 10px;
        }
        
        .magnificent-indicators {
            bottom: 15px;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 90%;
            margin: 0 auto;
        }
        
        .magnificent-indicators button {
            padding: 4px 8px;
            font-size: 0.7rem;
            min-width: auto;
            flex-shrink: 0;
        }
        
        .indicator-label {
            font-size: 0.65rem;
            white-space: nowrap;
        }
        
        .slide-decorations {
            display: none;
        }
    }
    
    @media (max-width: 576px) {
        .magnificent-slider-section {
            padding: 3rem 0;
        }
        
        .magnificent-slide {
            height: 400px;
        }
        
        .slide-content {
            padding: 0 20px;
        }
        
        .slide-number {
            font-size: 3rem;
        }
        
        .slide-title {
            font-size: 1.8rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
            -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.4);
        }
        
        .slide-description {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .slide-btn {
            padding: 10px 24px;
            font-size: 0.9rem;
        }
        
        .magnificent-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 0.8rem;
        }
        
        .carousel-control-prev {
            left: 8px;
        }
        
        .carousel-control-next {
            right: 8px;
        }
        
        .magnificent-indicators {
            bottom: 12px;
            gap: 2px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 5px;
        }
        
        .magnificent-indicators button {
            padding: 1px 3px;
            font-size: 0.5rem;
            min-width: auto;
            flex-shrink: 0;
            max-width: 60px;
        }
        
        .indicator-label {
            font-size: 0.45rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
    }
    
    @media (max-width: 480px) {
        .magnificent-slide {
            height: 350px;
        }
        
        .slide-content {
            padding: 0 15px;
        }
        
        .slide-number {
            font-size: 2.5rem;
        }
        
        .slide-title {
            font-size: 1.5rem;
        }
        
        .slide-description {
            font-size: 0.85rem;
            margin-bottom: 1.2rem;
        }
        
        .slide-btn {
            padding: 8px 20px;
            font-size: 0.85rem;
        }
        
        .magnificent-nav-btn {
            width: 35px;
            height: 35px;
            font-size: 0.7rem;
        }
        
        .magnificent-indicators {
            bottom: 10px;
            gap: 1px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 3px;
        }
        
        .magnificent-indicators button {
            padding: 1px 2px;
            font-size: 0.45rem;
            min-width: auto;
            flex-shrink: 0;
            max-width: 55px;
        }
        
        .indicator-label {
            font-size: 0.4rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
    }
    
    /* Landscape orientation for mobile */
    @media (max-width: 768px) and (orientation: landscape) {
        .magnificent-slide {
            height: 300px;
        }
        
        .slide-content {
            padding: 0 20px;
        }
        
        .slide-number {
            font-size: 2.5rem;
        }
        
        .slide-title {
            font-size: 1.8rem;
        }
        
        .slide-description {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .slide-btn {
            padding: 8px 20px;
            font-size: 0.85rem;
        }
    }
    
    /* High DPI displays optimization */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .slide-background {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }
    
    /* Extra small screens */
    @media (max-width: 360px) {
        .magnificent-indicators {
            bottom: 8px;
            gap: 1px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 2px;
        }
        
        .magnificent-indicators button {
            padding: 1px 2px;
            font-size: 0.35rem;
            min-width: auto;
            flex-shrink: 0;
            max-width: 50px;
        }
        
        .indicator-label {
            font-size: 0.3rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
        
        .slide-content {
            padding: 0 10px;
        }
        
        .slide-title {
            font-size: 1.3rem;
        }
        
        .slide-description {
            font-size: 0.8rem;
        }
    }
    
    /* Ultra small screens */
    @media (max-width: 320px) {
        .magnificent-indicators {
            bottom: 5px;
            gap: 0px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 1px;
        }
        
        .magnificent-indicators button {
            padding: 0px 1px;
            font-size: 0.25rem;
            min-width: auto;
            flex-shrink: 0;
            max-width: 40px;
        }
        
        .indicator-label {
            font-size: 0.2rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
    }


    /* YENİ EKLENEN BÖLÜMLERİN STİLLERİ */
    .stats-section {
        padding: 4rem 0;
        background-color: var(--background-color); /* Açık renk arka plan */
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .stat-item h3 {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--primary-color); /* Ana renk */
    }

    .stat-item p {
        font-size: 1.1rem;
        color: var(--text-color); /* Normal metin rengi */
        margin-bottom: 0;
    }

    /* === CUSTOM CAROUSEL CONTROLS === */
    .custom-carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 10;
    }

    .custom-carousel-btn:hover {
        background-color: var(--accent-color);
        transform: translateY(-50%) scale(1.1);
    }

    .custom-carousel-btn i {
            color: var(--primary-color);
        font-size: 1.2rem;
    }

    .custom-carousel-btn:hover i {
        color: var(--white-color);
    }

    .carousel-control-prev.custom-carousel-btn {
        left: -25px;
    }

    .carousel-control-next.custom-carousel-btn {
        right: -25px;
    }

    @media (max-width: 768px) {
        .carousel-control-prev.custom-carousel-btn {
            left: 10px;
        }

        .carousel-control-next.custom-carousel-btn {
            right: 10px;
        }
    }



    /* === SIMPLE CTA SECTION === */
    .simple-cta-section {
        background: linear-gradient(135deg, var(--primary-color), #2c4a85);
        padding: 6rem 0;
        color: white !important;
    }

    .simple-cta-section .cta-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white !important;
    }

    .simple-cta-section .cta-description {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.85) !important;
        margin-bottom: 3rem;
        line-height: 1.6;
    }

    /* Simple Features */
    .simple-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 1.5rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
    }

    .feature-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .feature-item span {
        color: rgb(8, 8, 8) !important;
        font-weight: 500;
        font-size: 0.95rem;
    }

    /* CTA Button */
    .cta-buttons {
        display: flex;
        justify-content: center;
    }

    .btn-contact {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.2rem 2.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        background: var(--accent-color);
        color: var(--primary-color) !important;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .btn-contact:hover {
        background: #d4a574;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(197, 154, 109, 0.4);
        color: var(--primary-color) !important;
        text-decoration: none;
    }

    .btn-contact i {
        font-size: 1.2rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .simple-cta-section {
            padding: 4rem 0;
        }

        .simple-cta-section .cta-title {
            font-size: 2.2rem;
        }

        .simple-cta-section .cta-description {
            font-size: 1.1rem;
        }

        .simple-features {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .feature-item {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }

        .btn-contact {
            width: 100%;
            max-width: 280px;
            justify-content: center;
            padding: 1.1rem 2rem;
        }
    }

    @media (max-width: 576px) {
        .simple-cta-section .cta-title {
            font-size: 1.8rem;
        }

        .btn-contact {
            padding: 1rem 1.8rem;
            font-size: 1rem;
        }
    }




    /* Gradient Mesh Background */
    .gradient-mesh {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }

    .mesh-layer {
        position: absolute;
        width: 100%;
        height: 100%;
        background: conic-gradient(from 0deg at 50% 50%, 
            rgba(197, 154, 109, 0.3) 0deg, 
            transparent 90deg, 
            rgba(26, 43, 72, 0.2) 180deg, 
            transparent 270deg, 
            rgba(197, 154, 109, 0.3) 360deg);
            border-radius: 50%;
        filter: blur(40px);
        animation: meshRotate 20s linear infinite;
    }

    .layer-1 {
        width: 80%;
        height: 80%;
        top: 10%;
        left: 10%;
        animation-duration: 25s;
    }

    .layer-2 {
        width: 60%;
        height: 60%;
        top: 20%;
        left: 20%;
        animation-duration: 30s;
        animation-direction: reverse;
    }

    .layer-3 {
        width: 40%;
        height: 40%;
        top: 30%;
        left: 30%;
        animation-duration: 35s;
    }

    /* Particle System */
    .particle-system {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
        border-radius: 50%;
        animation: particleFloat 8s ease-in-out infinite;
    }

    .particle-1 { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 12s; }
    .particle-2 { top: 20%; right: 20%; animation-delay: 1.5s; animation-duration: 10s; }
    .particle-3 { top: 60%; left: 10%; animation-delay: 3s; animation-duration: 14s; }
    .particle-4 { bottom: 30%; right: 15%; animation-delay: 4.5s; animation-duration: 11s; }
    .particle-5 { top: 40%; left: 60%; animation-delay: 6s; animation-duration: 13s; }
    .particle-6 { bottom: 20%; left: 40%; animation-delay: 7.5s; animation-duration: 9s; }
    .particle-7 { top: 80%; right: 40%; animation-delay: 9s; animation-duration: 15s; }
    .particle-8 { bottom: 10%; right: 60%; animation-delay: 10.5s; animation-duration: 8s; }

    /* Flowing SVG Elements */
    .flowing-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .flow-element {
        position: absolute;
        width: 100px;
        height: 100px;
        opacity: 0.4;
        animation: flowMove 15s ease-in-out infinite;
    }

    .flow-1 {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .flow-2 {
        bottom: 20%;
        right: 15%;
        animation-delay: 7.5s;
    }

    /* Glass Orbs */
    .glass-orbs {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .glass-orb {
        position: absolute;
        border-radius: 50%;
        background: 
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
            linear-gradient(45deg, rgba(197, 154, 109, 0.1) 0%, rgba(26, 43, 72, 0.1) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: orbFloat 12s ease-in-out infinite;
    }

    .orb-1 {
        width: 150px;
        height: 150px;
        top: 15%;
        right: 20%;
        animation-delay: 0s;
    }

    .orb-2 {
        width: 100px;
        height: 100px;
        bottom: 25%;
        left: 15%;
        animation-delay: 4s;
    }

    .orb-3 {
        width: 80px;
        height: 80px;
        top: 60%;
        right: 10%;
        animation-delay: 8s;
    }

    /* Mouse Follower */
    .mouse-follower {
        position: fixed;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(197, 154, 109, 0.1) 0%, transparent 70%);
        pointer-events: none;
        z-index: 1;
        transition: transform 0.3s ease;
        mix-blend-mode: screen;
    }

    .container {
        position: relative;
        z-index: 2;
    }

    /* Premium Content */
    .premium-content {
        padding: 3rem 0;
    }

    /* Ultra Badge */
    .ultra-badge {
        position: relative;
        display: inline-block;
        margin-bottom: 3rem;
    }

    .badge-glow {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
        border-radius: 50px;
        filter: blur(15px);
        opacity: 0.6;
        animation: badgeGlow 3s ease-in-out infinite;
    }

    .badge-content {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(197, 154, 109, 0.3);
        border-radius: 50px;
        padding: 1rem 2rem;
        color: var(--accent-color);
        font-weight: 700;
        font-size: 1rem;
        overflow: hidden;
    }

    .badge-shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 2s ease-in-out infinite;
    }

    /* Ultra Title */
    .ultra-title {
        font-size: 4.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 3rem;
        position: relative;
    }

    .title-line {
        display: block;
        position: relative;
    }

    .line-1 {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
    }

    .line-2 {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .liquid-text {
        background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 50%, var(--accent-color) 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: liquidFlow 3s ease-in-out infinite;
        filter: drop-shadow(0 0 20px rgba(197, 154, 109, 0.5));
    }

    .holographic-text {
        color: white;
        text-shadow: 
            0 0 10px var(--accent-color),
            0 0 20px var(--accent-color),
            0 0 30px var(--accent-color);
        animation: holographicFlicker 2s ease-in-out infinite;
    }

    .title-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--accent-color), transparent);
        filter: blur(50px);
        opacity: 0.3;
        z-index: -1;
    }

    /* Ultra Description */
    .ultra-description {
        position: relative;
        margin-bottom: 3rem;
    }

    .description-text {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        max-width: 550px;
        position: relative;
        z-index: 2;
    }

    .description-accent {
        position: absolute;
        top: 0;
        left: -20px;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--accent-color), transparent);
        border-radius: 2px;
    }

    /* Premium Features */
    .premium-features {
        margin-bottom: 4rem;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
        position: relative;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(197, 154, 109, 0.3);
        transform: translateX(10px);
    }

    .feature-icon {
        position: relative;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        background: linear-gradient(135deg, var(--accent-color), #ffd700);
        color: var(--primary-color);
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .icon-glow {
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, var(--accent-color), #ffd700);
        border-radius: 20px;
        filter: blur(10px);
        opacity: 0.6;
        z-index: -1;
    }

    .feature-content h6 {
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .feature-content p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin: 0;
    }

    .feature-trail {
        position: absolute;
        top: 50%;
        right: -20px;
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, var(--accent-color), transparent);
        transform: translateY(-50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-item:hover .feature-trail {
        opacity: 1;
    }

    /* Ultra Actions */
    .ultra-actions {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Ultra Primary Button */
    .ultra-btn-primary {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 0;
        text-decoration: none;
        border-radius: 50px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .btn-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .btn-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 50%, var(--accent-color) 100%);
        background-size: 200% 200%;
        animation: gradientShift 3s ease-in-out infinite;
    }

    .btn-glow {
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--accent-color), #ffd700);
        filter: blur(15px);
        opacity: 0.7;
        animation: glowPulse 2s ease-in-out infinite;
    }

    .btn-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        z-index: 2;
    }

    .btn-particle {
        position: absolute;
        width: 3px;
        height: 3px;
        background: white;
        border-radius: 50%;
        animation: btnParticle 2s ease-in-out infinite;
    }

    .btn-particle:nth-child(1) {
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .btn-particle:nth-child(2) {
        top: 60%;
        right: 30%;
        animation-delay: 0.7s;
    }

    .btn-particle:nth-child(3) {
        bottom: 20%;
        left: 60%;
        animation-delay: 1.4s;
    }

    .btn-content {
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem 2.5rem;
        color: var(--primary-color);
        font-weight: 800;
        font-size: 1.1rem;
    }

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

    .ultra-btn-primary:hover {
        transform: translateY(-5px) scale(1.02);
        text-decoration: none;
    }

    .ultra-btn-primary:hover .btn-content {
        color: var(--primary-color);
    }

    .ultra-btn-primary:hover .btn-icon {
        transform: translateX(8px) rotate(15deg);
    }

    .btn-ripple {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        transition: all 0.6s ease;
    }

    .ultra-btn-primary:active .btn-ripple {
        width: 200px;
        height: 200px;
    }

    /* Ultra Secondary Button */
    .ultra-btn-secondary {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem 2rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        color: white;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .btn-glass {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        z-index: 1;
    }

    .glass-shine {
        position: absolute;
        top: 10%;
        left: 10%;
        right: 60%;
        bottom: 60%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
        border-radius: 50px 0 50px 0;
        animation: glassShine 3s ease-in-out infinite;
    }

    .ultra-btn-secondary .btn-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .btn-waves {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .wave {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 2px solid var(--accent-color);
        border-radius: 50%;
        opacity: 0;
        animation: waveExpand 2s ease-out infinite;
    }

    .wave-1 { animation-delay: 0s; }
    .wave-2 { animation-delay: 0.7s; }
    .wave-3 { animation-delay: 1.4s; }

    .ultra-btn-secondary:hover {
        transform: translateY(-3px);
        text-decoration: none;
        color: var(--accent-color);
    }

    .ultra-btn-secondary:hover .btn-glass {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent-color);
    }

    /* Ultra Visual */
    .ultra-visual {
        position: relative;
        height: 700px;
        perspective: 1000px;
    }

    .visual-scene {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
    }

    /* Holographic Building */
    .holographic-building {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 350px;
        height: 500px;
    }

    .building-container {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        animation: buildingRotate 20s linear infinite;
    }

    /* Building Platform */
    .building-platform {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        height: 50px;
        background: linear-gradient(45deg, rgba(197, 154, 109, 0.3), rgba(26, 43, 72, 0.3));
        border-radius: 25px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(197, 154, 109, 0.4);
        animation: platformGlow 3s ease-in-out infinite;
    }

    .platform-glow {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(45deg, var(--accent-color), transparent);
        border-radius: 35px;
        filter: blur(20px);
        opacity: 0.6;
    }

    .platform-grid {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            var(--accent-color) 0px,
            var(--accent-color) 10px,
            transparent 10px,
            transparent 20px
        );
        opacity: 0.7;
        animation: gridScan 2s linear infinite;
    }

    /* Building Layers */
    .building-layer {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 80px;
        background: linear-gradient(135deg, 
            rgba(26, 43, 72, 0.4) 0%, 
            rgba(197, 154, 109, 0.1) 50%, 
            rgba(26, 43, 72, 0.4) 100%);
        border: 2px solid rgba(197, 154, 109, 0.3);
        border-radius: 10px;
        backdrop-filter: blur(15px);
        animation: layerBuild 1s ease-out both;
    }

    .layer-1 {
        bottom: 50px;
        animation-delay: 0.5s;
    }

    .layer-2 {
        bottom: 130px;
        width: 180px;
        animation-delay: 1s;
    }

    .layer-3 {
        bottom: 210px;
        width: 160px;
        animation-delay: 1.5s;
    }

    .layer-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 60%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(197, 154, 109, 0.3) 50%, 
            transparent 100%);
        border-radius: 5px;
    }

    .layer-glow {
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, var(--accent-color), transparent);
        border-radius: 15px;
        filter: blur(10px);
        opacity: 0.4;
        z-index: -1;
    }

    .layer-scan {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(197, 154, 109, 0.6) 50%, 
            transparent 100%);
        animation: layerScan 3s ease-in-out infinite;
    }

    .layer-1 .layer-scan { animation-delay: 0s; }
    .layer-2 .layer-scan { animation-delay: 1s; }
    .layer-3 .layer-scan { animation-delay: 2s; }

    /* Building Crown */
    .building-crown {
        position: absolute;
        bottom: 290px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 80px solid transparent;
        border-right: 80px solid transparent;
        border-bottom: 60px solid rgba(197, 154, 109, 0.6);
        filter: drop-shadow(0 0 20px var(--accent-color));
        animation: crownGlow 2s ease-in-out infinite;
    }

    .crown-beam {
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100px;
        background: linear-gradient(to top, var(--accent-color), transparent);
        animation: beamPulse 1.5s ease-in-out infinite;
    }

    /* Statistics Pods */
    .stats-pods {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .stats-pod {
        position: absolute;
        width: 220px;
        padding: 1.5rem;
        backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: auto;
        cursor: pointer;
        transition: all 0.3s ease;
        animation: podFloat 6s ease-in-out infinite;
    }

    .pod-glass {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(197, 154, 109, 0.05) 50%, 
            rgba(255, 255, 255, 0.1) 100%);
        border-radius: 20px;
        z-index: 1;
    }

    .pod-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(197, 154, 109, 0.1) 0%, 
            transparent 50%, 
            rgba(26, 43, 72, 0.1) 100%);
        border-radius: 20px;
        z-index: 0;
    }

    .pod-shine {
        position: absolute;
        top: 10%;
        left: 10%;
        right: 70%;
        bottom: 70%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
        border-radius: 20px 0 20px 0;
        z-index: 2;
    }

    .pod-content {
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .pod-icon {
        position: relative;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        background: linear-gradient(135deg, var(--accent-color), #ffd700);
            color: var(--primary-color);
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .icon-orbit {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .orbit-ring {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid var(--accent-color);
        border-radius: 50%;
        border-top-color: transparent;
        animation: orbitSpin 3s linear infinite;
    }

    .pod-data {
        flex: 1;
    }

    .pod-data .stat-number {
        font-size: 2.5rem;
        font-weight: 900;
        color: white;
        line-height: 1;
        text-shadow: 0 0 20px var(--accent-color);
    }

    .pod-data .stat-label {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 0.5rem;
        font-weight: 600;
    }

    .pod-trail {
        position: absolute;
        top: 0;
        left: 100%;
        width: 50px;
        height: 100%;
        background: linear-gradient(to right, var(--accent-color), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .stats-pod:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 25px 50px rgba(197, 154, 109, 0.3);
    }

    .stats-pod:hover .pod-trail {
        opacity: 0.6;
    }

    .pod-1 {
        top: 10%;
        left: -100px;
        animation-delay: 0s;
    }

    .pod-2 {
        top: 50%;
        right: -100px;
        animation-delay: 2s;
    }

    .pod-3 {
        bottom: 10%;
        left: -80px;
        animation-delay: 4s;
    }

    /* Geometric Elements */
    .geometric-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .geo-element {
        position: absolute;
        width: 60px;
        height: 60px;
        animation: geoFloat 8s ease-in-out infinite;
    }

    .geo-shape {
        position: relative;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--accent-color), transparent);
        border: 2px solid rgba(197, 154, 109, 0.4);
        backdrop-filter: blur(10px);
        animation: geoRotate 6s linear infinite;
    }

    .geo-glow {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: var(--accent-color);
        filter: blur(15px);
        opacity: 0.3;
        z-index: -1;
    }

    .geo-1 {
        top: 20%;
        right: 10%;
        animation-delay: 0s;
    }

    .geo-1 .geo-shape {
        border-radius: 15px;
    }

    .geo-2 {
        bottom: 30%;
        left: 5%;
        animation-delay: 2.7s;
    }

    .geo-2 .geo-shape {
        border-radius: 50%;
        width: 80px;
        height: 80px;
    }

    .geo-3 {
        top: 60%;
        right: 5%;
        animation-delay: 5.4s;
    }

    .geo-3 .geo-shape {
        transform: rotate(45deg);
        border-radius: 8px;
    }

    /* Ultra Effects */
    .ultra-effects {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .scanline-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--accent-color) 50%, 
            transparent 100%);
        animation: scanline 4s linear infinite;
        opacity: 0.6;
    }

    .ambient-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, 
            rgba(197, 154, 109, 0.1) 0%, 
            transparent 70%);
        border-radius: 50%;
        animation: ambientPulse 6s ease-in-out infinite;
    }

    /* ULTRA ANIMATIONS */
    @keyframes meshRotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes particleFloat {
        0%, 100% { 
            transform: translateY(0px) translateX(0px); 
            opacity: 0.3;
            filter: blur(1px);
        }
        25% { 
            transform: translateY(-30px) translateX(20px); 
            opacity: 0.8;
            filter: blur(0px);
        }
        50% { 
            transform: translateY(-60px) translateX(-10px); 
            opacity: 1;
            filter: blur(0px);
        }
        75% { 
            transform: translateY(-30px) translateX(-30px); 
            opacity: 0.6;
            filter: blur(1px);
        }
    }

    @keyframes flowMove {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
            opacity: 0.3;
        }
        50% { 
            transform: translateY(-50px) rotate(180deg); 
            opacity: 0.8;
        }
    }

    @keyframes orbFloat {
        0%, 100% { 
            transform: translateY(0px) translateX(0px); 
        }
        33% { 
            transform: translateY(-20px) translateX(15px); 
        }
        66% { 
            transform: translateY(-10px) translateX(-15px); 
        }
    }

    @keyframes badgeGlow {
        0%, 100% { opacity: 0.4; filter: blur(15px); }
        50% { opacity: 0.8; filter: blur(20px); }
    }

    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }

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

    @keyframes holographicFlicker {
        0%, 100% { 
            opacity: 1; 
            text-shadow: 
                0 0 10px var(--accent-color),
                0 0 20px var(--accent-color),
                0 0 30px var(--accent-color);
        }
        50% { 
            opacity: 0.8; 
            text-shadow: 
                0 0 5px var(--accent-color),
                0 0 10px var(--accent-color),
                0 0 15px var(--accent-color);
        }
    }

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

    @keyframes glowPulse {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 0.9; }
    }

    @keyframes btnParticle {
        0%, 100% { 
            opacity: 0; 
            transform: translateY(0px); 
        }
        50% { 
            opacity: 1; 
            transform: translateY(-10px); 
        }
    }

    @keyframes glassShine {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.8; }
    }

    @keyframes waveExpand {
        0% { 
            width: 0; 
            height: 0; 
            opacity: 1; 
        }
        100% { 
            width: 100px; 
            height: 100px; 
            opacity: 0; 
        }
    }

    @keyframes buildingRotate {
        0% { transform: translate(-50%, -50%) rotateY(0deg); }
        100% { transform: translate(-50%, -50%) rotateY(360deg); }
    }

    @keyframes platformGlow {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(197, 154, 109, 0.3); 
        }
        50% { 
            box-shadow: 0 0 40px rgba(197, 154, 109, 0.6); 
        }
    }

    @keyframes gridScan {
        0% { transform: translate(-50%, -50%) scaleX(0); }
        50% { transform: translate(-50%, -50%) scaleX(1); }
        100% { transform: translate(-50%, -50%) scaleX(0); }
    }

    @keyframes layerBuild {
        0% { 
            opacity: 0; 
            transform: translateX(-50%) translateY(50px); 
        }
        100% { 
            opacity: 1; 
            transform: translateX(-50%) translateY(0); 
        }
    }

    @keyframes layerScan {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    @keyframes crownGlow {
        0%, 100% { 
            filter: drop-shadow(0 0 20px var(--accent-color)); 
        }
        50% { 
            filter: drop-shadow(0 0 40px var(--accent-color)); 
        }
    }

    @keyframes beamPulse {
        0%, 100% { 
            opacity: 0.6; 
            height: 100px; 
        }
        50% { 
            opacity: 1; 
            height: 150px; 
        }
    }

    @keyframes podFloat {
        0%, 100% { 
            transform: translateY(0px); 
        }
        50% { 
            transform: translateY(-15px); 
        }
    }

    @keyframes orbitSpin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes geoFloat {
        0%, 100% { 
            transform: translateY(0px) translateX(0px); 
        }
        33% { 
            transform: translateY(-20px) translateX(10px); 
        }
        66% { 
            transform: translateY(-10px) translateX(-10px); 
        }
    }

    @keyframes geoRotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes scanline {
        0% { top: 0; opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }

    @keyframes ambientPulse {
        0%, 100% { 
            opacity: 0.3; 
            transform: translate(-50%, -50%) scale(1); 
        }
        50% { 
            opacity: 0.6; 
            transform: translate(-50%, -50%) scale(1.1); 
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .ultra-premium-cta-section {
            padding: 6rem 0;
            min-height: auto;
        }

        .ultra-title {
            font-size: 3rem;
        }

        .ultra-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .ultra-btn-primary,
        .ultra-btn-secondary {
            text-align: center;
            justify-content: center;
        }

        .ultra-visual {
            height: 500px;
            margin-top: 3rem;
        }

        .holographic-building {
            width: 280px;
            height: 400px;
        }

        .stats-pod {
            position: relative;
            margin: 1rem 0;
            width: 100%;
        }

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

        .geometric-elements {
            display: none;
        }

        .mouse-follower {
            display: none;
        }
    }
        /* YENİ EKLENEN ANİMASYON STİLLERİ */

/* Video hızı animasyonu için pürüzsüz geçiş */
#bg-video {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Dinamik kelime vurgulama stili */
.highlight-word {
    color: var(--accent-color);
    font-weight: 600;
    animation: highlight-pulse 2s infinite ease-in-out;
    display: inline-block; /* Animasyonun düzgün çalışması için */
}

  @keyframes highlight-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}



    /* === REDUCE MOTION SUPPORT === */
    @media (prefers-reduced-motion: reduce) {
        .reduce-motion * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* === MOBILE RESPONSIVE === */
    @media (max-width: 768px) {
        .floating-elements {
            display: none;
        }

        .expertise-image-container {
            height: 350px;
            max-height: 350px;
            margin-bottom: 2rem;
        }

        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            width: 90%;
            margin: 0 auto;
        }

        .interactive-timeline::before {
            left: 20px;
        }

        .timeline-marker {
            left: 20px;
        }

        /* Mobile spacing adjustments for split-text */
        .split-text {
            word-spacing: 0.3rem;
            letter-spacing: 0.05rem;
        }

        .split-text span {
            margin-right: 0.3rem;
        }

        .horizontal-scroll-content {
            gap: 1rem;
        }

        .project-showcase-card {
            flex: 0 0 280px;
            height: 400px;
        }

        .glassmorphism-card {
            padding: 1rem;
        }

        .section-title {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0.5px 0.5px 1px rgba(0, 0, 0, 0.6);
            letter-spacing: 0.1px;
            -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        
        .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Hero section mobile improvements */
        .video-hero-section h1 {
            font-size: 2rem !important;
            line-height: 1.2;
        }

        .video-hero-section p {
            font-size: 1rem !important;
            line-height: 1.4;
        }

        /* Stats section mobile improvements */
        .stats-section .col-md-4 {
            margin-bottom: 1.5rem;
        }

        .stat-item {
            padding: 1.5rem 1rem !important;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        /* Services section mobile improvements */
        .service-card {
            margin-bottom: 2rem;
            padding: 1.5rem;
        }

        .service-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        /* Process section mobile improvements */
        .process-step {
            margin-bottom: 2rem;
            padding: 1.5rem;
        }

        .process-step h5 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        /* Project cards mobile improvements */
        .modern-project-card {
            margin-bottom: 2rem;
        }

        .project-info h5 {
            font-size: 1.1rem;
        }

        .project-actions .btn {
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
        }

        /* Magnificent slider mobile improvements */
        .magnificent-slide {
            min-height: 400px;
        }

        .slide-content {
            padding: 2rem 1rem;
        }

        .slide-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .slide-description {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .magnificent-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .magnificent-indicators {
            bottom: 1rem;
        }

        .magnificent-indicators button {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }

        /* CTA section mobile improvements */
        .simple-cta-section {
            padding: 3rem 1rem;
        }

        .simple-cta-section .cta-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .simple-cta-section .cta-description {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .simple-features {
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            padding: 1rem;
            font-size: 0.9rem;
        }

        .btn-contact {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
    }

    /* Extra small devices */
    @media (max-width: 576px) {
        .video-hero-section h1 {
            font-size: 1.5rem !important;
        }

        .video-hero-section p {
            font-size: 0.9rem !important;
        }

        .stat-number {
            font-size: 2rem;
        }

        .service-card {
            padding: 1rem;
        }

        .service-card h4 {
            font-size: 1.1rem;
        }

        .process-step {
            padding: 1rem;
        }

        .process-step h5 {
            font-size: 1rem;
        }

        .slide-title {
            font-size: 1.5rem;
        }

        .slide-description {
            font-size: 0.9rem;
        }

        .simple-cta-section .cta-title {
            font-size: 1.5rem;
        }

        .simple-cta-section .cta-description {
            font-size: 0.9rem;
        }

        .btn-contact {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }

        .project-info h5 {
            font-size: 1rem;
        }

        .project-actions .btn {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
        }
    }

    /* Tablet improvements */
    @media (min-width: 769px) and (max-width: 1024px) {
        .video-hero-section h1 {
            font-size: 2.5rem !important;
        }

        .video-hero-section p {
            font-size: 1.1rem !important;
        }

        .service-card {
            padding: 2rem;
        }

        .process-step {
            padding: 2rem;
        }

        .slide-title {
            font-size: 2.2rem;
        }

        .slide-description {
            font-size: 1.1rem;
        }

        .simple-cta-section .cta-title {
            font-size: 2.2rem;
        }

        .simple-cta-section .cta-description {
            font-size: 1.1rem;
        }
    }

    @media (prefers-color-scheme: dark) {
        .glassmorphism-card {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
    }
    @media (prefers-contrast: high) {
        .glassmorphism-card {
            border: 2px solid var(--accent-color);
            background: rgba(255, 255, 255, 0.9);
        }
    }

    @media print {
        .page-loader,
        .floating-elements,
        .scroll-progress,
        .scroll-background {
            display: none !important;
        }

        .video-hero-section video {
            display: none;
        }
    }
    
