/**
 * Fenerbahçe Kartal - Premium Stil Dosyası
 * Renkler: Lacivert #002d72, Sarı #ffed00
 * Modern, şık ve profesyonel tasarım
 */

/* ===== CSS Değişkenleri ===== */
:root {
    --fb-navy: #002d72;
    --fb-navy-dark: #001a4d;
    --fb-navy-light: #003d8f;
    --fb-yellow: #ffed00;
    --fb-yellow-dark: #e6d400;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    --white: #ffffff;
    --light-bg: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 45, 114, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 45, 114, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 45, 114, 0.12);
    --shadow-xl: 0 30px 60px rgba(0, 45, 114, 0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--fb-navy);
    padding: 12px 0;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.animated-text {
    display: flex;
    overflow: hidden;
    height: 20px;
}

.animated-text .text-item {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    position: absolute;
    white-space: nowrap;
}

.animated-text .text-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-item svg {
    color: var(--fb-yellow);
}

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

.social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--fb-yellow);
    color: var(--fb-navy);
    transform: translateY(-2px);
}
/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.container-fluid {
    width: 100%;
    padding: 0 28px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    top: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-brand span {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--fb-navy);
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    vertical-align: middle;
    line-height: 0;
}

/* ===== Desktop Navigation ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    padding: 12px 20px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link svg {
    transition: var(--transition);
}

.nav-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 3px;
    background: var(--fb-navy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--fb-navy);
    background: rgba(0, 45, 114, 0.06);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(0, 45, 114, 0.06);
    color: var(--fb-navy);
    padding-left: 24px;
}

.btn-cta {
    background: var(--fb-yellow);
    color: var(--fb-navy);
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 237, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 237, 0, 0.4);
    background: var(--fb-yellow-dark);
}

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(0, 45, 114, 0.06);
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--fb-navy);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Mobile Navigation ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-menu .nav-menu {
    flex-direction: column;
    gap: 0;
}

.mobile-menu .nav-link {
    padding: 18px 28px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu .btn-cta {
    margin: 24px 28px;
    width: calc(100% - 56px);
}

/* ===== Modern Hero Slider ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 48px;
    overflow: hidden;
    background: var(--fb-navy);
}

.modern-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.modern-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-slide.active {
    opacity: 1;
    visibility: visible;
}

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

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 114, 0.9) 0%, rgba(0, 45, 114, 0.4) 50%, rgba(0, 45, 114, 0.7) 100%);
}

.slide-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.slide-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.slide-number {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.slide-number .current {
    font-size: 1.5rem;
}

.slide-number .total {
    opacity: 0.5;
}

.slide-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.modern-slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease 0.3s;
}

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

.slide-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

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

.slide-actions {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.modern-slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--fb-yellow) 0%, var(--fb-yellow-dark) 100%);
    color: var(--fb-navy);
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(255, 237, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 237, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--fb-navy);
    border-color: var(--white);
}

.btn-navy {
    background: var(--fb-navy);
    color: var(--fb-yellow);
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--fb-navy);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-navy:hover {
    background: var(--fb-yellow);
    color: var(--fb-navy);
    border-color: var(--fb-yellow);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 34, 85, 0.3);
}

.slide-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.modern-slide.active .slide-image-card {
    transform: translateX(0);
    opacity: 1;
}

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

.image-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--fb-yellow) 0%, var(--fb-yellow-dark) 100%);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
}

/* Modern Navigation */
.slider-navigation {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--fb-yellow);
    border-color: var(--fb-yellow);
    color: var(--fb-navy);
    transform: scale(1.1);
}

.nav-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.33%;
    background: var(--fb-yellow);
    transition: width 0.8s ease;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.counter-current {
    font-size: 2rem;
    color: var(--fb-yellow);
}

.counter-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.counter-total {
    opacity: 0.5;
}

/* ===== Sections ===== */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 45, 114, 0.9) 0%, transparent 100%);
    padding: 15px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1rem;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--fb-yellow);
}

#lightbox-caption {
    position: absolute;
    bottom: 30px;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--fb-navy);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--fb-yellow) 0%, var(--fb-yellow-dark) 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 24px auto 0;
    line-height: 1.8;
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 114, 0.03) 0%, rgba(255, 237, 0, 0.03) 100%);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--fb-navy);
    margin-bottom: 28px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.about-image:hover img {
    transform: translateY(-8px);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--fb-yellow) 0%, var(--fb-yellow-dark) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.6;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-navy-dark) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

