

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Capriola&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* ========================================
   CHECKOUT PROGRESS BAR STYLES
======================================== */

/* Checkout Progress Container */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 3rem 0;
    padding: 1rem 0;
    position: relative;
}

/* Individual Checkout Steps */
.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Step Icon Styling */
.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border: 3px solid #dee2e6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-icon i {
    color: #6c757d;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Step Text */
.step-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    max-width: 120px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

/* Progress Lines Between Steps */
.progress-line {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #e9ecef 0%, #dee2e6 100%);
    position: relative;
    margin: 0 1rem;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #0d6efd 0%, #0056b3 100%);
    transition: left 0.6s ease;
}

/* Active Step States */
.checkout-step.active .step-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border-color: #0d6efd;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transform: scale(1.05);
}

.checkout-step.active .step-icon::before {
    opacity: 0;
}

.checkout-step.active .step-icon i {
    color: white;
    transform: scale(1.1);
}

.checkout-step.active .step-text {
    color: #0d6efd;
    font-weight: 600;
    transform: translateY(-2px);
}

/* Completed Step States */
.checkout-step.completed .step-icon {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    border-color: #198754;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.checkout-step.completed .step-icon i {
    color: white;
}

.checkout-step.completed .step-text {
    color: #198754;
    font-weight: 600;
}

/* Animated Progress Lines */
.progress-line.active::before,
.progress-line.completed::before {
    left: 0;
}

.progress-line.completed::before {
    background: linear-gradient(90deg, #198754 0%, #146c43 100%);
}

/* Hover Effects for Better UX */
.checkout-step:not(.completed):not(.active):hover .step-icon {
    border-color: #adb5bd;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: scale(1.02);
}

.checkout-step:not(.completed):not(.active):hover .step-icon::before {
    opacity: 0.5;
}

.checkout-step:not(.completed):not(.active):hover .step-text {
    color: #495057;
}

/* Responsive Design for Progress Bar */
@media (max-width: 991px) {
    .checkout-progress {
        margin: 1.5rem 0 2rem 0;
        padding: 0.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-text {
        font-size: 0.8rem;
        max-width: 100px;
    }
    
    .progress-line {
        width: 60px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 767px) {
    .checkout-progress {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-around;
    }
    
    .progress-line {
        display: none;
    }
    
    .checkout-step {
        flex: 0 0 auto;
        margin: 0 0.5rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 18px;
    }
    
    .step-text {
        font-size: 0.75rem;
        max-width: 80px;
    }
}

/* ========================================
   CHECKOUT HERO CONTENT STYLES (Specific to checkout flow pages)
======================================== */

.checkout-hero-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Soft light gradient */
    color: #222; /* Dark text for readability */
    padding-top: 4rem !important; /* More space at the top */
    padding-bottom: 4rem !important;
    border-radius: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.checkout-hero-content h1, 
.checkout-hero-content h2, 
.checkout-hero-content h3 {
    color: #222;
    text-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

@media (max-width: 767px) {
    .checkout-hero-content {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* ========================================
   CHECKOUT PAGES GENERAL STYLES
======================================== */

/* Cart Page Specific */
.cart-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.cart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="85" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

/* Enhanced Card Styling for Checkout Pages */
.checkout-section .card,
.cart-section .card,
.payment-section .card,
.confirmation-section .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.checkout-section .card:hover,
.cart-section .card:hover,
.payment-section .card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Enhanced Card Headers */
.checkout-section .card-header,
.cart-section .card-header,
.payment-section .card-header,
.confirmation-section .card-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border: none;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.checkout-section .card-header::before,
.cart-section .card-header::before,
.payment-section .card-header::before,
.confirmation-section .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.checkout-section .card-title,
.cart-section .card-title,
.payment-section .card-title,
.confirmation-section .card-title {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.25rem;
}

/* Enhanced Card Body */
.checkout-section .card-body,
.cart-section .card-body,
.payment-section .card-body,
.confirmation-section .card-body {
    padding: 2rem;
    background: white;
}

/* Cart Item Styling */
.cart-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.cart-item:hover {
    background: rgba(13, 110, 253, 0.02);
    border-radius: 0.5rem;
    margin: 0 -1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

/* Order Summary Enhancements */
.order-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Button Enhancements for Checkout Pages */
.proceed-to-checkout-btn,
.complete-payment-btn,
.place-order-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proceed-to-checkout-btn::before,
.complete-payment-btn::before,
.place-order-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: left 0.5s ease;
}

.proceed-to-checkout-btn:hover::before,
.complete-payment-btn:hover::before,
.place-order-btn:hover::before {
    left: 100%;
}

.proceed-to-checkout-btn:hover,
.complete-payment-btn:hover,
.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

/* Remove Item Button Enhancement */
.remove-item-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.remove-item-btn i {
    font-size: 14px;
}

/* Empty Cart Message Enhancement */
.empty-cart {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 1rem;
    border: 2px dashed #dee2e6;
}

.empty-cart i {
    color: #adb5bd;
    margin-bottom: 1rem;
}

.empty-cart h4 {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Quantity Control Enhancement */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-label {
    font-weight: 500;
    color: #6c757d;
}

.item-quantity {
    font-weight: 600;
    color: #0d6efd;
    font-size: 1.1rem;
}

/* Price Display Enhancement */
.item-price,
.currency-amount {
    font-weight: 600;
    color: #198754;
    font-size: 1.1rem;
}

/* Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
}

/* Animation for checkout pages */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-section .card,
.checkout-section .card,
.payment-section .card,
.confirmation-section .card {
    animation: slideInUp 0.6s ease forwards;
}

.cart-section .card:nth-child(2) {
    animation-delay: 0.1s;
}

/* Success/Error States */
.alert-success {
    background: linear-gradient(135deg, #d1e7dd 0%, #a3cfbb 100%);
    border: 1px solid #a3cfbb;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
    border: 1px solid #f1aeb5;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #9fdbef 100%);
    border: 1px solid #9fdbef;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
}

/* Root Variables */
:root {
    --primary-yellow: #FDC83D;
    --primary-blue: #39A8E0;
    --dark: #333333;
    --light: #ffffff;
    --heading-font: 'Capriola', cursive;
    --body-font: 'Nunito Sans', sans-serif;
}



.blob {
    position: absolute;
    border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 1;
    mix-blend-mode: lighten;
    transition: background-color 3s ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(253, 200, 61, 0.7);
    top: -150px;
    left: -100px;
    animation: float1 8s ease-in-out infinite alternate;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background-color: rgba(57, 168, 224, 0.7);
    bottom: -80px;
    right: 10%;
    animation: float2 10s ease-in-out infinite alternate;
}

.blob-3 {
    width: 270px;
    height: 270px;
    background-color: rgba(253, 200, 61, 0.65);
    top: 25%;
    right: -80px;
    animation: float3 9s ease-in-out infinite alternate;
}

.blob-4 {
    width: 320px;
    height: 320px;
    background-color: rgba(57, 168, 224, 0.65);
    bottom: 15%;
    left: 5%;
    animation: float4 11s ease-in-out infinite alternate;
}

.blob-5 {
    width: 200px;
    height: 200px;
    background-color: rgba(253, 200, 61, 0.55);
    top: 40%;
    left: 20%;
    animation: float5 7s ease-in-out infinite alternate;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
        background-color: rgba(253, 200, 61, 0.7);
    }
    50% {
        background-color: rgba(253, 180, 61, 0.75);
    }
    100% {
        transform: translate(120px, 100px) scale(1.25) rotate(45deg);
        border-radius: 30% 70% 20% 80% / 20% 70% 30% 80%;
        background-color: rgba(255, 160, 50, 0.8);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 30% 70% / 30% 60% 40% 70%;
        background-color: rgba(57, 168, 224, 0.7);
    }
    50% {
        background-color: rgba(47, 148, 214, 0.75);
    }
    100% {
        transform: translate(-100px, -70px) scale(1.2) rotate(-35deg);
        border-radius: 70% 30% 80% 20% / 70% 20% 80% 30%;
        background-color: rgba(37, 128, 204, 0.8);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 70% 30% 40% 60% / 40% 70% 30% 60%;
        background-color: rgba(253, 200, 61, 0.65);
    }
    50% {
        background-color: rgba(253, 180, 61, 0.7);
    }
    100% {
        transform: translate(-80px, 120px) scale(1.3) rotate(25deg);
        border-radius: 25% 75% 70% 30% / 80% 20% 70% 30%;
        background-color: rgba(255, 160, 50, 0.75);
    }
}

@keyframes float4 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
        background-color: rgba(57, 168, 224, 0.65);
    }
    50% {
        background-color: rgba(47, 148, 214, 0.7);
    }
    100% {
        transform: translate(110px, -80px) scale(1.25) rotate(-40deg);
        border-radius: 60% 40% 30% 70% / 70% 30% 60% 40%;
        background-color: rgba(37, 128, 204, 0.75);
    }
}

@keyframes float5 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 65% 35% 45% 55% / 40% 60% 40% 60%;
        background-color: rgba(253, 200, 61, 0.55);
    }
    50% {
        background-color: rgba(253, 180, 61, 0.6);
    }
    100% {
        transform: translate(60px, 70px) scale(1.2) rotate(30deg);
        border-radius: 35% 65% 75% 25% / 65% 35% 65% 35%;
        background-color: rgba(255, 160, 50, 0.65);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease;
    padding: 2rem 0;
}

.highlight-text {
    position: relative;
    color: var(--primary-yellow);
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(57, 168, 224, 0), rgba(57, 168, 224, 1), rgba(57, 168, 224, 0));
}

.hero-section h1 {
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateZ(0);
    margin-bottom: 1.5rem;
}

.hero-section h2 {
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero-section .btn {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-15deg);
    transition: all 0.5s;
}

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

.hero-section .btn:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-secondary {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--dark);
}

.hero-section .btn-outline-light {
    border-width: 2px;
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10px; /* Dikey konumlandırma */
    left: 50%; /* Yatay konumlandırma için başlangıç noktası */
    transform: translateX(-50%) !important; /* Öğeyi kendi genişliğinin yarısı kadar sola kaydırarak ortalar */
    align-items: center; /* Flexbox/Grid alt öğelerini ortalar (eğer .scroll-indicator bir flex/grid container ise) */
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
    z-index: 2;
    text-align: center; /* .scroll-indicator içindeki inline içeriği ortalar */
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 25px;
    position: relative;
    display: block;
    margin: 0 auto 10px auto; /* Tüm kenarlardan otomatik margin ile tam ortalama */
}

.wheel {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #fff;
    left: 50%;
    margin-left: -3px;
    top: 10px;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

.scroll-text {
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    display: block;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Responsive Adjustments for Hero Section */
@media (max-width: 991px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .blob-1, .blob-2, .blob-3, .blob-4, .blob-5 {
        transform: scale(0.8);
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .blob-1, .blob-2, .blob-4 {
        opacity: 0.5;
    }
    
    .blob-3, .blob-5 {
        display: none;
    }
}

/* Header Stilleri header-styles.css Dosyasına Taşındı */

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

/* Global Base Styling */
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6, .nav-link, .btn {
    font-family: var(--heading-font);
}

.section-title, .display-3, .display-4, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--heading-font);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-yellow);
}

.btn {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-secondary {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--light);
}

/* Header Stilleri header-styles.css Dosyasına Taşındı */

.contact-btn {
    background-color: var(--primary-blue);
    color: var(--light) !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-btn:after {
    display: none;
}

/* Section Styling */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
}

section {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-section h1 {
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-section h2 {
    font-weight: 400;
}

/* Card & Icon Styling */
.unique-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(253, 200, 61, 0.2);
    margin-bottom: 20px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(57, 168, 224, 0.1);
    flex-shrink: 0;
}

.service-item:hover .icon-box {
    background-color: var(--primary-blue);
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.card {
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.card-title {
    font-family: var(--heading-font);
    font-weight: 600;
}

/* Testimonial Cards */
.testimonials-section .card {
    border-radius: 15px;
}

.testimonials-section .card-body {
    position: relative;
}

.testimonials-section .card-body:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(253, 200, 61, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    opacity: 0.5;
}

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

/* Footer Styling */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-yellow), var(--primary-blue));
}

.footer-logo {
    filter: brightness(1.2);
}

.footer-heading {
    position: relative;
    font-weight: 600;
    padding-bottom: 12px;
    font-family: var(--heading-font);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-size: 18px;
    transition: transform 0.3s ease;
    font-family: sans-serif;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact li i {
    color: var(--primary-yellow);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-yellow);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

/* Newsletter */
.newsletter .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
    font-family: var(--body-font);
}

.newsletter .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Single Page Styling */
.page-header {
    padding: 80px 0;
    margin-bottom: 30px;
}

.page-title {
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
}

.page-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 30px;
    font-family: var(--body-font);
    backdrop-filter: blur(10px);
}

.content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content h2, .content h3, .content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content a {
    color: var (--primary-blue);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--primary-yellow);
}

