/* Dragon Festivali - Modern Premium Tasarım */

:root {
    --dragon-red: #dc3545;
    --dragon-yellow: #ffc107;
    --dragon-blue: #0d6efd;
    --dragon-dark: #212529;
    --dragon-light-blue: #e7f3ff;
    --dragon-dark-grey: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 100px;
}

/* Scrollbar Stilleri */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--dragon-red);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

/* Firefox için scrollbar stilleri */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--dragon-red) #f1f1f1;
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
}

/* Top Bar - Removed */

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--dragon-yellow);
}

.social-icons a {
    font-size: 1.2rem;
    margin: 0 8px;
}

/* Navigation */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 0 16px;
    transition: all 0.3s;
    z-index: 1000;
    top: 0 !important;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dragon-red);
}

.navbar .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 992px) {
    .navbar .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.navbar-brand {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 0;
    flex-shrink: 0;
}

.navbar-brand img {
    max-height: 80px;
    height: 80px;
    width: auto;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a237e;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1a237e;
    border-radius: 2px;
}

.logo-events {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 1px;
    margin-left: 0;
    margin-top: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.navbar-collapse {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .navbar-collapse {
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
}

.navbar-nav {
    gap: 0;
    align-items: center;
    position: relative;
    flex: 1;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 8px;
        justify-content: center;
        flex-wrap: nowrap;
    }
}

.navbar-nav.ms-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


.nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0;
    padding: 12px 16px !important;
    border-radius: 0;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        margin: 0;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--dragon-red) !important;
    background: transparent;
}

.navbar-nav .nav-link.active {
    background: var(--dragon-red) !important;
    color: white !important;
    border-radius: 8px;
}

.nav-item-home-vertical {
    margin-right: 8px;
}

.navbar-nav .nav-link-home-vertical {
    padding: 0 !important;
    margin: 0 !important;
    background: var(--dragon-red);
    color: white !important;
    width: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    height: 100%;
}

.navbar-nav .nav-link-home-vertical span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 12px 6px;
    line-height: 1;
    white-space: nowrap;
}

.navbar-nav .nav-link-home-horizontal {
    background: var(--dragon-red);
    color: white !important;
    padding: 12px 20px !important;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 0 !important;
    margin-right: 3px;
    border-radius: 8px;
    white-space: nowrap;
}

.navbar-nav .nav-link-home-horizontal.active {
    background: var(--dragon-red);
    color: white !important;
}

.dropdown-toggle::after {
    margin-left: 5px;
    font-size: 0.7rem;
}

.btn-register {
    background: var(--dragon-red) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
    margin-left: 20px;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
}

.btn-register span {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    line-height: 1;
    padding: 0;
    white-space: nowrap;
    display: inline-block;
}

.btn-register:hover {
    background: #c82333 !important;
    transform: none;
    box-shadow: none;
    color: white !important;
    text-decoration: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    min-width: 220px;
}

.dropdown-item {
    padding: 12px 25px;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--dragon-dark);
}

.dropdown-item:hover {
    background: var(--dragon-red);
    color: white;
}

.dropdown-divider {
    margin: 8px 0;
    opacity: 0.2;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 0;
    overflow: hidden;
    margin-top: -100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        margin-top: -80px;
    }
}

.hero-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 1200 600"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect fill="url(%23grain)" width="1200" height="600"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-hero {
    background: var(--dragon-red);
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.5);
    background: #c00000;
    color: white;
}

/* Dates Section - Modern Design */
.dates-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 50px 0;
    position: relative;
}

.dates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dragon-red), transparent);
}

.modern-date-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    transform: scale(0.85);
}

.modern-date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #999, #bbb);
    transition: all 0.4s;
}

.modern-date-card.upcoming-event::before {
    background: var(--dragon-red);
}

.modern-date-card:hover {
    transform: scale(0.85) translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.15);
}

.modern-date-card.upcoming-event {
    border: 2px solid var(--dragon-red);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.25);
}

.modern-date-card.upcoming-event:hover {
    box-shadow: 0 25px 60px rgba(220, 53, 69, 0.35);
}

.date-card-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-date-card.upcoming-event .date-card-header {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
}

.year-badge {
    font-size: 1.1rem;
    font-weight: 900;
    color: #666;
    letter-spacing: 1.5px;
}