/* ===== Registration Section ===== */
.registration-section {
    background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 237, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.registration-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 237, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.registration-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.registration-image:hover img {
    transform: scale(1.02);
}

.registration-form-card {
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.registration-form-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fb-navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.registration-form-card p {
    color: var(--text-gray);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    resize: none;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--fb-navy);
    box-shadow: 0 0 0 5px rgba(0, 45, 114, 0.08);
    background: var(--white);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23002d72' d='M7 11L1 5h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.btn-submit {
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-navy-dark) 100%);
    color: var(--fb-yellow);
    font-weight: 800;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0, 45, 114, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 45, 114, 0.4);
}

.btn-hero {
    display: inline-block;
    background: var(--fb-yellow);
    color: var(--fb-navy);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(255, 237, 0, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 237, 0, 0.5);
    background: var(--fb-yellow-dark);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 80px;
    left: 60px;
    font-size: 300px;
    color: var(--fb-navy);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.03;
    font-weight: 900;
}

.testimonials-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 -28px;
    padding: 0 28px;
}

.testimonials-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    will-change: transform;
}

.testimonials-grid {
    display: none; /* Not used - carousel is always active */
}

.testimonial-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    min-width: 400px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: var(--fb-yellow);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 32px;
    font-size: 60px;
    color: var(--fb-navy);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.15;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    font-style: italic;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fb-yellow);
}

.testimonial-author h5 {
    color: var(--fb-navy);
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0;
}

.testimonial-rating {
    color: var(--fb-yellow);
    font-size: 1rem;
    margin-top: 4px;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-content {
    max-width: 100%;
}

.faq-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.faq-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--fb-yellow);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.faq-container {
    max-width: 100%;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 28px 32px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fb-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 400;
    transition: var(--transition);
    color: var(--fb-yellow);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-item.active .faq-question {
    background: var(--fb-navy);
    color: var(--fb-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light-bg);
}

.faq-answer p {
    padding: 32px;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-image {
    position: relative;
}

.faq-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.faq-image-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
}

.faq-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.faq-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 45, 114, 0.3) 0%, rgba(0, 26, 77, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.faq-image-item:hover::before {
    opacity: 1;
}

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

/* ===== Blog Section ===== */
.blog-section {
    background: var(--light-bg);
    overflow: hidden;
}

.blog-carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.blog-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    width: 100%;
}

.blog-grid .blog-card {
    min-width: calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    flex-shrink: 0;
}

.blog-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--fb-navy);
    color: var(--fb-yellow);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
}

.blog-carousel-nav:hover {
    background: var(--fb-yellow);
    color: var(--fb-navy);
    transform: translateY(-50%) scale(1.1);
}

.blog-carousel-nav svg {
    width: 24px;
    height: 24px;
}

.blog-carousel-prev {
    left: -25px;
}

.blog-carousel-next {
    right: -25px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--fb-navy);
    color: var(--fb-yellow);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* WYSIWYG Editor Output Styles - for blog content body */
.blog-content-body h1,
.blog-content-body h2,
.blog-content-body h3,
.blog-content-body h4,
.blog-content-body h5,
.blog-content-body h6 {
    color: var(--fb-navy);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}
.blog-content-body h1 { font-size: 2em; }
.blog-content-body h2 { font-size: 1.5em; }
.blog-content-body h3 { font-size: 1.25em; }
.blog-content-body p {
    margin-bottom: 1em;
}
.blog-content-body ul,
.blog-content-body ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}
.blog-content-body li {
    margin-bottom: 0.5em;
}
.blog-content-body a {
    color: var(--fb-navy);
    text-decoration: underline;
}
.blog-content-body a:hover {
    color: var(--fb-yellow);
}
.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1em 0;
}
.blog-content-body blockquote {
    border-left: 4px solid var(--fb-yellow);
    padding-left: 1em;
    margin: 1em 0;
    font-style: italic;
    color: var(--text-gray);
}
.blog-content-body pre,
.blog-content-body code {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
}
.blog-content-body pre {
    padding: 1em;
    overflow-x: auto;
}
.blog-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}
.blog-content-body table th,
.blog-content-body table td {
    border: 1px solid var(--border-color);
    padding: 0.5em;
}
.blog-content-body table th {
    background: var(--light-bg);
}