.content a:hover {
    color: var(--primary-yellow);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-3px);
}

/* Animation Classes */
.fadeInUp {
    animation: fadeInUp 1s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-brand {
        margin: 0 auto;
    }
    
    .navbar-brand img {
        height: 60px;
    }
    
    #leftNavbar, #rightNavbar {
        display: none;
    }
    
    .contact-btn {
        display: inline-block;
        margin-top: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .footer-heading {
        margin-top: 20px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Pricing Page Special Styles */
.pricing-hero {
    min-height: 60vh;
    position: relative;
}

/* Special Offer Badge */
.special-offer-badge {
    position: absolute;
    top: 10px;
    left: -10px;
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    transform: rotate(-15deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 10;
}

/* Special Offer Card */
.special-offer-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border-top: 5px solid var(--primary-yellow);
    transition: transform 0.3s ease;
}

.special-offer-card:hover {
    transform: translateY(-5px);
}

/* Speech Bubble Yellow */
.speech-bubble-yellow {
    background-color: var(--primary-yellow);
    border-radius: 20px;
    color: #333;
}

.speech-bubble-yellow:after {
    content: '';
    position: absolute;
    left: -20px;
    top: 40%;
    border: 10px solid transparent;
    border-right-color: var(--primary-yellow);
}

/* Price Styling */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
}

.price-original {
    position: relative;
    margin-bottom: 8px;
}

.price-cross {
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
}

.price-cross:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: red;
    transform: rotate(-10deg);
}

.price-discounted {
    margin-top: 5px;
}

.price-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-blue);
    position: relative;
    padding: 0 10px;
}

.price-highlight:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 10px;
    background-color: rgba(253, 200, 61, 0.3);
    z-index: -1;
    border-radius: 5px;
}

/* Dates Box */
.dates-box {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px dashed #333;
    background-color: var(--primary-yellow);
}

/* Regular Pricing Cards */
.card.pricing-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.card.pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-header {
    position: relative;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.daily-price-badge, .seasonal-price-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-yellow);
    color: #333;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Price Row Animation */
.price-row {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.price-row:hover {
    background-color: rgba(57, 168, 224, 0.1);
    transform: translateX(5px);
}

.price-tag {
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.price-row:hover .price-tag {
    background-color: var(--primary-yellow) !important;
    color: #333 !important;
    transform: scale(1.05);
}

.price-row h4 {
    transition: all 0.3s ease;
}

.price-row:hover h4 {
    color: var(--primary-blue) !important;
    transform: translateX(5px);
}

/* Stars Animation */
.fa-star {
    animation: pulse 2s infinite;
}

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

/* CTA Section Enhancement */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a7cb3 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.1) 24px, transparent 25px),
        radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.1) 20px, transparent 21px);
    background-size: 150px 150px;
    animation: bubbleMove 30s linear infinite;
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .special-offer-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .speech-bubble-yellow:after {
        display: none;
    }
    
    .daily-price-badge, .seasonal-price-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-tag {
        margin-top: 10px;
        align-self: flex-end;
    }
}

/* Package Feature List Enhancement */
.package-features p {
    transition: transform 0.3s ease;
    padding: 5px;
    border-radius: 5px;
}

.package-features p:hover {
    background-color: rgba(57, 168, 224, 0.1);
    transform: translateX(5px);
}

/* Alert Enhancement */
.alert-info {
    background-color: rgba(57, 168, 224, 0.1);
    border-left: 5px solid var(--primary-blue);
    border-radius: 0 10px 10px 0;
}

/* Button Enhancement */
.btn-warning, .btn-primary, .btn-info {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-warning::after, .btn-primary::after, .btn-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-warning:hover::after, .btn-primary:hover::after, .btn-info:hover::after {
    height: 100%;
}

/* Section Title Enhancement */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-top: 100px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue), var(--primary-yellow));
}


/* Enhanced Video Section Styles */
.video-more-section {
    min-height: 80vh; /* 100vh yerine 80vh yapıyoruz */
    min-height: 700px;
    overflow: hidden;
    position: relative;
}

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

.fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Enhanced overlay with gradient */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.4) 0%, 
                rgba(0, 0, 0, 0.6) 50%, 
                rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

/* Improved section title */
.section-header-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.video-more-section .section-title {
    font-size: 3.5rem;
    color: var(--light);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-accent-line {
    height: 4px;
    width: 120px;
    margin: 0 auto;
    background: linear-gradient(90deg, 
                var(--primary-blue) 0%, 
                var(--primary-yellow) 50%, 
                var(--primary-blue) 100%);
    border-radius: 2px;
}

.highlight-text {
    position: relative;
    color: var(--primary-yellow);
    display: inline-block;
}

/* Belief Cards Styling */
.belief-statements {
    max-width: 800px;
    margin: 0 auto;
}

.belief-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-yellow);
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.belief-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.belief-icon i {
    color: white;
    font-size: 1.5rem;
}

.belief-card p {
    margin-bottom: 0;
    font-size: 1.15rem;
    line-height: 1.5;
}

.belief-card span {
    font-weight: 600;
}

/* Welcome Box Styling */
.welcome-box {
    background-color: rgba(57, 168, 224, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.welcome-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                rgba(253, 200, 61, 0.1) 0%, 
                rgba(57, 168, 224, 0.1) 100%);
    z-index: -1;
}

.welcome-box h3 {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 1rem;
}

.welcome-box p {
    font-size: 1.5rem;
    color: white;
}

/* CTA Button Enhancement */
.cta-container {
    margin-top: 3rem;
}

.pulse-button {
    background-color: var(--primary-yellow);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(253, 200, 61, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.pulse-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(253, 200, 61, 0.6);
    background-color: #ffcb29;
}

.pulse-button span {
    position: relative;
    z-index: 2;
}

.pulse-button i {
    transition: transform 0.3s ease;
}

.pulse-button:hover i {
    transform: translateX(5px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 200, 61, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(253, 200, 61, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(253, 200, 61, 0);
    }
}

/* Video Control Button */
.btn-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-control:hover {
    background-color: var(--primary-blue);
    transform: scale(1.1);
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s forwards;
}

.reveal-text-delay {
    opacity: 0;
    transform: translateY(30px);
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .video-more-section {
        height: auto;
        min-height: 100vh;
        padding: 5rem 0;
    }
    
    .video-more-section .section-title {
        font-size: 2.5rem;
    }
    
    .belief-card {
        padding: 1.2rem;
    }
}

@media (max-width: 767px) {
    .video-more-section {
        padding: 4rem 0;
    }
    
    .video-more-section .section-title {
        font-size: 2rem;
    }
    
    .belief-card {
        flex-direction: column;
        text-align: center;
    }
    
    .belief-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Dropdown Menu Fixes */
.dropdown-menu {
  position: absolute;
  z-index: 9999 !important;
  margin-top: 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  overflow: visible;
}

.dropdown-menu.show {
  display: block !important;
}

.dropdown-menu.dropdown-menu-end {
  right: 0;
  left: auto;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--primary-blue);
  background-color: rgba(57, 168, 224, 0.1);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .dropdown-menu {
    position: static !important;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding-left: 1.5rem;
  }
  
  .dropdown-item {
    color: rgba(0, 0, 0, 0.5);
  }
  
  .dropdown-item:hover, .dropdown-item:focus {
    background-color: transparent;
  }
}

/* Eski dropdown stillerini kaldırıyoruz */
.navbar .dropdown-menu {
  display: none;
}

.navbar .dropdown-menu.show {
  display: block !important;
}

/* Yeni Header Stilleri */
.site-header {
    background-color: var(--light);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.site-header .navbar {
    padding: 0.5rem 0;
}

.site-header .navbar-brand {
    padding: 0;
    margin: 0 !important;
    position: relative;
    z-index: 1030;
}

.logo-bounce {
    animation: subtle-bounce 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
}

.logo-bounce:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.1)) brightness(1.05);
}

@keyframes subtle-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

/* Nav Link Stilleri */
.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.02em;
    overflow: hidden;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue));
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
    border-radius: 3px;
    opacity: 0;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.nav-link:hover:after {
    width: 80%;
    opacity: 1;
}