.year-badge.highlight {
    color: var(--dragon-red);
    font-size: 1.2rem;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.status-badge.completed {
    background: #e9ecef;
    color: #6c757d;
}

.status-badge.upcoming {
    background: var(--dragon-red);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

.date-card-body {
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.calendar-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #ddd;
    transition: all 0.3s;
}

.calendar-icon.active {
    color: var(--dragon-red);
    animation: bounce-icon 1s ease-in-out infinite;
}

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

.date-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #333;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.date-number.highlight {
    color: var(--dragon-red);
    text-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.date-month {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.date-month.highlight {
    color: var(--dragon-red);
}

.date-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-top: 15px;
}

.date-location i {
    color: var(--dragon-red);
    font-size: 1.1rem;
}

.date-card-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.date-card-footer.active {
    background: var(--dragon-red);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.event-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

.date-card-footer.active .event-stat {
    color: white;
}

.event-stat i {
    font-size: 1rem;
}

/* Öne çıkan tarih kartı (9 Mayıs) */
.date-card-featured {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
}
.date-card-featured .date-number {
    font-size: 4rem;
}
.date-card-featured .date-month {
    font-size: 1.4rem;
    letter-spacing: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .dates-section {
        padding: 40px 0;
    }
    
    .date-number {
        font-size: 4rem;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    .dates-section {
        padding: 30px 0;
    }
    
    .date-card-body {
        padding: 30px 20px;
    }
    
    .date-number {
        font-size: 3.5rem;
    }
    
    .date-month {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .status-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
        letter-spacing: 0.3px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .date-card-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .year-badge {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .status-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        letter-spacing: 0.2px;
    }
    
    .date-card-header {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .year-badge {
        font-size: 1rem;
    }
    
    .date-number {
        font-size: 3rem;
    }
}

/* Festival Info Section */
.festival-info-section {
    background: var(--dragon-red);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.festival-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.video-frame {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.video-frame::before {
    content: '▶';
    position: absolute;
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

/* Statistics Section */
.stats-section {
    background: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dragon-red);
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.3) 10px,
        rgba(255, 255, 255, 0.3) 20px
    );
    z-index: 1;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220, 53, 69, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    z-index: 0;
}

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

.stats-section .row {
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    gap: 20px;
}

.stats-section .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    min-width: 0;
    max-width: 100%;
    flex: 0 1 auto;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    width: auto;
    min-width: fit-content;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.stat-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--dragon-red);
    line-height: 1;
    margin-bottom: 24px;
    min-height: 4rem;
    display: block;
    text-align: center;
    letter-spacing: -2px;
    white-space: nowrap;
    overflow: visible;
    width: auto;
    max-width: 100%;
    word-break: keep-all;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.stat-label {
    font-size: 1rem;
    color: #343a40;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
}

@media (max-width: 1199px) {
    .stat-number {
        font-size: 3.2rem;
        min-height: 3.5rem;
        margin-bottom: 20px;
    }
    
    .stat-box {
        padding: 30px 10px;
    }
}

@media (max-width: 991px) {
    .stats-section {
        padding: 50px 0 20px;
    }
    
    .stats-section .row {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.8rem;
        min-height: 3rem;
        margin-bottom: 18px;
        letter-spacing: -1.5px;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .stat-box {
        padding: 25px 15px;
    }
    
    .stats-section .row > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
        flex: 0 1 auto;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0 15px;
    }
    
    .stats-section .row {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        min-height: 2.5rem;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-box {
        padding: 20px 12px;
    }
    
    .stats-section .row > [class*="col-"] {
        padding-left: 4px;
        padding-right: 4px;
        flex: 0 1 auto;
    }
}

/* Features Section */
.features-section {
    background: white;
    padding: 60px 0;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dragon-red);
    margin-top: 0;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Kurumsal Hafta Sonu - Modern Tasarım */
.corporate-weekend-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
    padding: 60px 0 !important;
    position: relative !important;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 50px;
}

.corporate-weekend-section .container {
    position: relative !important;
    z-index: 100 !important;
    display: block !important;
    visibility: visible !important;
}

.corporate-weekend-section .text-center,
.corporate-weekend-section .row {
    position: relative !important;
    z-index: 100 !important;
    display: block !important;
    visibility: visible !important;
}

.corporate-weekend-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.01) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

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

.corporate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
    }
}

.corporate-badge i {
    font-size: 1rem;
}

.section-title-corporate {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dragon-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

.corporate-highlight {
    color: var(--dragon-red);
    position: relative;
    display: inline-block;
}

.corporate-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dragon-red) 0%, #c82333 100%);
    border-radius: 2px;
}

.section-subtitle-corporate {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    line-height: 1.8;
    font-weight: 400;
}

.title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--dragon-red) 0%, #c82333 100%);
    margin-top: 20px;
    border-radius: 2px;
    position: relative;
}