.blog-title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-title a {
    color: var(--fb-navy);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--fb-yellow-dark);
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-section-footer {
    text-align: center;
    margin-top: 32px;
}

/* ===== Subpage FAQ (Compact Style) ===== */
.subpage-faq {
    background: var(--white);
}

.subpage-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.subpage-faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.subpage-faq-item:hover {
    border-color: var(--fb-navy);
}

.subpage-faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--fb-navy);
    text-align: left;
    transition: var(--transition);
}

.subpage-faq-question:hover {
    color: var(--fb-yellow-dark);
}

.subpage-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.subpage-faq-item.active .subpage-faq-icon {
    transform: rotate(45deg);
}

.subpage-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.subpage-faq-item.active .subpage-faq-answer {
    max-height: 200px;
}

.subpage-faq-answer p {
    padding: 0 24px 18px;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== 404 Error Page ===== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: var(--white);
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.error-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.error-icon svg {
    width: 100%;
    height: 100%;
}

.error-code {
    font-size: 6rem;
    font-weight: 900;
    color: var(--fb-navy);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

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

.error-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 404 page buttons - no gradient, solid colors */
.error-page .btn-primary {
    background: var(--fb-yellow);
    box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3);
}

.error-page .btn-primary:hover {
    background: var(--fb-yellow-dark);
    box-shadow: 0 6px 20px rgba(255, 237, 0, 0.4);
}

.error-page .btn-secondary {
    background: var(--fb-navy);
    color: var(--fb-yellow);
    border: 2px solid var(--fb-navy);
}

.error-page .btn-secondary:hover {
    background: var(--fb-navy-dark);
    border-color: var(--fb-navy-dark);
    color: var(--fb-yellow);
}

/* ===== WhatsApp & Scroll to Top Buttons (Equal sizing) ===== */
.whatsapp-button,
.scroll-to-top {
    position: fixed;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button {
    bottom: 80px;
    background: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.scroll-to-top {
    bottom: 20px;
    background: var(--fb-navy);
    color: var(--fb-yellow);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.scroll-to-top:hover {
    background: var(--fb-navy-dark);
    transform: translateY(-3px);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top svg {
    width: 22px;
    height: 22px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--white);
    padding: 80px 0;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--fb-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-navy-dark) 100%);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 237, 0, 0.3), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 237, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand h4 {
    color: var(--fb-yellow);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.footer h5 {
    color: var(--fb-yellow);
    margin-bottom: 28px;
    font-size: 1.15rem;
    font-weight: 800;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    font-weight: 500;
    display: inline-block;
}

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

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--fb-yellow);
    color: var(--fb-navy);
    transform: translateY(-5px) rotate(5deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 36px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ===== Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 45, 114, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-navy-dark) 100%);
    color: var(--fb-yellow);
    padding: 28px 32px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--fb-yellow);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.modal-body {
    padding: 36px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }
    
    .modern-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .slide-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .slide-image-wrapper {
        display: none;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-navigation {
        bottom: 40px;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .nav-progress {
        width: 150px;
    }
    
    .slide-counter {
        top: 40px;
        right: 30px;
    }
    
    .about-grid,
    .registration-grid {
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .blog-grid .blog-card {
        min-width: calc(50% - 12px);
    }
    
    .blog-carousel-prev {
        left: -20px;
    }
    
    .blog-carousel-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    /* Hide top-bar on mobile */
    .top-bar {
        display: none !important;
    }
    
    /* Show header with mobile layout */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
        box-shadow: var(--shadow-md);
    }
    
    .navbar {
        justify-content: space-between;
        padding: 12px 16px;
    }
    
    .navbar-brand span {
        font-size: 1.1rem;
    }
    
    /* Show mobile menu toggle button */
    .menu-toggle {
        display: flex !important;
    }
    
    /* Hide desktop nav menu on mobile */
    .navbar .nav-menu {
        display: none !important;
    }
    
    /* But mobile menu nav-menu should be visible */
    .mobile-menu .nav-menu {
        display: flex !important;
    }
    
    /* Hide desktop CTA button on mobile */
    .navbar .btn-cta {
        display: none !important;
    }
    
    /* Add top padding for hero to account for fixed header */
    .hero {
        padding-top: 70px;
    }
    
    .blog-grid .blog-card {
        min-width: calc(100% - 24px);
    }
    
    .blog-carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .blog-carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .blog-carousel-prev {
        left: -15px;
    }
    
    .blog-carousel-next {
        right: -15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
        margin-top: 0;
    }
    
    .slide-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .slide-number {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .slide-number .current {
        font-size: 1.2rem;
    }
    
    .slide-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .slide-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 32px;
        font-size: 0.9rem;
    }
    
    .slider-navigation {
        bottom: 30px;
        gap: 20px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-progress {
        width: 100px;
    }
    
    .slide-counter {
        top: 30px;
        right: 20px;
        font-size: 0.85rem;
    }
    
    .counter-current {
        font-size: 1.5rem;
    }
    
    .counter-line {
        width: 40px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .registration-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-image {
        order: -1;
    }
    
    .about-image::before,
    .about-image::after {
        display: none;
    }
    
    .registration-form-card {
        padding: 36px;
    }
    
    /* Testimonials - tablet view */
    .testimonial-card {
        min-width: 300px;
        flex-shrink: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .testimonials-section::before {
        display: none;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 24px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-icon {
        width: 80px;
        height: 80px;
    }
    
    .error-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .navbar-brand span {
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .slide-container {
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    
    .slide-description {
        font-size: 0.85rem;
    }
    
    .slider-navigation {
        bottom: 20px;
        gap: 15px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-progress {
        width: 80px;
    }
    
    .slide-counter {
        top: 20px;
        right: 15px;
    }
    
    .counter-current {
        font-size: 1.2rem;
    }
    
    .counter-line {
        width: 30px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .registration-form-card {
        padding: 28px;
    }
    
    .modal-body {
        padding: 28px;
    }
    
    .testimonial-card {
        padding: 36px;
    }
}

/* ===== Page Header with Breadcrumb ===== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-navy-dark) 100%);
    padding: 120px 0 80px;
    margin-top: 48px;
    overflow: hidden;
}

.page-header::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"><circle cx="50" cy="50" r="40" fill="rgba(255,237,0,0.03)"/></svg>') repeat;
    background-size: 200px;
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--fb-yellow);
}

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

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-separator svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* ===== Modal Alert System (Center Screen) ===== */
.modal-alert-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
}

.modal-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-alert.active {
    opacity: 1;
    visibility: visible;
}

.modal-alert.closing {
    opacity: 0;
    visibility: hidden;
}

.modal-alert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-alert-box {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.modal-alert.active .modal-alert-box {
    transform: scale(1) translateY(0);
}

.modal-alert.closing .modal-alert-box {
    transform: scale(0.8) translateY(20px);
}

.modal-alert-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-alert-icon {
    width: 36px;
    height: 36px;
}

.modal-alert-success .modal-alert-icon-wrapper {
    background: #d1fae5;
    color: #059669;
}

.modal-alert-error .modal-alert-icon-wrapper {
    background: #fee2e2;
    color: #dc2626;
}

.modal-alert-warning .modal-alert-icon-wrapper {
    background: #fef3c7;
    color: #d97706;
}

.modal-alert-info .modal-alert-icon-wrapper {
    background: #dbeafe;
    color: #2563eb;
}

.modal-alert-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.modal-alert-message {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-alert-close {
    display: inline-block;
    padding: 12px 40px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.modal-alert-success .modal-alert-close {
    background: #059669;
    color: #ffffff;
}
.modal-alert-success .modal-alert-close:hover {
    background: #047857;
}

.modal-alert-error .modal-alert-close {
    background: #dc2626;
    color: #ffffff;
}
.modal-alert-error .modal-alert-close:hover {
    background: #b91c1c;
}

.modal-alert-warning .modal-alert-close {
    background: #d97706;
    color: #ffffff;
}
.modal-alert-warning .modal-alert-close:hover {
    background: #b45309;
}

.modal-alert-info .modal-alert-close {
    background: #002d72;
    color: #ffed00;
}
.modal-alert-info .modal-alert-close:hover {
    background: #001a4d;
}

@media (max-width: 480px) {
    .modal-alert-box {
        padding: 30px 25px 25px;
        max-width: 340px;
    }
    
    .modal-alert-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .modal-alert-icon {
        width: 28px;
        height: 28px;
    }
    
    .modal-alert-title {
        font-size: 1.1rem;
    }
    
    .modal-alert-message {
        font-size: 0.85rem;
    }
}

/* ===== Legacy Toast Notifications (kept for backward compat) ===== */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.toast {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-xl);
    animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--fb-navy);
    position: relative;
    overflow: hidden;
}

.toast.toast-success {
    border-left-color: #10b981;
}

.toast.toast-success .toast-icon {
    background: #d1fae5;
    color: #10b981;
}

.toast.toast-error {
    border-left-color: #ef4444;
}

.toast.toast-error .toast-icon {
    background: #fee2e2;
    color: #ef4444;
}

.toast.toast-info {
    border-left-color: var(--fb-yellow);
}

.toast.toast-info .toast-icon {
    background: #fef3c7;
    color: #f59e0b;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast.toast-exit {
    animation: toastSlideOut 0.3s ease forwards;
}

.toast-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 22px;
    height: 22px;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-navy);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-gray);
    opacity: 0.6;
    transition: var(--transition);
    flex-shrink: 0;
}

.toast-close:hover {
    opacity: 1;
}

.toast-close svg {
    width: 18px;
    height: 18px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

@media (max-width: 480px) {
    .toast-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .toast {
        padding: 16px 18px;
    }
}

/* ===== Additional Responsive Enhancements ===== */

/* Mobile-specific styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Top Bar Responsive */
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
    }
    
    .top-bar-left {
        order: 1;
    }
    
    .top-bar-right {
        order: 2;
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .contact-item {
        font-size: 0.75rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
    }
    
    /* Header is now visible on mobile with compact layout (see first 768px block) */
    
    .navbar {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .navbar-brand span {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        display: none;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 24px 24px 0 0;
        border-top: 2px solid var(--fb-navy);
    }
    
    .mobile-menu .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .mobile-menu .nav-link {
        padding: 16px 20px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* Mobile dropdown - override desktop absolute positioning */
    .mobile-menu .dropdown-menu,
    .mobile-menu .mobile-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        display: none !important;
        min-width: 100% !important;
        padding: 0 !important;
        background: rgba(0, 45, 114, 0.05) !important;
    }
    
    .mobile-menu .mobile-dropdown-menu.show,
    .mobile-menu .dropdown-menu.show {
        display: block !important;
    }
    
    .mobile-menu .mobile-dropdown-menu li {
        list-style: none;
    }
    
    .mobile-menu .mobile-dropdown-menu a {
        display: block;
        padding: 14px 32px;
        font-size: 0.95rem;
        color: var(--text-color);
        text-decoration: none;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.2s ease;
    }
    
    .mobile-menu .mobile-dropdown-menu a:hover {
        background: rgba(0, 45, 114, 0.08);
        color: var(--fb-navy);
    }
    
    .mobile-menu .nav-link.has-dropdown {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .mobile-menu .mobile-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-menu .btn-cta {
        display: block;
        margin: 20px;
        width: calc(100% - 40px);
        text-align: center;
    }
    
    /* Hero Section - Fixed mobile slider blue area issue */
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding-top: 0;
        overflow: hidden;
    }
    
    .modern-slider {
        min-height: 100vh;
        height: 100%;
    }
    
    .modern-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 80px 0 120px;
        display: flex;
        align-items: center;
    }
    
    .slide-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .slide-image-wrapper {
        display: none;
    }
    
    .slide-text {
        align-items: center;
    }
    
    .slide-number {
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .slide-description {
        text-align: center;
        max-width: 100%;
    }
    
    .slide-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .slide-counter {
        top: auto;
        bottom: 100px;
        right: 20px;
    }
    
    .slider-navigation {
        bottom: 30px;
        gap: 15px;
    }
    
    .nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .nav-progress {
        width: 80px;
    }
    
    /* Sections */
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-content p {
        text-align: center;
    }
    
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Registration Section */
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .registration-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .registration-form-card {
        padding: 32px 24px;
    }
    
    .registration-form-card h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    /* FAQ Section */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 20px 24px;
        font-size: 0.95rem;
    }
    
    /* Testimonials - Horizontal Scroll on Mobile */
    .testimonials-carousel-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .testimonials-track {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--fb-navy) var(--light-bg);
        padding-bottom: 16px;
        gap: 20px;
    }
    
    .testimonials-track::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-track::-webkit-scrollbar-track {
        background: var(--light-bg);
        border-radius: 10px;
    }
    
    .testimonials-track::-webkit-scrollbar-thumb {
        background: var(--fb-navy);
        border-radius: 10px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Blog Section - Horizontal Scroll on Mobile */
    .blog-carousel-outer {
        flex-direction: column;
        gap: 16px;
    }
    
    .blog-carousel-nav {
        display: none; /* Hide nav buttons on mobile - use native scroll */
    }
    
    .blog-carousel-wrapper {
        width: 100%;
    }
    
    .blog-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--fb-navy) var(--light-bg);
        padding-bottom: 16px;
        /* Remove transform transition since we use native scroll */
        transition: none;
    }
    
    .blog-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .blog-grid::-webkit-scrollbar-track {
        background: var(--light-bg);
        border-radius: 10px;
    }
    
    .blog-grid::-webkit-scrollbar-thumb {
        background: var(--fb-navy);
        border-radius: 10px;
    }
    
    .blog-grid .blog-card {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand h4 {
        font-size: 1.3rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control,
    .form-select {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 16px;
        font-size: 1rem;
    }
    
    /* Page Header - no top margin since header is hidden on mobile */
    .page-header {
        margin-top: 0;
        padding: 100px 0 60px;
    }
    
    .page-header .section-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    /* Cards */
    .card {
        padding: 24px 20px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* WhatsApp & Scroll to Top - equal on mobile */
    .whatsapp-button,
    .scroll-to-top {
        width: 44px;
        height: 44px;
        right: 16px;
    }
    
    .whatsapp-button {
        bottom: 72px;
    }
    
    .whatsapp-button svg,
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    /* Modal */
    .modal {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        margin: auto auto 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    /* Table Responsive */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        font-size: 0.85rem;
    }
    
    .table th,
    .table td {
        padding: 12px 10px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-actions {
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .registration-form-card {
        padding: 24px 16px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .testimonials-track .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 24px 20px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .blog-content {
        padding: 16px;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 24px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer h5 {
        margin-bottom: 16px;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header .section-title {
        font-size: 1.75rem;
    }
    
    .error-code {
        font-size: 3.5rem;
    }
    
    .error-title {
        font-size: 1.3rem;
    }
    
    .error-icon {
        width: 64px;
        height: 64px;
    }
    
    .modal-alert-box {
        padding: 24px 20px;
        max-width: 320px;
    }
    
    .toast {
        padding: 14px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-progress {
        width: 60px;
    }
    
    .slide-counter {
        display: none;
    }
    
    .animated-text {
        display: none;
    }
}

/* Tablet styles (min-width: 769px and max-width: 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
    
    .navbar {
        padding: 14px 24px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .blog-grid .blog-card {
        min-width: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    
    .testimonial-card {
        min-width: 260px;
        padding: 24px 20px;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }
    
    .modern-slide {
        padding: 40px 0 80px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slider-navigation {
        bottom: 20px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn-cta,
    .btn-primary,
    .btn-secondary {
        -webkit-font-smoothing: antialiased;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .nav-link.active {
        background: transparent;
    }
    
    .dropdown-menu {
        display: none !important;
    }
    
    .mobile-menu .mobile-dropdown-menu.show {
        display: block !important;
    }
    
    .btn-cta:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .nav-link:active {
        background: rgba(0, 45, 114, 0.08);
    }
    
    .btn-cta:active,
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
    }
}

/* Print styles */
@media print {
    .top-bar,
    .header,
    .mobile-menu,
    .slider-navigation,
    .scroll-to-top,
    .btn-cta,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        margin-top: 0;
        background: white;
    }
    
    .footer {
        background: white;
        color: black;
    }
    
    .section {
        padding: 40px 0;
    }
}