/* İletişim Butonu */
.contact-btn {
    background: linear-gradient(45deg, var(--primary-blue), #2980b9);
    color: var(--light) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    margin-left: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(57, 168, 224, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-yellow), #f39c12);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: -1;
}

.contact-btn:hover {
    color: var(--dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 200, 61, 0.3);
}

.contact-btn:hover:before {
    opacity: 1;
}

.contact-btn:after {
    display: none;
}

/* Mobil Menü Stilleri */
.navbar-toggler {
    border: none;
    outline: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    position: relative;
    border-radius: 50%;
    background: rgba(57, 168, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: rgba(253, 200, 61, 0.15);
    transform: scale(1.05);
}

.mobile-menu {
    background-color: rgba(255,255,255,0.98);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-btn-mobile {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--light) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-btn-mobile:hover {
    background-color: var(--primary-yellow);
    color: var(--dark) !important;
}

/* Dropdown Stilleri */
.dropdown-menu {
    position: absolute;
    z-index: 9999;
    margin-top: 1rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    border: none;
    overflow: hidden;
    min-width: 12rem;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    position: relative;
    border-left: 0 solid var(--primary-yellow);
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--primary-blue);
    background-color: rgba(57, 168, 224, 0.05);
    padding-left: 2rem;
    border-left: 5px solid var(--primary-yellow);
}

/* Responsive Ayarlamalar */
@media (max-width: 991.98px) {
    .site-header .navbar-brand img {
        height: 60px;
    }
    
    #navbarContent {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1020;
        padding: 0 1rem;
    }
    
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .contact-btn-mobile {
        margin-top: 0.5rem;
        display: block;
    }
}

.navbar-collapse, .container, .navbar {
    overflow: visible !important;
}

.site-header,
.navbar,
.navbar-collapse,
.container {
  overflow: visible !important;
}

/* Enhanced Header Styles for New Design */
.site-header {
    background-color: var(--light);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1030;
}

/* Logo Centering on Mobile */
@media (max-width: 991px) {
    .navbar-brand.mx-auto {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Full Screen Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 1040;
        padding: 80px 20px 30px;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
    }
    
    .navbar-menu-wrapper {
        padding: 0 1rem;
    }
    
    .navbar-nav.main-nav {
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 1rem;
    }
    
    .contact-btn {
        display: inline-block;
        margin: 15px auto 0;
    }
}

/* Language Selector Styling - Enhanced */
.language-selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 1050;
}

.language-selector-desktop {
    margin-left: 15px;
}

.lang-buttons {
    display: flex;
}

.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 8px;
    text-decoration: none;
}

.lang-flag {
    display: inline-block;
    width: 24px;
    height: 16px;
    background-size: cover;
    background-position: center;
    margin-bottom: 2px;
}

.lang-flag-tr {
    background-image: url('/images/flags/tr.png');
}

.lang-flag-en {
    background-image: url('/images/flags/gb.png');
}

.lang-flag-de {
    background-image: url('/images/flags/de.png');
}

.lang-flag-ru {
    background-image: url('/images/flags/ru.png');
}

.lang-flag-fr {
    background-image: url('/images/flags/fr.png');
}

.lang-flag-es {
    background-image: url('/images/flags/es.png');
}

.lang-flag-ar {
    background-image: url('/images/flags/ar.png');
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 5px;
}

.mobile-lang-btn .lang-flag {
    margin-right: 0px;
    margin-bottom: 0;
}

.lang-code {
    font-size: 0.8em;
    font-weight: bold;
}

/* Flag Styling - Enhanced */
.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 4px;
    text-decoration: none;
    margin: 0 3px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(57, 168, 224, 0.1);
}