.title-divider::before,
.title-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--dragon-red);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.title-divider::before {
    left: -15px;
}

.title-divider::after {
    right: -15px;
}

/* Modern Feature Kartları */
.feature-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dragon-red) 0%, #c82333 50%, #b71c1c 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.1);
}

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

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 0;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    flex-shrink: 0;
}

.icon-red {
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.icon-yellow {
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.icon-blue {
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.icon-green {
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-top: 20px;
    flex-shrink: 0;
}

.feature-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover .feature-image-modern {
    transform: scale(1.15);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(200, 35, 51, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s;
}

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

.feature-card-modern:hover .feature-overlay i {
    transform: scale(1);
}

.feature-content {
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dragon-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 900;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-text-modern {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    flex: 1;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(200, 35, 51, 0.1) 100%);
    color: var(--dragon-red);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(220, 53, 69, 0.2);
    margin-top: auto;
    align-self: center;
}

/* CTA Butonu */
.btn-corporate-cta {
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

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

.btn-corporate-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
    color: white;
}

.btn-corporate-cta:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px) {
    .corporate-weekend-section {
        padding: 50px 0;
    }
    
    .section-title-corporate {
        font-size: 2.5rem;
    }
    
    .section-subtitle-corporate {
        font-size: 1.1rem;
    }
    
    .feature-card-modern {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title-corporate {
        font-size: 2rem;
    }
    
    .section-subtitle-corporate {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .feature-image-container {
        height: 180px;
    }
    
    .feature-title-modern {
        font-size: 1.1rem;
    }
    
    .btn-corporate-cta {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Program Section */
.program-section {
    background: var(--dragon-yellow);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.05) 20px,
        rgba(255,255,255,0.05) 40px
    );
}

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

.program-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.program-list li {
    padding: 15px 0;
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    position: relative;
    padding-left: 40px;
}

.program-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.program-list li:last-child {
    border-bottom: none;
}

/* Area Section */
.area-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.area-section .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2) !important;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.02) 0%, white 100%) !important;
}

.area-section .card:hover > div:first-of-type {
    background: linear-gradient(90deg, var(--dragon-red) 0%, #c82333 100%) !important;
    height: 6px !important;
}

/* Sponsors Section */
.sponsors-section {
    background: white;
    padding: 60px 0;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sponsor-logo {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.sponsor-logo:hover {
    border-color: var(--dragon-red);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.sponsor-logo:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.btn-cta {
    background: white;
    color: var(--dragon-red);
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    background: #f8f9fa;
    color: var(--dragon-red);
}

/* Footer */
footer {
    color: var(--dragon-dark);
}

.footer-main {
    background: #F5F5F5;
    padding: 60px 0 40px;
}

.footer-main .row {
    align-items: stretch;
}

.footer-main .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: flex-start;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
    background: var(--dragon-dark);
    padding: 10px 20px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-logo .logo-dragon {
    color: var(--dragon-yellow);
}

.footer-logo .logo-festival {
    color: white;
    margin-left: 5px;
}

.footer-company-name {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    align-items: flex-start;
    width: 100%;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--dragon-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.social-icon:hover {
    background: #c00000;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.5);
    color: white;
}

.footer-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-section h5 {
    color: var(--dragon-red);
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--dragon-red);
}

.footer-section p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-section p strong {
    color: var(--dragon-dark);
    font-weight: 600;
}

.footer-bottom {
    background: #cc0033;
    color: white;
    padding: 20px 0;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: white;
    text-align: center;
}

.scroll-top {
    width: 50px;
    height: 50px;
    background: var(--dragon-red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: #c41e3a;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Modern Animations for About Page */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Parallax Effect for Hero */
.about-hero-modern .about-hero-bg {
    transition: transform 0.3s ease-out;
}

/* Glassmorphism Effect */
.modern-glass-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Hover Effects */
.gallery-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text Gradient */
.gradient-text {
    background: linear-gradient(135deg, var(--dragon-red) 0%, var(--dragon-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Shine Effect */
.modern-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s;
    pointer-events: none;
}

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

/* Modern Scrollbar for About Page */
.about-default-content::-webkit-scrollbar {
    width: 8px;
}

.about-default-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.about-default-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--dragon-red) 0%, var(--dragon-yellow) 100%);
    border-radius: 10px;
}

.about-default-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c82333 0%, var(--dragon-red) 100%);
}

/* Content Pages */
.content-section {
    padding: 140px 0 80px;
    background: white;
    margin-top: 0;
}

@media (max-width: 991px) {
    .content-section {
        padding: 100px 0 60px;
    }
}

.content-section h1 {
    color: var(--dragon-red);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.content h2, .content h3 {
    color: var(--dragon-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* News Cards */
.news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

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

.news-card img {
    height: 250px;
    object-fit: cover;
}

/* Featured News Cards */
.card.h-100:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* News List Cards */
.card.mb-4:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
    /* Mobil menüde container-fluid düzenlemesi */
    .navbar .container-fluid {
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap;
    }
    
    /* Full Screen Mobil Menü */
    .navbar-collapse,
    .navbar-collapse.mobile-menu-fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 9999;
        padding: 0;
        margin: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    /* Navbar Toggler Animasyonu */
    .navbar-toggler {
        border: 2px solid var(--dragon-red);
        padding: 8px 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    }
    
    .navbar-toggler-icon {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transform: rotate(90deg);
    }
    
    /* Mobil Menü Header */
    .mobile-menu-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        padding: 18px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10500;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        border-bottom: 3px solid var(--dragon-red);
        min-height: 75px;
    }
    
    .mobile-menu-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-logo img {
        max-height: 45px;
        width: auto;
    }
    
    .mobile-menu-logo .logo-wrapper {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }
    
    .mobile-menu-logo .logo-text {
        color: var(--dragon-dark);
        font-size: 1.3rem;
        font-weight: 900;
        letter-spacing: 2px;
    }
    
    .mobile-menu-logo .logo-events {
        color: var(--dragon-red);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 3px;
        margin-top: 2px;
    }
    
    /* Kapatma butonu */
    .mobile-menu-close {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        background: rgba(220, 53, 69, 0.1);
        border: 2px solid var(--dragon-red);
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--dragon-red);
        cursor: pointer;
        z-index: 10600;
        padding: 0;
        line-height: 1;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu-close:hover {
        background: var(--dragon-red);
        color: white;
        transform: translateY(-50%) rotate(90deg);
        border-color: var(--dragon-red);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    }
    
    .mobile-menu-close i {
        font-size: 1.2rem;
    }
    
    /* Bootstrap Collapsing Animasyonu Override */
    .collapsing {
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 12px;
        margin: 0;
        padding: 100px 15px 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
        align-items: stretch;
        margin-top: 250px;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 16px 20px !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
        border: 2px solid #e9ecef;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        text-align: left !important;
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
        margin: 0;
        color: var(--dragon-dark) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--dragon-red);
        transform: scaleY(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
        border-color: var(--dragon-red);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
    }
    
    .navbar-nav .nav-link:hover::before {
        transform: scaleY(1);
    }
    
    .navbar-nav .nav-link-home-horizontal {
        margin: 0 !important;
        background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%) !important;
        color: white !important;
        border-color: var(--dragon-red) !important;
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }
    
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
        color: white !important;
        border-color: var(--dragon-red);
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }
    
    .navbar-nav .nav-link.active::before {
        display: none;
    }
    
    /* Dropdown toggle ikonları mobilde */
    .navbar-nav .dropdown-toggle::after {
        font-size: 0.65rem;
        margin-left: 6px;
        vertical-align: 0.15em;
    }
    
    .mobile-menu-content {
        margin-top: 0;
        padding: 20px 15px 15px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
        background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
        border-top: 2px solid #e9ecef;
    }
    
    .mobile-menu-section {
        margin-bottom: 25px;
        text-align: left;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 5px;
    }
    
    .mobile-menu-section h5 {
        color: var(--dragon-red);
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-size: 1rem;
        text-align: left;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-menu-section p {
        color: #555;
        margin-bottom: 10px;
        font-size: 0.9rem;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .mobile-menu-section p i {
        color: var(--dragon-red);
        font-size: 1rem;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .btn-register-mobile {
        background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%) !important;
        color: white !important;
        padding: 16px 24px !important;
        border-radius: 12px !important;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        border: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-register-mobile::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn-register-mobile:hover {
        background: linear-gradient(135deg, #c82333 0%, #b71c1c 100%) !important;
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    }
    
    .btn-register-mobile:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .btn-register-mobile:active {
        transform: translateY(0);
    }
    
    .mobile-social-icons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
    }
    
    .social-icon-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 14px;
        background: #f8f9fa;
        border-radius: 8px;
        color: var(--dragon-dark);
        text-decoration: none;
        transition: all 0.3s;
        text-align: center;
        flex: 0 0 auto;
        min-width: auto;
        box-sizing: border-box;
        font-size: 0.85rem;
    }
    
    .social-icon-mobile:hover {
        background: var(--dragon-red);
        color: white;
        transform: translateY(-2px);
    }
    
    .social-icon-mobile i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .mobile-menu-footer {
        margin-top: 30px;
        padding: 20px;
        border-top: 1px solid #eee;
        text-align: left;
        color: #999;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Dropdown menüler mobilde */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        background-color: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0 15px;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    .navbar-nav .dropdown-item {
        padding: 14px 18px !important;
        background: rgba(220, 53, 69, 0.05);
        border: 1px solid rgba(220, 53, 69, 0.1);
        border-radius: 8px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left !important;
        margin-bottom: 6px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--dragon-dark);
        position: relative;
        padding-left: 36px !important;
    }
    
    .navbar-nav .dropdown-item::before {
        content: '→';
        position: absolute;
        left: 15px;
        color: var(--dragon-red);
        font-weight: bold;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-nav .dropdown-item:hover {
        background: rgba(220, 53, 69, 0.1);
        border-color: var(--dragon-red);
        transform: translateX(5px);
        color: var(--dragon-red);
    }
    
    .navbar-nav .dropdown-item:hover::before {
        transform: translateX(3px);
    }
    
    .navbar-nav .dropdown-divider {
        margin: 0;
        width: 100%;
        border-top: 1px solid #e9ecef;
    }
    
    /* Mobil menü içindeki gizli elementler */
    .navbar-collapse .d-none.d-lg-block {
        display: none !important;
    }
    
    /* Mobil menü içeriğinin görünürlüğünü garanti et */
    .mobile-menu-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-section {
        display: block !important;
        visibility: visible !important;
    }
    
    .mobile-social-icons {
        display: flex !important;
        visibility: visible !important;
    }
    
    .social-icon-mobile {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Menü açıkken body scroll'u kapat */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .sponsor-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
}

/* İletişim Formu Stilleri */
.contact-info-card {
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-title i {
    font-size: 1.5rem;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info-card a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-card a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form-card .form-control:focus {
    border-color: var(--dragon-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form-card select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.contact-form-card .form-check-input:checked {
    background-color: var(--dragon-red);
    border-color: var(--dragon-red);
}

.contact-form-card .form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

.btn-contact-submit {
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.btn-contact-submit:active {
    transform: translateY(0);
}

#photoPreview {
    margin-top: 15px;
}

#photoPreview img {
    border: 2px solid #e0e0e0;
    padding: 5px;
    background: #f8f9fa;
}

/* İletişim Hero Image Stilleri */
.contact-hero-section {
    margin-top: 20px;
    position: relative;
}

.contact-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-hero-image img,
.contact-hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dragon-red) 0%, #c82333 100%);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.contact-hero-logo img {
    max-width: 300px;
    max-height: 200px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.contact-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.contact-logo-text .logo-text {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 5px;
}

.contact-logo-text .logo-events {
    font-size: 2rem;
}

/* Race Mechanics Cards Hover Effect */
.race-mechanics-list > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Race Rules Cards Hover Effect */
.race-rules-list > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Festival Cards Hover Effect */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease;
}
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .contact-info-title {
        font-size: 1.1rem;
    }
    
    .btn-contact-submit {
        width: 100%;
    }
    
    /* About Page Mobile Responsive */
    .about-hero-modern {
        min-height: 500px !important;
        border-radius: 20px !important;
    }
    
    .about-main-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
        line-height: 1.2 !important;
    }
    
    .about-subtitle {
        font-size: 1.1rem !important;
        padding: 0 15px;
    }
    
    .about-logo-container img {
        max-width: 250px !important;
    }
    
    .modern-glass-card {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
    
    .modern-glass-card h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .modern-glass-card p {
        font-size: 1rem !important;
    }
    
    .mission-card {
        border-radius: 20px !important;
    }
    
    .mission-card .col-md-8,
    .mission-card .col-md-4 {
        padding: 30px 20px !important;
    }
    
    .mission-card h2 {
        font-size: 2rem !important;
    }
    
    .mission-card p {
        font-size: 1rem !important;
    }
    
    .media-stats-card {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }
    
    .media-stats-card h2 {
        font-size: 2.2rem !important;
    }
    
    .modern-stat-card {
        padding: 30px 20px !important;
        margin-bottom: 15px;
    }
    
    .stat-counter {
        font-size: 3rem !important;
    }
    
    .video-section-modern {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
    
    .cinematic-video-frame {
        border-radius: 15px !important;
    }
    
    .gallery-section-modern {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }
    
    .modern-gallery-card {
        height: 280px !important;
        border-radius: 20px !important;
    }
    
    .modern-gallery-card h3 {
        font-size: 1.2rem !important;
    }
    
    /* Geometric Shapes - Hide on Mobile */
    .geometric-shapes {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-main-title {
        font-size: 2rem !important;
    }
    
    .about-subtitle {
        font-size: 1rem !important;
    }
    
    .modern-glass-card {
        padding: 25px 15px !important;
    }
    
    .mission-card .col-md-8,
    .mission-card .col-md-4 {
        padding: 25px 15px !important;
    }
    
    .media-stats-card h2 {
        font-size: 1.8rem !important;
    }
    
    .stat-counter {
        font-size: 2.5rem !important;
    }
    
    .modern-gallery-card {
        height: 240px !important;
    }
}

/* Race Results Carousel */
#raceResultsCarousel {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

#raceResultsCarousel .carousel-control-prev,
#raceResultsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s;
}

#raceResultsCarousel .carousel-control-prev:hover,
#raceResultsCarousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0,0,0,0.7);
}

#raceResultsCarousel .carousel-control-prev {
    left: 20px;
}

#raceResultsCarousel .carousel-control-next {
    right: 20px;
}

#raceResultsCarousel .carousel-indicators {
    bottom: 20px;
}

#raceResultsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
}

#raceResultsCarousel .carousel-indicators button.active {
    background: white;
}

@media (max-width: 768px) {
    #raceResultsCarousel .carousel-item > div {
        height: 300px !important;
        padding: 20px !important;
    }
    
    #raceResultsCarousel .carousel-item h2 {
        font-size: 1.8rem !important;
    }
    
    #raceResultsCarousel .carousel-item p {
        font-size: 1rem !important;
    }
    
    #raceResultsCarousel .carousel-item i {
        font-size: 3rem !important;
    }
    
    .contact-hero-image {
        height: 300px;
    }
    
    .contact-hero-logo img {
        max-width: 200px;
        max-height: 120px;
    }
    
    .contact-logo-text .logo-text {
        font-size: 2.5rem;
    }
    
    .contact-logo-text .logo-events {
        font-size: 1.5rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-default-content .card {
    transition: all 0.3s ease;
}

.about-default-content .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.25) !important;
}