.lang-flag {
    display: inline-block;
    width: 32px;
    height: 22px;
    background-size: cover;
    background-position: center;
    margin-bottom: 4px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-flag-tr {
    background-image: url('/images/flags/tr.png');
}

.lang-flag-en {
    background-image: url('/images/flags/gb.png');
}

.lang-flag-de {
    background-image: url('/images/flags/de.png');
}

.lang-flag-ru {
    background-image: url('/images/flags/ru.png');
}

.lang-flag-fr {
    background-image: url('/images/flags/fr.png');
}

.lang-flag-es {
    background-image: url('/images/flags/es.png');
}

.lang-flag-ar {
    background-image: url('/images/flags/ar.png');
}

.lang-code {
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Mobile Language Button Styles */
.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
}

/* Active language button styling */
.lang-btn.active {
    background-color: var(--primary-yellow);
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Language selector container adjustments */
.language-selector-desktop .lang-buttons {
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for flags */
@media (max-width: 991px) {
    .mobile-lang-btn {
        width: auto;
        max-width: none;
    }
    
    .mobile-lang-buttons {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Fixed Navbar Toggler */
.navbar-toggler {
    z-index: 1050;
    position: relative;
}

.navbar-toggler-icon {
    transition: all 0.3s ease;
}

/* Close button styling when menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M2.146 2.146a.5.5 0 0 1 .708 0L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Fiyat Listesi Buton Stili */
.price-btn {
    background-color: var(--primary-yellow);
    color: var(--dark) !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    margin-left: 5px;
    margin-right: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.price-btn:hover {
    background-color: var(--dark);
    color: var(--primary-yellow) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Improved Mobile Menu Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 1040;
        padding: 80px 0 30px;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
    }
    
    .navbar-menu-wrapper {
        padding: 0;
        overflow-y: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .navbar-nav.main-nav {
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 300px;
        padding: 0;
        flex-grow: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .contact-btn {
        display: inline-block;
        margin: 10px auto 0;
    }
    
    /* Mobile language selector improvements */
    .mobile-lang-selector {
        text-align: center;
        margin: 20px auto;
        padding: 0 20px;
        width: 100%;
        max-width: 300px;
        flex-shrink: 0;
    }
    
    .mobile-lang-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 200px;
        overflow-y: auto;
        padding-bottom: 20px;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(253, 200, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(57, 168, 224, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(253, 200, 61, 0.05) 0%, transparent 50%);
    background-size: 600px 600px, 800px 800px, 400px 400px;
    animation: patternMove 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes patternMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    50% { background-position: 100% 50%, 0% 50%, 80% 20%; }
}

.footer-main {
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand {
    position: relative;
}

.footer-logo {
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(253, 200, 61, 0.3));
    transform: scale(1.05);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Modern Social Links */
.social-title {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.social-icons-modern {
    display: flex;
    gap: 15px;
}

.social-icon-modern {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-decoration: none;
}

.social-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.4s ease;
    z-index: -1;
}

.social-icon-modern.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-modern.whatsapp::before {
    background: linear-gradient(45deg, #25d366 0%, #128c7e 100%);
}

.social-icon-modern:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon-modern i {
    color: white;
    position: relative;
    z-index: 1;
}

.social-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon-modern:hover .social-tooltip {
    opacity: 1;
    top: -40px;
}

/* Footer Sections */
.footer-section {
    position: relative;
}

.footer-heading-modern {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading-modern::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 2px;
}

/* Modern Footer Links */
.footer-links-modern li {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-links-modern a i {
    color: var(--primary-blue);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links-modern li:hover {
    transform: translateX(10px);
}

.footer-links-modern a:hover {
    color: var(--primary-yellow);
    text-decoration: none;
}

.footer-links-modern a:hover i {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

/* Modern Contact Info */
.contact-info-modern {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-yellow);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: var(--primary-yellow);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-link, .email-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: var(--primary-yellow);
    text-decoration: none;
}

/* Modern Newsletter */
.newsletter-modern {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    font-size: 1rem;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-form {
    margin-top: 15px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    background: transparent;
    color: var(--dark);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.newsletter-btn {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    border: none;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-blue));
    transform: scale(1.05);
}

.newsletter-btn i {
    font-size: 1rem;
}

/* Modern Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin-bottom: 2rem;
}

.copyright-text, .company-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.copyright-text i, .company-info i {
    color: var(--primary-yellow);
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .social-icons-modern {
        justify-content: center;
    }
    
    .footer-heading-modern::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-modern {
        text-align: center;
    }
    
    .footer-links-modern li:hover {
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .modern-footer {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 10px auto;
    }
    
    .phone-numbers {
        align-items: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .newsletter-input {
        border-radius: 10px 10px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 10px 10px;
        justify-content: center;
    }
}

/* Animation for footer appearance */
.footer-section {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

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

/* Instagram Icon */
.instagram-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    bottom: 20px;
    right: 90px;
    animation: instagramFloat 4s ease-in-out infinite;
}

.instagram-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(240, 148, 51, 0.4);
    text-decoration: none;
}

.instagram-icon i {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.instagram-icon:hover i {
    transform: scale(1.1);
}

/* Notification Bubble */
.notification-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    animation: notificationPulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    max-width: 280px;
    display: none;
    font-size: 0.9rem;
    line-height: 1.4;
    border-left: 4px solid #25d366;
    animation: tooltipSlideIn 0.3s ease;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.close-tooltip {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #999;
    transition: color 0.3s ease;
}

.close-tooltip:hover {
    color: #666;
}

.chat-button {
    display: inline-block;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.chat-button:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

/* Animations */
@keyframes whatsappPulse {
    0% { 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7); 
    }
    50% { 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.2); 
    }
    100% { 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0); 
    }
}

@keyframes instagramFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(5deg); 
    }
    50% { 
        transform: translateY(0) rotate(0deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(-5deg); 
    }
}

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

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

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .whatsapp-icon, .instagram-icon {
        width: 55px;
        height: 55px;
        bottom: 15px;
    }
    
    .whatsapp-icon {
        right: 15px;
    }
    
    .instagram-icon {
        right: 80px;
    }
    
    .whatsapp-icon i, .instagram-icon i {
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        right: 15px;
        bottom: 80px;
        max-width: 250px;
        font-size: 0.85rem;
    }
    
    .notification-bubble {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
}

/* Hover effects for better user experience */
.whatsapp-icon:focus, .instagram-icon:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

.instagram-icon:focus {
    box-shadow: 0 0 0 3px rgba(240, 148, 51, 0.3);
}

/* Perfect circle ensuring */
.whatsapp-icon, .instagram-icon {
    aspect-ratio: 1;
    border-radius: 50% !important;
}

/* Floating Social Media Icons - WhatsApp & Instagram */
.whatsapp-icon, .instagram-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}

/* WhatsApp Icon */
.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    bottom: 20px;
    right: 20px;
    animation: whatsappPulse 3s infinite;
}

.whatsapp-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-icon i {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.whatsapp-icon:hover i {
    transform: scale(1.1);
}

/* Instagram Icon */
.instagram-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    bottom: 20px;
    right: 90px;
    animation: instagramFloat 4s ease-in-out infinite;
}

.instagram-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(240, 148, 51, 0.4);
    text-decoration: none;
}

.instagram-icon i {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.instagram-icon:hover i {
    transform: scale(1.1);
}

/* Notification Bubble */
.notification-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    animation: notificationPulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    max-width: 280px;
    display: none;
    font-size: 0.9rem;
    line-height: 1.4;
    border-left: 4px solid #25d366;
    animation: tooltipSlideIn 0.3s ease;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.close-tooltip {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #999;
    transition: color 0.3s ease;
}

.close-tooltip:hover {
    color: #666;
}

.chat-button {
    display: inline-block;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.chat-button:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

/* Animations */
@keyframes whatsappPulse {
    0% { 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7); 
    }
    50% { 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.2); 
    }
    100% { 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0); 
    }
}

@keyframes instagramFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(5deg); 
    }
    50% { 
        transform: translateY(0) rotate(0deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(-5deg); 
    }
}

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

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

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .whatsapp-icon, .instagram-icon {
        width: 55px;
        height: 55px;
        bottom: 15px;
    }
    
    .whatsapp-icon {
        right: 15px;
    }
    
    .instagram-icon {
        right: 80px;
    }
    
    .whatsapp-icon i, .instagram-icon i {
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        right: 15px;
        bottom: 80px;
        max-width: 250px;
        font-size: 0.85rem;
    }
    
    .notification-bubble {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
}

/* Hover effects for better user experience */
.whatsapp-icon:focus, .instagram-icon:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

.instagram-icon:focus {
    box-shadow: 0 0 0 3px rgba(240, 148, 51, 0.3);
}

/* Perfect circle ensuring */
.whatsapp-icon, .instagram-icon {
    aspect-ratio: 1;
    border-radius: 50% !important;
}


        /* Modern Header and Dropdown Styles */        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            transition: all 0.3s ease;
            background-color: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .site-header.scrolled {
            background-color: rgba(255,255,255,0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* Renkli Gradient Bar */
        .color-gradient-bar {
            height: 4px;
            background: linear-gradient(90deg, 
                #39a8e0 0%, 
                #fdc83d 50%, 
                #f05a28 100%);
        }
        
        /* Header Arka Plan Deseni */
        .header-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            pointer-events: none;
            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='%23000000' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        /* Logo Animasyonu */
        .logo-bounce {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .navbar-brand:hover .logo-bounce {
            transform: translateY(-5px);
        }          /* Dropdown triangle indicator */
        .dropdown-triangle {
            display: inline-block;
            width: 0;
            height: 0;
            margin-left: 6px;
            vertical-align: middle;
            border-top: 5px solid;
            border-right: 4px solid transparent;
            border-left: 4px solid transparent;
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 0.6;
        }
        
        /* Hover effect on triangle */
        .nav-link:hover .dropdown-triangle {
            opacity: 1;
        }
        
        /* Rotate triangle when dropdown is open */
        .dropdown-toggle[aria-expanded="true"] .dropdown-triangle {
            transform: rotate(180deg);
            opacity: 1;
        }
        
        /* Hover Dropdown (Masaüstü) */
        @media (min-width: 992px) {
            /* Dropdown menülerin düzgün görüntülenmesi için */
            .navbar {
                padding: 0;
            }
            
            .nav-item {
                position: relative;
                margin: 0 5px;
            }
            
            .nav-link {
                padding: 24px 16px !important;
                font-weight: 500;
                color: #333;
                position: relative;
                transition: all 0.3s ease;
                border-radius: 0;
            }
            
            .nav-link:hover {
                color: #39a8e0;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: 20px;
                left: 50%;
                background: linear-gradient(90deg, #39a8e0, #fdc83d);
                transition: all 0.3s ease;
                transform: translateX(-50%);
                opacity: 0;
            }
            
            .nav-link:hover::after {
                width: 70%;
                opacity: 1;
            }
            
            /* Modern Dropdown Menüleri */
            .hover-dropdown:hover .dropdown-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }
            
            .dropdown-menu {
                display: block;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border: none;
                border-radius: 12px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                padding: 12px;
                margin-top: 0;
                min-width: 220px;
                background-color: #fff;
            }
            
            .dropdown-menu:before {
                content: '';
                position: absolute;
                top: -10px;
                left: 25px;
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid white;
                filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.05));
            }
            
            .dropdown-menu-end:before {
                right: 25px;
                left: auto;
            }
            
            .dropdown-item {
                padding: 10px 15px;
                border-radius: 8px;
                transition: all 0.2s ease;
                color: #444;
                font-weight: 400;
                display: flex;
                align-items: center;
            }
            
            .dropdown-item:hover {
                background-color: rgba(57, 168, 224, 0.08);
                color: #39a8e0;
                transform: translateX(5px);
            }
            
            .dropdown-item i {
                margin-right: 8px;
                width: 20px;
                text-align: center;
                opacity: 0.7;
                transition: all 0.2s ease;
            }
            
            .dropdown-item:hover i {
                opacity: 1;
            }
            
            /* Dropdown açıldığında üçgen simge animasyonu */
            .hover-dropdown:hover .dropdown-triangle {
                transform: rotate(180deg);
            }
            
            /* Diğer dropdown menü stilleri (dil seçici) */
            .language-dropdown-menu {
                min-width: 180px !important;
                padding: 15px !important;
                border-radius: 15px !important;
                position: absolute !important;
                border: none !important;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
                background-color: #fff !important;
            }
            
            .enhanced-lang-toggle {
                display: flex !important;
                align-items: center;
                gap: 8px;
                border-radius: 40px !important;
                border: 3px solid rgba(0,0,0,0.05);
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240,240,240,0.9));
                transition: all 0.3s ease;
            }
            
            
            /* Bayrak stilleri */
            .lang-flag {
                width: 22px;
                height: 22px;
                border-radius: 50%;
                display: inline-block;
                background-size: cover;
                background-position: center;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
            
            .lang-code {
                font-size: 0.8rem;
                font-weight: 600;
            }
            
            /* Özel Butonlar */
            .price-btn {
                background-color: rgba(253, 200, 61, 0.1);
                color: #000000 !important;
                border-radius: 30px;
                padding: 8px 20px !important;
                margin: 0 5px;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            
            .price-btn:hover {
                background-color: #fdc83d;
                color: #fff !important;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(253, 200, 61, 0.3);
            }
            
            .contact-btn {
                background-color: #39a8e0;
                color: #fff !important;
                border-radius: 30px;
                padding: 8px 20px !important;
                margin: 0 5px;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            
            .contact-btn:hover {
                background-color: #2d8ab7;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(57, 168, 224, 0.3);
            }
            
            .cart-btn {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: rgba(57, 168, 224, 0.1);
                border-radius: 50%;
                transition: all 0.3s ease;
                margin: 0 5px;
            }
            
            .cart-btn:hover {
                background-color: #39a8e0;
                color: #fff!important;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(57, 168, 224, 0.3);
            }
        }
        
        /* Mobil Görünüm Düzenlemeleri */
        @media (max-width: 991.98px) {
            /* Body ve Sayfa Yapısı */
            body.menu-open {
                height: 100%;
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
              /* Navbar and Mobile Menu structure */
            .navbar-toggler {
                padding: 10px;
                width: 44px;
                height: 44px;
                border-radius: 50% !important;
                background: linear-gradient(135deg, rgba(57, 168, 224, 0.1), rgba(253, 200, 61, 0.1));
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                z-index: 1032;
                position: relative;
            }
            
            .navbar-toggler:hover {
                transform: scale(1.1);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }
              .mobile-menu-toggle {
                position: relative;
                z-index: 1040;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .menu-toggle-backdrop {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: -1;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
                backdrop-filter: blur(3px);
            }
            
            .navbar-toggler[aria-expanded="true"] .menu-toggle-backdrop {
                opacity: 1;
                visibility: visible;
            }              #navbar-spacer {
                height: 0;
                transition: height 0.4s ease-in-out;
                display: block;
                visibility: hidden;
                opacity: 0;
            }
            
            #navbar-spacer.active {
                visibility: visible;
                opacity: 1;
            }
            
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 100vh !important;
                width: 100vw !important;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                overflow-y: auto;
                z-index: 1030;
                padding: 90px 20px 30px 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
            }
            
            .navbar-collapse.show {
                transform: translateY(0);
                opacity: 1;
            }
            
            /* Mobil Menü Öğeleri */
            .navbar-nav {
                width: 100%;
                max-width: 360px;
                margin-bottom: 40px !important;
                text-align: center;
            }
            
            .nav-item {
                margin: 10px 0;
                width: 100%;
            }
            
            .nav-link {
                padding: 12px 20px !important;
                font-size: 1.1rem;
                border-radius: 10px;
                transition: all 0.3s ease;
                position: relative;
            }
            
            .nav-link:active {
                transform: scale(0.98);
            }
            
            /* Mobil Dropdown Menüler */
            .dropdown-menu {
                margin: 5px 0 10px 0 !important;
                border-radius: 10px !important;
                border: none !important;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
                padding: 10px !important;
                background-color: rgba(255, 255, 255, 0.7) !important;
                backdrop-filter: blur(10px);
                display: none;
            }
            
            .dropdown-menu.show {
                display: block;
                animation: fadeIn 0.3s ease;
            }
            
            .dropdown-item {
                padding: 12px 20px !important;
                border-radius: 8px;
                margin-bottom: 5px;
                font-size: 1rem;
                transition: all 0.2s ease;
            }
            
            .dropdown-item:last-child {
                margin-bottom: 0;
            }
            
            .dropdown-item:active {
                transform: scale(0.98);
                background-color: rgba(253, 200, 61, 0.2);
            }
            
            .dropdown-toggle::after {
                margin-left: 8px;
            }
            
            /* Dropdown üçgen dönüşü */
            .dropdown-toggle[aria-expanded="true"] .dropdown-triangle {
                transform: rotate(180deg);
            }
            
            /* Mobil Dil Seçici */
            .mobile-lang-selector {
                width: 100%;
                max-width: 360px;
                background-color: rgba(255, 255, 255, 0.6);
                border-radius: 15px;
                padding: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            }
            
            .mobile-lang-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
                gap: 10px;
            }
            
            .mobile-lang-btn {
                background: rgba(255, 255, 255, 0.5);
                border: 1px solid rgba(0, 0, 0, 0.05);
                border-radius: 10px;
                padding: 10px 5px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 8px;
                transition: all 0.3s ease;
                text-decoration: none;
            }
            
            .mobile-lang-btn.active {
                background: linear-gradient(135deg, rgba(253, 200, 61, 0.2), rgba(57, 168, 224, 0.2));
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .mobile-lang-btn:hover:not(.active) {
                background: rgba(57, 168, 224, 0.05);
                transform: translateY(-2px);
            }
            
            /* Özel butonların mobil görünümü */
            .price-btn, .contact-btn {
                background-color: rgba(253, 200, 61, 0.1);
                color: #fdc83d !important;
                border-radius: 10px;
                padding: 12px 20px !important;
                margin: 8px 0;
                font-weight: 600;
            }
            
            .contact-btn {
                background-color: rgba(57, 168, 224, 0.1);
            }
            
            /* Animasyonlar */
            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(-10px); }
                to { opacity: 1; transform: translateY(0); }
            }
            
            /* Navbar çubuğu scroll efekti */
            .site-header.scrolled {
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }
            
            /* Navbar animasyonlu menü öğeleri */
            .navbar-collapse.show .nav-item {
                animation: slideInDown 0.4s forwards;
                opacity: 0;
            }
            
            @keyframes slideInDown {
                from { opacity: 0; transform: translateY(-20px); }
                to { opacity: 1; transform: translateY(0); }
            }
            
            .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
            .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
            .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
            .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.25s; }
            .navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.3s; }
            .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.35s; }
            .navbar-collapse.show .nav-item:nth-child(7) { animation-delay: 0.4s; }
        }



        /* Modern About Section Styles */
.about-section {
    position: relative;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    overflow: hidden;
    padding: 120px 0;
}

/* Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    top: -150px;
    left: -150px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-blue));
    bottom: -100px;
    right: -100px;
    animation: float2 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    top: 50%;
    right: 10%;
    animation: float3 15s ease-in-out infinite;
}

/* Content Styling */
.about-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

/* Section Label */
.section-label {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInUp 1s ease 0.2s forwards;
}

.label-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 20px;
    position: relative;
}

.label-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 2px;
}

/* Title Styling */
.about-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideInUp 1s ease 0.4s forwards;
}

.title-highlight {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue));
    border-radius: 2px;
    opacity: 0.3;
}

/* Text Container */
.about-text-container {
    margin-bottom: 40px;
    opacity: 0;
    animation: slideInUp 1s ease 0.6s forwards;
}

.about-lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.about-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Features List */
.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 12px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.feature-item:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.feature-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: var(--primary-yellow);
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-content p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.6;
    font-weight: 400;
}

/* Modern Button */
.modern-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(57, 168, 224, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 1s ease 1s forwards;
}

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

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

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(57, 168, 224, 0.4);
    color: white;
    text-decoration: none;
}

.btn-text {
    margin-right: 15px;
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modern-btn:hover .btn-arrow {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

/* Image Container */
.about-image-container {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

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

.float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.float-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-yellow), rgba(253, 200, 61, 0.5));
    top: 10%;
    right: -10%;
    animation: float1 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(253, 200, 61, 0.3);
}

.float-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-blue), rgba(57, 168, 224, 0.5));
    bottom: 20%;
    left: -5%;
    animation: float2 8s ease-in-out infinite reverse;
    box-shadow: 0 10px 30px rgba(57, 168, 224, 0.3);
}

.float-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-blue));
    top: 50%;
    right: 15%;
    animation: float3 5s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(253, 200, 61, 0.2);
}

/* Main Image */
.main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.main-image:hover {
    transform: translate(-50%, -50%) scale(1.02);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 168, 224, 0.1) 0%, rgba(253, 200, 61, 0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

/* Stats Card */
.stats-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .image-wrapper {
        height: 400px;
    }
    
    .stats-card {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-lead {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .modern-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .image-wrapper {
        height: 300px;
    }
    
    .float-1, .float-2, .float-3 {
        display: none;
    }
}

/* Animation delays for feature items */
.feature-item:nth-child(1) {
    animation: slideInUp 1s ease 0.8s forwards;
}

.feature-item:nth-child(2) {
    animation: slideInUp 1s ease 1s forwards;
}



/* Unique Section - Premium Award-winning Design */
.unique-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding: 120px 0;
    min-height: 100vh;
}

/* Background Elements */
.unique-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.02;
    animation: floatSlow 20s ease-in-out infinite;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-blue));
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.bg-circle-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-shapes > div {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-yellow), rgba(253, 200, 61, 0.5));
    top: 20%;
    left: 10%;
    animation: floatUp 8s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-blue), rgba(57, 168, 224, 0.5));
    top: 60%;
    right: 15%;
    animation: floatUp 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-blue));
    bottom: 30%;
    left: 20%;
    animation: floatUp 6s ease-in-out infinite;
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.badge-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 2px;
}

.unique-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.title-word {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue) 50%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: 0 0 20px rgba(253, 200, 61, 0.5);
}

/* Unique Grid - Now using Bootstrap grid */
.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Unique Cards */
.unique-card {
    perspective: 1000px;
    height: 400px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    will-change: transform;
}

.unique-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.card-front {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-back {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 20px 40px rgba(57, 168, 224, 0.3);
}

/* Front Card Elements */
.icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.unique-card .icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
}

.icon-wrapper i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(57, 168, 224, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.unique-card:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.unique-card:hover .icon-wrapper {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(57, 168, 224, 0.3);
}

.unique-card:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-preview {
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-preview p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.read-more-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-indicator i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.unique-card:hover .read-more-indicator i {
    transform: translateX(5px);
}

/* Back Card Elements */
.back-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.back-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.back-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-point {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.95rem;
}

.feature-point i {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-point span {
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }
}

/* Responsive Design - Bootstrap Grid Compatible */
@media (max-width: 1200px) {
    .unique-card {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .unique-section {
        padding: 80px 0;
    }
    
    .unique-title {
        font-size: 2.8rem;
    }
    
    .unique-card {
        height: 350px;
    }
    
    .card-front, .card-back {
        padding: 30px 25px;
    }
    
    .icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .unique-title {
        font-size: 2.2rem;
    }
    
    .unique-card {
        height: 320px;
        max-width: none; /* Remove max-width to use full Bootstrap column */
        margin: 0; /* Remove auto margins */
    }
    
    .card-front, .card-back {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-preview p {
        font-size: 0.95rem;
    }
    
    .bg-circle-1, .bg-circle-2, .bg-circle-3 {
        display: none;
    }
}

@media (max-width: 575px) {
    .unique-card {
        height: 300px;
    }
    
    .card-front, .card-back {
        padding: 20px 15px;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .card-preview p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Additional mobile-specific settings */
    .icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .icon-wrapper i {
        font-size: 1.3rem;
    }
}

/* Custom Scrollbar */
.unique-section::-webkit-scrollbar {
    display: none;
}


/* Services Section - Premium Award-winning Design */
.services-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    overflow: hidden;
    padding: 120px 0;
}

/* Background Elements */
.services-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    filter: blur(1px);
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    top: -200px;
    right: -200px;
    animation: floatReverse 25s ease-in-out infinite;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-blue));
    bottom: -150px;
    left: -150px;
    animation: floatSlow 20s ease-in-out infinite;
}

.bg-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    top: 30%;
    left: 5%;
    animation: floatReverse 30s ease-in-out infinite;
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-yellow), rgba(253, 200, 61, 0.3));
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-blue), rgba(57, 168, 224, 0.3));
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.orb-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-blue));
    bottom: 30%;
    left: 25%;
    animation-delay: 10s;
}

.orb-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-blue), rgba(57, 168, 224, 0.2));
    top: 10%;
    right: 10%;
    animation-delay: 7s;
}

/* Header Section */
.services-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.services-badge .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 20px;
}

.services-badge .badge-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 2px;
}

.services-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.title-gradient {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue) 50%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    position: relative;
    height: 280px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-inner {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(57, 168, 224, 0.2);
}

/* Service Icon */
.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.service-card:hover .icon-bg-shape {
    opacity: 0.2;
    transform: scale(1);
}

.icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(0.98);
    box-shadow: 0 15px 40px rgba(57, 168, 224, 0.2);
}

.service-card:hover .icon-wrapper i {
    transform: scale(1.02);
}

/* Icon Particles */
.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.particle-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0.1s;
}

.particle-2 {
    bottom: 25%;
    left: 15%;
    animation-delay: 0.2s;
}

.particle-3 {
    top: 60%;
    right: 20%;
    animation-delay: 0.3s;
}

.service-card:hover .particle {
    opacity: 0.8;
    animation: particleFloat 2s ease-in-out infinite;
}

/* Service Content */
.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-blue);
}

.service-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--dark);
}

.service-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service-card:hover .service-highlight {
    width: 80px;
}

/* Special CTA Card */
.service-cta-card {
    grid-column: 1 / -1;
    height: 200px;
    max-width: 600px;
    margin: 20px auto 0;
}

.service-cta-card .service-card-inner {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    color: white;
    justify-content: center;
}

.cta-content {
    text-align: center;
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-description {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(25px) rotate(-180deg);
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.2;
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        height: 260px;
    }
    
    .service-card-inner {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        height: 240px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card-inner {
        padding: 20px 15px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-cta-card {
        height: 180px;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .service-card {
        height: 220px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
}

/* Performance Optimizations */
.service-card {
    will-change: transform;
}

.service-card-inner {
    will-change: transform, box-shadow;
}

.icon-wrapper {
    will-change: transform;
}

/* Hover Effect Enhancements */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 168, 224, 0.1), rgba(253, 200, 61, 0.1));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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


/* For Whom Section - World's Most Perfect Design! 🌟 */
.for-whom-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f3e5f5 100%);
    overflow: hidden;
    padding: 120px 0;
    min-height: 100vh;
}

/* Background Elements */
.for-whom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-gradient-1 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 168, 224, 0.03) 0%, transparent 70%);
    animation: rotateGradient 30s linear infinite;
}

.bg-gradient-2 {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 200, 61, 0.03) 0%, transparent 70%);
    animation: rotateGradient 25s linear infinite reverse;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 15s ease-in-out infinite;
}

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

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.particle-4 {
    top: 40%;
    left: 70%;
    animation-delay: 9s;
}

.particle-5 {
    bottom: 60%;
    right: 30%;
    animation-delay: 12s;
}

/* Section Intro */
.section-intro {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}



.badge-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 2px solid rgba(253, 200, 61, 0.3);
    border-radius: 25px;
    animation: pulseDecoration 3s ease-in-out infinite;
}

.for-whom-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-text {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue) 50%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-underline {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.underline-wave {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow), var(--primary-blue));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.underline-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: waveSlide 2s ease-in-out infinite;
}

/* Image Showcase */
.image-showcase {
    position: relative;
    z-index: 2;
}

.showcase-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.image-frame {
    position: relative;
    width: 90%;
    height: 90%;
    margin: 5%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.main-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.image-frame:hover .main-showcase-image {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 35px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.image-frame:hover .image-glow {
    opacity: 0.3;
}

/* Testimonial Bubbles */
.testimonial-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 12px 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    animation: floatBubble 6s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 2s;
}

.bubble-3 {
    top: 45%;
    right: -10%;
    animation-delay: 4s;
}

.bubble-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bubble-icon {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.bubble-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.testimonial-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-yellow), rgba(253, 200, 61, 0.3));
    opacity: 0.6;
    animation: floatDeco 8s ease-in-out infinite;
}