/* Hakkımızda Hero Section */
.hero-section h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5) !important;
}

.hero-section .lead {
    color: #ffffff !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5) !important;
}

.stat-box-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.2);
}

#aboutHeroCarousel .carousel-item img,
#aboutGalleryCarousel .carousel-item img,
#aboutCarousel .carousel-item img {
    transition: transform 0.5s ease;
}

#aboutHeroCarousel .carousel-item:hover img,
#aboutGalleryCarousel .carousel-item:hover img,
#aboutCarousel .carousel-item:hover img {
    transform: scale(1.05);
}

/* About Carousel Özel Stilleri */
#aboutCarousel .carousel-control-prev,
#aboutCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(220, 53, 69, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#aboutCarousel .carousel-control-prev:hover,
#aboutCarousel .carousel-control-next:hover {
    background: var(--dragon-red);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#aboutCarousel .carousel-control-prev {
    left: 20px;
}

#aboutCarousel .carousel-control-next {
    right: 20px;
}

#aboutCarousel .carousel-indicators {
    bottom: 20px;
}

#aboutCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    margin: 0 5px;
}

#aboutCarousel .carousel-indicators button.active {
    background: var(--dragon-red);
    border-color: var(--dragon-red);
}

.card img[onclick] {
    transition: transform 0.3s ease;
}