.deco-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.deco-2 {
    width: 40px;
    height: 40px;
    bottom: 25%;
    right: -3%;
    animation-delay: 4s;
}

.deco-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(57, 168, 224, 0.4);
    animation: floatDeco 6s ease-in-out infinite;
}

.deco-3 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

/* For Whom Content */
.for-whom-content {
    position: relative;
    z-index: 2;
}

.content-items {
    margin-bottom: 50px;
}

.for-whom-item {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInItem 0.8s ease 0.5s forwards;
}

.for-whom-item:nth-child(2) {
    animation-delay: 0.7s;
}

.for-whom-item:nth-child(3) {
    animation-delay: 0.9s;
}

.for-whom-item:nth-child(4) {
    animation-delay: 1.1s;
}

.item-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.item-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(57, 168, 224, 0.3);
}

.item-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 168, 224, 0.05), transparent);
    transition: left 0.5s ease;
}

.item-wrapper:hover::before {
    left: 100%;
}

/* Item Icon */
.item-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.icon-main {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
}

.icon-main i {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.item-wrapper:hover .icon-background {
    opacity: 0.2;
    transform: scale(1.1);
}

.item-wrapper:hover .icon-main {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(57, 168, 224, 0.2);
}

.item-wrapper:hover .icon-pulse {
    opacity: 0.6;
    transform: scale(1.2);
    animation: iconPulse 2s ease-in-out infinite;
}

/* Item Content */
.item-content {
    flex-grow: 1;
    position: relative;
}

.item-text p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.item-wrapper:hover .item-text p {
    color: var(--primary-blue);
}

.item-highlight {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.item-wrapper:hover .item-highlight {
    width: 100%;
}

/* CTA Section */
.for-whom-cta {
    margin-top: 50px;
}

.cta-wrapper {
    padding: 35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(57, 168, 224, 0.3);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateCTA 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-description {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.primary-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-cta-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: left 0.5s ease;
}

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

.primary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-text {
    margin-right: 10px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.secondary-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.secondary-cta-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Animations */
@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

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

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

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

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .for-whom-title {
        font-size: 3rem;
    }
    
    .showcase-container {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .for-whom-section {
        padding: 80px 0;
    }
    
    .for-whom-title {
        font-size: 2.5rem;
    }
    
    .showcase-container {
        height: 400px;
        margin-bottom: 50px;
    }
    
    .testimonial-bubble {
        position: static;
        display: inline-block;
        margin: 10px;
    }
    
    .bubble-1, .bubble-2, .bubble-3 {
        position: static;
    }
    
    .item-wrapper {
        padding: 20px;
    }
    
    .item-icon {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .icon-main {
        width: 45px;
        height: 45px;
    }
    
    .icon-main i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .for-whom-title {
        font-size: 2rem;
    }
    
    .showcase-container {
        height: 300px;
    }
    
    .item-wrapper {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .item-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .item-text p {
        font-size: 1rem;
    }
    
    .cta-wrapper {
        padding: 25px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .primary-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .for-whom-section {
        padding: 60px 0;
    }
    
    .item-wrapper {
        margin-bottom: 15px;
    }
    
    .testimonial-bubble {
        padding: 8px 12px;
    }
    
    .bubble-text {
        font-size: 0.8rem;
    }
    
    .floating-particles {
        display: none;
    }
}

/* Performance Optimizations */
.for-whom-item {
    will-change: transform, opacity;
}

.item-wrapper {
    will-change: transform, box-shadow;
}

.image-frame {
    will-change: transform;
}

.testimonial-bubble {
    will-change: transform;
}



/* FAQ Section - Interactive Q&A Masterpiece 🤔✨ */
.faq-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 50%, #f0f8ff 100%);
    overflow: hidden;
    padding: 120px 0;
}

/* Background Elements */
.faq-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    opacity: 0.03;
    background: repeating-linear-gradient(
        45deg,
        var(--primary-blue),
        var(--primary-blue) 2px,
        transparent 2px,
        transparent 20px
    );
}

.bg-pattern-1 {
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    animation: patternMove 20s linear infinite;
}

.bg-pattern-2 {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    animation: patternMove 25s linear infinite reverse;
}

.floating-questions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-q {
    position: absolute;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(57, 168, 224, 0.1);
    animation: floatQuestion 15s ease-in-out infinite;
    pointer-events: none;
}

.q-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.q-2 {
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

.q-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.q-4 {
    top: 40%;
    right: 25%;
    animation-delay: 7s;
}

/* Section Header */
.faq-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 25px;
    background: rgba(57, 168, 224, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(57, 168, 224, 0.2);
    position: relative;
    z-index: 2;
}

.badge-sparkle {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-blue));
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkle 2s ease-in-out infinite;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-word {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue) 50%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.title-decoration {
    display: flex;
    justify-content: center;
}

.question-mark-decoration {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: questionBounce 3s ease-in-out infinite;
}

/* FAQ Search */
.faq-search-container {
    position: relative;
    z-index: 2;
}

.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    border: 2px solid rgba(57, 168, 224, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(57, 168, 224, 0.2);
    background: rgba(255, 255, 255, 1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow), var(--primary-blue));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.faq-search-input:focus + .search-icon + .search-glow {
    opacity: 0.3;
}

/* FAQ Container */
.faq-container {
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.faq-item.hidden {
    opacity: 0;
    transform: translateY(-20px);
    margin-bottom: 0;
    height: 0;
    overflow: hidden;
}

.faq-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* FAQ Question */
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    border: none;
    background: transparent;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.question-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.question-icon i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.question-text {
    flex-grow: 1;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.toggle-indicator {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.plus-horizontal,
.plus-vertical {
    position: absolute;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.plus-horizontal {
    width: 20px;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.plus-vertical {
    width: 3px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.question-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 168, 224, 0.05), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Hover and Active States */
.faq-question:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.faq-question:hover .icon-ripple {
    opacity: 0.6;
    transform: scale(1.2);
    animation: ripplePulse 2s ease-in-out infinite;
}

.faq-question:hover .question-text {
    color: var(--primary-blue);
}

.faq-question:hover .question-glow {
    opacity: 1;
}

.faq-question[aria-expanded="true"] .plus-vertical {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .plus-horizontal {
    background: var(--primary-yellow);
}

/* FAQ Answer */
.faq-answer {
    border-top: 1px solid rgba(57, 168, 224, 0.1);
}

.answer-content {
    padding: 30px;
    display: flex;
    gap: 20px;
    position: relative;
}

.answer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), rgba(253, 200, 61, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(253, 200, 61, 0.3);
}

.answer-text {
    flex-grow: 1;
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.answer-decoration {
    position: absolute;
    bottom: 15px;
    right: 30px;
}

.deco-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.3;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-2 {
    animation-delay: 0.2s;
}

.dot-3 {
    animation-delay: 0.4s;
}

/* No Results */
.no-results-message {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin-top: 30px;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    opacity: 0.7;
}

.no-results-message h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.no-results-message p {
    color: #6c757d;
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    position: relative;
    z-index: 2;
}

.cta-card {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 168, 224, 0.05) 0%, transparent 70%);
    animation: rotateBackground 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(57, 168, 224, 0.3);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    transition: all 0.4s ease;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    transition: all 0.3s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

.faq-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(57, 168, 224, 0.4);
}

.faq-cta-btn:hover .btn-content {
    color: white;
    text-decoration: none;
}

.faq-cta-btn:hover .btn-icon {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

.faq-cta-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Animations */
@keyframes patternMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(50px); }
}

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

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

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

@keyframes ripplePulse {
    0%, 100% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-title {
        font-size: 3rem;
    }
    
    .question-content {
        gap: 15px;
    }
    
    .question-icon {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-search-input {
        padding: 15px 50px 15px 20px;
        font-size: 1rem;
    }
    
    .question-content {
        gap: 15px;
    }
    
    .question-icon {
        width: 50px;
        height: 50px;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .answer-content {
        padding: 25px;
        gap: 15px;
    }
    
    .answer-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .question-content {
        gap: 12px;
    }
    
    .question-icon {
        width: 45px;
        height: 45px;
    }
    
    .question-icon i {
        font-size: 1.1rem;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .toggle-indicator {
        width: 35px;
        height: 35px;
    }
    
    .answer-content {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .answer-icon {
        margin: 0 auto;
    }
    
    .answer-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .floating-questions {
        display: none;
    }
}

@media (max-width: 575px) {
    .faq-search-input {
        padding: 12px 45px 12px 15px;
        font-size: 0.95rem;
    }
    
    .search-icon {
        right: 15px;
        font-size: 1.1rem;
    }
    
    .question-content {
        gap: 10px;
    }
    
    .question-icon {
        width: 40px;
        height: 40px;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .toggle-indicator {
        width: 30px;
        height: 30px;
    }
    
    .toggle-plus {
        width: 16px;
        height: 16px;
    }
    
    .plus-horizontal {
        width: 16px;
        height: 2px;
    }
    
    .plus-vertical {
        width: 2px;
        height: 16px;
    }
}

/* Performance Optimizations */
.faq-card {
    will-change: transform;
}

.faq-question {
    will-change: background-color;
}

.faq-cta-btn {
    will-change: transform;
}



/* Holiday Schedule Section - World's Most Epic Carousel 🎠✨ */
.holiday-schedule-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%, #f8fafc 100%);
    overflow: hidden;
    padding: 120px 0;
    min-height: 100vh;
}

/* Background Elements */
.schedule-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(57, 168, 224, 0.05), rgba(253, 200, 61, 0.05));
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
}

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

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -5%;
    animation-delay: 10s;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-el {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatElement 15s ease-in-out infinite;
}

.el-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.el-2 {
    top: 70%;
    right: 25%;
    animation-delay: 5s;
}

.el-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

.el-4 {
    top: 40%;
    right: 15%;
    animation-delay: 7s;
}

/* Section Header */
.schedule-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.schedule-badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    background: rgba(57, 168, 224, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(57, 168, 224, 0.2);
    position: relative;
    z-index: 2;
}

.badge-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.7;
    animation: particleFloat 3s ease-in-out infinite;
}


.schedule-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue) 30%, var(--primary-yellow) 70%, var(--dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 4s ease-in-out infinite;
}

.schedule-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.title-decoration {
    display: flex;
    justify-content: center;
}

.deco-calendar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 15px 35px rgba(57, 168, 224, 0.3);
    animation: calendarBounce 3s ease-in-out infinite;
}

/* Epic Carousel Container */
.epic-carousel-container {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

/* Desktop Carousel */
.desktop-carousel {
    position: relative;
    padding: 20px 0;
}

.scheduleSwiper {
    padding: 40px 60px 60px;
    overflow: visible;
}


.schedule-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 168, 224, 0.05), rgba(253, 200, 61, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.schedule-card:hover .card-background {
    opacity: 1;
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.schedule-card:hover .image-overlay {
    opacity: 1;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(57, 168, 224, 0.2), rgba(253, 200, 61, 0.2));
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.schedule-card:hover .overlay-pattern {
    opacity: 1;
}

/* Card Content */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.day-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.schedule-card:hover .badge-glow {
    opacity: 0.6;
}

.day-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.7rem;
}

.card-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Card Effects */
.card-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleEffect 2s ease-in-out infinite;
}

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

.s-2 {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
}

.s-3 {
    bottom: 30%;
    right: 30%;
    animation-delay: 1s;
}

.schedule-card:hover .sparkle {
    opacity: 1;
}

.day-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.indicator-line {
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s ease;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease 0.2s;
}

.schedule-card:hover .indicator-line {
    opacity: 1;
    transform: scaleX(1);
}

.schedule-card:hover .indicator-dot {
    opacity: 1;
    transform: scale(1);
}

/* Special Cards */
.intro-card {
    background: linear-gradient(135deg, rgba(57, 168, 224, 0.1), rgba(253, 200, 61, 0.1));
}


.cta-card {
    background: linear-gradient(135deg, rgba(253, 200, 61, 0.1), rgba(57, 168, 224, 0.1));
}

.cta-background {
    background: linear-gradient(135deg, rgba(253, 200, 61, 0.1), rgba(57, 168, 224, 0.1));
    opacity: 1;
}

.cta-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 1;
}

.cta-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-description {
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-sparkle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: ctaSparkleEffect 3s ease-in-out infinite;
}

.cs-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.cs-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.cs-3 {
    bottom: 40%;
    left: 30%;
    animation-delay: 1s;
}

.cs-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.cta-card:hover .cta-sparkle {
    opacity: 1;
}

/* Custom Navigation */
.swiper-navigation {
    position: relative;
    z-index: 10;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.custom-prev {
    left: -30px;
}

.custom-next {
    right: -30px;
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-prev:hover .nav-bg,
.custom-next:hover .nav-bg {
    opacity: 1;
}

.custom-prev:hover,
.custom-next:hover {
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(57, 168, 224, 0.3);
}

.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.custom-prev:hover .nav-ripple,
.custom-next:hover .nav-ripple {
    width: 80px;
    height: 80px;
    opacity: 0.3;
    animation: rippleAnimation 1.5s ease-out infinite;
}

/* Custom Pagination */
.custom-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(57, 168, 224, 0.3);
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(57, 168, 224, 0.5);
}

/* Mobile Carousel */
.mobile-carousel {
    padding: 20px 0;
}

.mobileScheduleSwiper {
    padding: 20px;
}

.mobile-schedule-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.mobile-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
}

.intro-mobile-badge {
    background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
    color: white;
}

.day-mobile-badge {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
}

.cta-mobile-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    align-items: center;
    justify-content: center;
}

.mobile-cta-content {
    text-align: center;
    color: white;
}

.mobile-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

.mobile-pagination {
    margin-top: 30px;
}

/* Epic CTA Section */
.schedule-cta {
    position: relative;
    z-index: 2;
}

.cta-container {
    position: relative;
    padding: 50px;
    backdrop-filter: blur(30px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.effect-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(57, 168, 224, 0.1), rgba(253, 200, 61, 0.1));
    animation: effectFloat 10s ease-in-out infinite;
}

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

.c-2 {
    width: 150px;
    height: 150px;
    bottom: -30%;
    right: -20%;
    animation-delay: 5s;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.6;
}

.epic-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.5s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    transition: all 0.4s ease;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    transition: all 0.3s ease;
}

.btn-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-glow-effect {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.epic-cta-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(57, 168, 224, 0.4);
}

.epic-cta-btn:hover .btn-content {
    color: white;
    text-decoration: none;
}

.epic-cta-btn:hover .btn-icon-container {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.3);
}

.epic-cta-btn:hover .btn-glow-effect {
    opacity: 0.6;
}

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

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-25px) scale(1.2);
        opacity: 0.3;
    }
}

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

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

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

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

@keyframes ctaSparkleEffect {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes rippleAnimation {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0.3;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .schedule-title {
        font-size: 3.5rem;
    }
    
    .schedule-card {
        height: 400px;
    }
    
    .scheduleSwiper {
        padding: 30px 40px 50px;
    }
}

@media (max-width: 991px) {
    .holiday-schedule-section {
        padding: 80px 0;
    }
    
    .schedule-title {
        font-size: 3rem;
    }
    
    .schedule-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-container {
        padding: 40px 30px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 767px) {
    .schedule-title {
        font-size: 2.5rem;
    }
    
    .schedule-subtitle {
        font-size: 1.1rem;
    }
    
    .mobile-schedule-card {
        height: 300px;
    }
    
    .cta-container {
        padding: 30px 20px;
    }
    
    .cta-heading {
        font-size: 1.8rem;
    }
    
    .epic-cta-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .btn-content {
        gap: 12px;
    }
    
    .btn-icon-container {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 575px) {
    .holiday-schedule-section {
        padding: 60px 0;
    }
    
    .schedule-title {
        font-size: 2rem;
    }
    
    .deco-calendar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mobile-schedule-card {
        height: 400px;
    }
    
    .mobile-badge {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .cta-heading {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .epic-cta-btn {
        padding: 16px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Performance Optimizations */
.schedule-card {
    will-change: transform;
}

.epic-cta-btn {
    will-change: transform;
}

.custom-prev,
.custom-next {
    will-change: transform;
}

/* Focus states for accessibility */
.epic-cta-btn:focus,
.custom-prev:focus,
.custom-next:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}


/* Schedule Card boyut düzeltmeleri - 1350x1080 px oranı için */
.schedule-card {
    position: relative;
    height: 700px; /* 450px'den 400px'e düşürdük */
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 70%; /* 60%'dan 70%'e çıkardık - görsel alanı artırdık */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.schedule-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 1350x1080 boyutlarına uyum sağlayacak */
    object-position: center;
    transition: transform 0.5s ease;
}

/* Card Content - alttaki bölümü küçülttük */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 25px; /* 25px'den 20px'e düşürdük */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    height: 30%; /* Sabit yükseklik verdik */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Day Badge - daha subtle hale getirdik */
.day-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* 10px'den 8px'e düşürdük */
    padding: 8px 16px; /* 10px 20px'den 8px 16px'e düşürdük */
    background: linear-gradient(135deg, rgba(57, 168, 224, 0.8), rgba(253, 200, 61, 0.8)); /* Biraz şeffaflık ekledik */
    color: white;
    border-radius: 15px; /* 20px'den 15px'e düşürdük */
    font-weight: 500; /* 600'den 500'e düşürdük */
    font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürdük */
    margin-bottom: 10px; /* 15px'den 10px'e düşürdük */
    overflow: hidden;
    opacity: 0.9; /* Biraz şeffaflık ekledik */
}

.day-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px; /* 25px'den 22px'e düşürdük */
    height: 22px; /* 25px'den 22px'e düşürdük */
    background: rgba(255, 255, 255, 0.25); /* Biraz daha şeffaf */
    border-radius: 50%;
    font-weight: 600; /* 700'den 600'a düşürdük */
    font-size: 0.75rem; /* 0.8rem'den 0.75rem'e düşürdük */
}

/* Card Description - daha kompakt */
.card-description {
    color: #64748b;
    font-size: 0.9rem; /* 0.95rem'den 0.9rem'e düşürdük */
    line-height: 1.4; /* 1.5'ten 1.4'e düşürdük */
    margin: 0;
}

/* Mobile Card düzeltmeleri */
.mobile-schedule-card {
    height: 500px; /* 350px'den 320px'e düşürdük */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* 1350x1080 oranına uyum */
}

/* Mobile Badge - daha subtle */
.mobile-badge {
    padding: 8px 16px; /* 10px 20px'den 8px 16px'e */
    background: rgba(255, 255, 255, 0.85); /* Biraz şeffaflık */
    backdrop-filter: blur(10px);
    border-radius: 15px; /* 20px'den 15px'e */
    color: var(--primary-blue);
    font-weight: 500; /* 600'den 500'e */
    font-size: 0.9rem; /* Biraz küçülttük */
    text-align: center;
}

/* Responsive düzeltmeler */
@media (max-width: 1200px) {
    .schedule-card {
        height: 360px; /* 400px'den 360px'e */
    }
}

@media (max-width: 991px) {
    .schedule-card {
        height: 340px; /* 360px'den 340px'e */
    }
    
    .card-content {
        padding: 18px 20px;
    }
}

@media (max-width: 767px) {
    .mobile-schedule-card {
        height: 400px; /* 320px'den 280px'e */
    }
    
    .mobile-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .mobile-schedule-card {
        height: 400px; /* 280px'den 260px'e */
    }
    
    .mobile-badge {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Image aspect ratio için yardımcı class */
.schedule-image, .mobile-image {
    aspect-ratio: 1.25; /* 1350/1080 = 1.25 oranı */
}



/* Hero Section - World's Most Epic Landing 🌟 */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
}

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

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.8) 0%,
        rgba(30, 41, 59, 0.6) 25%,
        rgba(57, 168, 224, 0.3) 50%,
        rgba(253, 200, 61, 0.2) 75%,
        rgba(15, 23, 42, 0.8) 100%
    );
}

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

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(57, 168, 224, 0.1), rgba(253, 200, 61, 0.1));
    border-radius: 50%;
    animation: heroFloat 15s ease-in-out infinite;
    filter: blur(2px);
}

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

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

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

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    right: 35%;
    animation-delay: 12s;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleMove 20s linear infinite;
}


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

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-yellow), transparent);
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 100px 0;
    color: white;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 30px;
}

.badge-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50px;
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
    animation: badgeGlow 3s ease-in-out infinite;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.badge-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: sparkleEffect 2s ease-in-out infinite;
}

.sp-1 { top: 20%; left: 20%; animation-delay: 0s; }
.sp-2 { top: 70%; right: 25%; animation-delay: 0.7s; }
.sp-3 { bottom: 30%; left: 60%; animation-delay: 1.4s; }

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 3vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Capriola', sans-serif;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: titleGradient 4s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(57, 168, 224, 0.3);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.subtitle-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.subtitle-decoration {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite;
}

/* Hero Description */
.hero-description {
    margin-bottom: 50px;
    position: relative;
}