.card:hover img[onclick] {
    transform: scale(1.05);
}

#imageModal .modal-content {
    background: rgba(0, 0, 0, 0.9) !important;
}

@media (max-width: 768px) {
    #aboutHeroCarousel .carousel-item img {
        height: 300px !important;
    }
    
    #aboutGalleryCarousel .carousel-item img {
        height: 250px !important;
    }
    
    #aboutCarousel .carousel-item img {
        height: 300px !important;
    }
    
    #aboutCarousel .carousel-control-prev,
    #aboutCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #aboutCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #aboutCarousel .carousel-control-next {
        right: 10px;
    }
    
    .stat-box-about {
        padding: 20px !important;
    }
    
    .stat-number-about {
        font-size: 2rem !important;
    }
}

/* Haber Detay Sayfası Stilleri */
.btn-outline-danger[style*="--dragon-red"],
.btn-outline-danger[style*="border-color: var(--dragon-red)"] {
    transition: all 0.3s ease;
}

.btn-outline-danger[style*="--dragon-red"]:hover,
.btn-outline-danger[style*="border-color: var(--dragon-red)"]:hover {
    background-color: var(--dragon-red);
    color: white !important;
    border-color: var(--dragon-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger[style*="--dragon-red"]:active,
.btn-outline-danger[style*="border-color: var(--dragon-red)"]:active {
    transform: translateY(0);
}

#readMoreBtn, #readLessBtn {
    transition: all 0.3s ease;
}

#readMoreBtn:hover, #readLessBtn:hover {
    background-color: var(--dragon-red);
    color: white !important;
    border-color: var(--dragon-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* İlgili Haberler Kartları */
.card[style*="box-shadow"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

/* Festivale Katılım - Takım Kuralları Kartları */
.card[style*="linear-gradient(135deg, #fff 0%, #f8f9fa 100%)"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.25) !important;
}

/* Festivale Katılım - Antrenmanlar ve Ek Hizmetler */
.card[style*="linear-gradient(135deg, rgba(220, 53, 69, 0.05)"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.3) !important;
}

/* Festival Programı - Modern Kartlar */
.card[style*="linear-gradient(135deg, rgba(255, 193, 7, 0.05)"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.25) !important;
}