.description-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.description-highlight {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 60px;
}

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

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

/* Primary Button */
.primary-btn .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50px;
    transition: all 0.4s ease;
}

.primary-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.primary-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.primary-btn .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%);
    transition: all 0.6s ease;
}

.primary-btn .btn-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(57, 168, 224, 0.4);
}

.primary-btn:hover .btn-content {
    color: white;
    text-decoration: none;
}

.primary-btn:hover .btn-icon {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

.primary-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.primary-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Secondary Button */
.secondary-btn .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.secondary-btn .btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.secondary-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.secondary-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    transform: translateY(-3px);
}

.secondary-btn:hover .btn-content {
    color: white;
    text-decoration: none;
}

.secondary-btn:hover .btn-background {
    background: rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover .btn-border {
    border-color: rgba(255, 255, 255, 0.6);
}

.secondary-btn:hover .btn-icon {
    transform: translateY(3px);
}

/* Trust Indicators */
.hero-trust {
    margin-bottom: 40px;
}

.trust-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(57, 168, 224, 0.3);
}

.trust-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

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

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Scroll Indicator - Enhanced */
.scroll-indicator {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-mouse {
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse-body {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s ease-in-out infinite;
}

.mouse-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    opacity: 0;
    animation: mouseGlow 3s ease-in-out infinite;
}

.scroll-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.text-arrow {
    animation: arrowBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: lineExtend 2s ease-in-out infinite;
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Video Button */
.floating-video-btn {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    pointer-events: all;
}

.video-btn-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-play-btn {
    position: relative;
    width: 70px;
    height: 70px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-icon {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: playRipple 2s ease-out infinite;
}

.video-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

/* Contact Float */
.floating-contact {
    position: absolute;
    top: 40%;
    right: 50px;
    pointer-events: all;
}

.contact-float-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-text {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-pulse {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: contactPulse 2s ease-out infinite;
}

.contact-float-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}

.contact-float-btn:hover .contact-bg {
    opacity: 0.2;
}

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

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.gl-1 {
    width: 100%;
    height: 1px;
    top: 25%;
    animation: gridMove 10s linear infinite;
}

.gl-2 {
    width: 1px;
    height: 100%;
    left: 25%;
    animation: gridMove 12s linear infinite reverse;
}

.gl-3 {
    width: 100%;
    height: 1px;
    top: 75%;
    animation: gridMove 14s linear infinite;
}

.gl-4 {
    width: 1px;
    height: 100%;
    right: 25%;
    animation: gridMove 16s linear infinite reverse;
}

/* Light Beams */
.light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.beam {
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    width: 2px;
    height: 100%;
    animation: beamMove 8s linear infinite;
}

.beam-1 {
    left: 20%;
    animation-delay: 0s;
}

.beam-2 {
    left: 50%;
    animation-delay: 2s;
}

.beam-3 {
    right: 20%;
    animation-delay: 4s;
}

/* Twinkling Stars */
.twinkling-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.star-1 { top: 15%; left: 20%; animation-delay: 0s; }
.star-2 { top: 30%; right: 25%; animation-delay: 0.6s; }
.star-3 { bottom: 40%; left: 30%; animation-delay: 1.2s; }
.star-4 { bottom: 20%; right: 40%; animation-delay: 1.8s; }
.star-5 { top: 60%; left: 60%; animation-delay: 2.4s; }

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

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

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes badgeGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

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

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

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

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

@keyframes mouseGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

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

@keyframes lineExtend {
    0% {
        height: 30px;
        opacity: 0.6;
    }
    50% {
        height: 50px;
        opacity: 1;
    }
    100% {
        height: 30px;
        opacity: 0.6;
    }
}

@keyframes playRipple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes contactPulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(2);
        opacity: 0;
    }
}

@keyframes gridMove {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

@keyframes beamMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-video-btn {
        left: 50px;
    }
    
    .floating-contact {
        right: 30px;
    }
    
    .trust-container {
        gap: 25px;
        padding: 20px 25px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding: 80px 0;
    }
    
    .floating-video-btn,
    .floating-contact {
        display: none;
    }
    
    .cta-container {
        gap: 15px;
    }
    
    .hero-btn {
        min-width: 180px;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .trust-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 60px 0;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .trust-container {
        gap: 15px;
        padding: 15px 20px;
    }
    
    .trust-item {
        gap: 8px;
    }
    
    .trust-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .trust-number {
        font-size: 1.3rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    .scroll-indicator {
        bottom: -90px;
    }
}

@media (max-width: 575px) {
    .badge-container {
        padding: 10px 25px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .description-text {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
        .scroll-indicator {
        bottom: -110px;
    }
}

/* Performance optimizations */
.hero-section * {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-section * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Contact Section - Epic Contact Experience 💫 */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

/* Contact Header */
.contact-header {
    position: relative;
    z-index: 2;
}

.contact-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(57, 168, 224, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(57, 168, 224, 0.2);
    margin-bottom: 30px;
    overflow: hidden;
}

.contact-badge .badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
}

.contact-badge .badge-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-badge .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleContact 2s ease-in-out infinite;
}

.contact-badge .sp-1 { top: 20%; left: 20%; animation-delay: 0s; }
.contact-badge .sp-2 { top: 70%; right: 25%; animation-delay: 0.7s; }
.contact-badge .sp-3 { bottom: 30%; left: 60%; animation-delay: 1.4s; }

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'Capriola', sans-serif;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-yellow) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: titleGradientContact 4s ease-in-out infinite;
}

.contact-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.title-decoration {
    display: flex;
    justify-content: center;
}

.decoration-heart {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: heartBeat 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(57, 168, 224, 0.3);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    position: relative;
    height: 100%;
}

.info-card-inner {
    position: relative;
    height: 100%;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-align: center;
}

.info-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(57, 168, 224, 0.2);
}

.info-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    color: white;
    font-size: 1.5rem;
    overflow: hidden;
}

.info-icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.info-icon .icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconPulse 2s ease-out infinite;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.info-text {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.info-link:hover {
    color: var(--primary-yellow);
    text-decoration: none;
}

/* Epic Contact Form */
.epic-contact-form-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 168, 224, 0.05), rgba(253, 200, 61, 0.05));
}

.form-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        var(--primary-blue) 20px,
        var(--primary-blue) 40px
    );
}

.form-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Capriola', sans-serif;
}

.form-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.field-full {
    grid-column: 1 / -1;
}

.field-special {
    grid-column: 1 / -1;
}

.form-field {
    position: relative;
}

.field-wrapper {
    position: relative;
}

.field-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.input-container,
.textarea-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.epic-input,
.epic-textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid rgba(57, 168, 224, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.epic-input:focus,
.epic-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(57, 168, 224, 0.2);
}

.epic-input:focus + .input-glow,
.epic-textarea:focus + .input-glow {
    opacity: 1;
    transform: scale(1.02);
}

.epic-input:focus ~ .input-icon,
.epic-textarea:focus ~ .input-icon {
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.input-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    filter: blur(8px);
}

.input-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 15px;
    transition: width 0.4s ease;
    z-index: 1;
    opacity: 0.1;
}

.epic-input:focus ~ .input-border,
.epic-textarea:focus ~ .input-border {
    width: 100%;
}

/* Epic Submit Button */
.form-submit {
    text-align: center;
}

.epic-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    min-width: 250px;
}

.epic-submit-btn .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 50px;
    transition: all 0.4s ease;
}

.epic-submit-btn .btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.epic-submit-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.epic-submit-btn .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%);
    transition: all 0.6s ease;
    z-index: 2;
}

.epic-submit-btn .btn-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 54px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.epic-submit-btn .btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.epic-submit-btn .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: buttonParticles 3s ease-in-out infinite;
}

.epic-submit-btn .particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.epic-submit-btn .particle-2 { top: 70%; right: 25%; animation-delay: 1s; }
.epic-submit-btn .particle-3 { bottom: 30%; left: 60%; animation-delay: 2s; }

.epic-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(57, 168, 224, 0.4);
}

.epic-submit-btn:hover .btn-icon {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

.epic-submit-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.epic-submit-btn:hover .btn-glow {
    opacity: 0.6;
}

.epic-submit-btn:active {
    transform: translateY(-2px);
}

/* Form Status */
.epic-form-status {
    margin-top: 25px;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: statusSlideIn 0.4s ease-out;
}

.epic-form-status.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    border-color: rgba(34, 197, 94, 0.2);
}

.epic-form-status.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

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

.floating-heart {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatingHearts 6s ease-in-out infinite;
}

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

.heart-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.heart-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

.form-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 168, 224, 0.1), transparent);
    transform: translate(-50%, -50%);
    animation: formGlowPulse 4s ease-in-out infinite;
}

/* Background Elements */
.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: bgFloat 15s ease-in-out infinite;
}

.bg-gradient-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-gradient-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-yellow), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 7s;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-shapes .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(57, 168, 224, 0.1), rgba(253, 200, 61, 0.1));
    border-radius: 50%;
    animation: shapeFloat 20s ease-in-out infinite;
}

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

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

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 60%;
    animation-delay: 10s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 10%;
    animation-delay: 15s;
}

.message-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    animation: bubbleFloat 8s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(57, 168, 224, 0.2);
}

.bubble-1 {
    animation-delay: 0s;
}

.bubble-2 {
    animation-delay: 3s;
}

.bubble-3 {
    animation-delay: 6s;
}

/* Animations */
@keyframes sparkleContact {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

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

@keyframes statusSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes formGlowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes bgFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

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

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info-grid {
        gap: 25px;
    }
    
    .form-content {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .form-grid {
        gap: 20px;
    }
    
    .form-content {
        padding: 35px 25px;
    }
    
    .epic-submit-btn {
        min-width: 220px;
        padding: 18px 40px;
    }
}

@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .field-special {
        grid-column: 1;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .epic-input,
    .epic-textarea {
        padding: 16px 18px 16px 50px;
    }
    
    .epic-submit-btn {
        min-width: 200px;
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .info-card-inner {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .contact-badge {
        padding: 10px 25px;
    }
    
    .contact-badge .badge-text {
        font-size: 12px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .epic-submit-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Focus States for Accessibility */
.epic-input:focus,
.epic-textarea:focus,
.epic-submit-btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .info-card-inner {
        background: white;
        border: 2px solid var(--dark);
    }
    
    .epic-input,
    .epic-textarea {
        background: white;
        border: 2px solid var(--dark);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .contact-section *,
    .contact-section *::before,
    .contact-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .contact-bg-elements,
    .form-effects {
        display: none;
    }
    
    .contact-section {
        background: white;
    }
    
    .form-background {
        background: white;
        box-shadow: none;
    }
}