.card[style*="linear-gradient(135deg, rgba(156, 39, 176, 0.05)"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.25) !important;
}

.card[style*="linear-gradient(135deg, rgba(33, 150, 243, 0.05)"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.25) !important;
}

.card[style*="linear-gradient(135deg, rgba(76, 175, 80, 0.05)"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.25) !important;
}

.card[style*="linear-gradient(135deg, rgba(255, 87, 34, 0.05)"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.25) !important;
}

/* ============================================
   SEO OPTIMIZATIONS - Breadcrumb Navigation
   ============================================ */

/* Breadcrumb Container */
.breadcrumb-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    margin-top: 100px;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--dragon-red);
    font-size: 18px;
    font-weight: bold;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--dragon-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #c82333;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--dragon-dark);
    font-weight: 600;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 10px 0;
        margin-top: 80px;
    }
    
    .breadcrumb {
        font-size: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .breadcrumb-item {
        display: inline-flex;
    }
}

/* ============================================
   SEO OPTIMIZATIONS - Image Optimization
   ============================================ */

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Image Aspect Ratio Boxes */
.img-aspect-ratio {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.img-aspect-ratio::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.img-aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WebP Support Detection */
.no-webp .webp-image {
    display: none;
}

.webp .fallback-image {
    display: none;
}

/* ============================================
   SEO OPTIMIZATIONS - Accessibility
   ============================================ */

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--dragon-red);
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 5px 0;
    font-weight: bold;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 3px solid var(--dragon-red);
    outline-offset: 2px;
}

/* Screen Reader Only Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   SEO OPTIMIZATIONS - Performance
   ============================================ */

/* Critical CSS - Above the Fold */
.hero-section {
    min-height: 500px;
    will-change: transform;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn-register,
    .mobile-menu-content,
    .social-icons,
    footer {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}
