/* Base Styles */
:root {
    --primary-red: #d6001c;
    --primary-dark: #1a1a1a;
    --primary-light: #f8f9fa;
    --accent-gold: #d4af37;
    --text-dark: #333;
    --text-light: #666;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 140px; /* Account for fixed header */
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: #b30017;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.header-scrolled {
    padding: 4px 0;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-gold);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 10px;
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
}

.logo span {
    color: var(--primary-dark);
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.main-nav > .nav-links {
    background: #f7f8fa;
    border: 1px solid #eceef2;
    border-radius: 999px;
    padding: 6px;
    gap: 4px;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 9px 14px;
    border-radius: 999px;
    display: inline-block;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-red);
    background: #fff;
}

.main-nav > .nav-links a.active {
    color: #fff;
    background: var(--primary-red);
    box-shadow: 0 6px 16px rgba(214, 0, 28, 0.25);
}

.main-nav > .nav-links a.active::after,
.main-nav > .nav-links a::after {
    display: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta-btn {
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: #b30017;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(214, 0, 28, 0.25);
}

.search-btn, .user-btn {
    background: #f7f8fa;
    border: 1px solid #eceef2;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.search-btn:hover, .user-btn:hover {
    color: var(--primary-red);
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

@media (max-width: 1320px) {
    .nav-links a {
        padding: 8px 10px;
        font-size: 0.88rem;
    }

    .nav-cta-btn {
        padding: 10px 14px;
        font-size: 0.86rem;
    }
}

@media (max-width: 1180px) {
    .search-btn,
    .user-btn {
        display: none;
    }

    .main-nav > .nav-links {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .main-nav > .nav-links::-webkit-scrollbar {
        display: none;
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.2rem;
    background: #f7f8fa;
    border: 1px solid #eceef2;
    cursor: pointer;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    transition: var(--transition);
}

.language-btn:hover {
    background: #f5f5f5;
}

.language-btn i {
    margin-right: 8px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 150px;
    display: none;
    z-index: 100;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Hero Section with Slideshow */
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

/* Slide Navigation Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border-radius: 4px;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 5;
}

.hero h1 {
    font-size: clamp(1.35rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    white-space: nowrap;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.9);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
}
.road-signs-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.road-signs-section {
    padding: 70px 0;
}
.road-signs-alt {
    background: #f8fafc;
}
.road-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.road-sign-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
.road-sign-card h3 {
    margin: 14px 0 8px;
    font-size: 1.08rem;
    color: #0f172a;
}
.road-sign-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}
.sign-shape {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.4px;
}
.rs-circle-red {
    border-radius: 50%;
    background: #fff;
    border: 10px solid #dc2626;
    color: #111827;
}
.rs-circle-blue {
    border-radius: 50%;
    background: #2563eb;
    border: 8px solid #ffffff;
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.rs-octagon {
    background: #dc2626;
    color: #fff;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.rs-inverted {
    width: 86px;
    height: 78px;
    background: #dc2626;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
    color: #fff;
    font-size: 0.78rem;
}
.road-sign-card .rs-inverted {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
    line-height: 1;
    font-weight: 700;
}
.rs-triangle {
    width: 88px;
    height: 80px;
    background: #facc15;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    color: #111827;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px #dc2626;
}
.road-sign-card .rs-triangle {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 8px;
}
.rs-square-blue {
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    border: 8px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.traffic-signal {
    width: 56px;
    margin: 0 auto;
    padding: 8px 6px;
    border-radius: 14px;
    background: #111827;
    display: grid;
    gap: 7px;
}
.traffic-signal span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #374151;
    margin: 0 auto;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.traffic-signal.red-on span:nth-child(1) {
    background: #ef4444;
}
.traffic-signal.yellow-on span:nth-child(2) {
    background: #f59e0b;
}
.traffic-signal.green-on span:nth-child(3) {
    background: #10b981;
}
.signal-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 1.2rem;
    background: #10b981;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}
.signal-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}
.signal-yellow {
    background: #f59e0b;
}
.signal-red {
    background: #ef4444;
}
.road-sign-note {
    margin: 0 auto 22px;
    max-width: 920px;
    background: #fff8e1;
    border: 1px solid #fcd34d;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #92400e;
}
.road-sign-note i {
    margin-top: 3px;
}
.road-sign-note p {
    margin: 0;
    line-height: 1.6;
}
.road-sign-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .road-signs-section {
        padding: 52px 0;
    }
    .road-signs-grid {
        grid-template-columns: 1fr;
    }
    .sign-shape {
        transform: scale(0.95);
    }
}

.search-box h3 {
    color: var(--text-dark);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.search-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

/* Trust Bar */
.trust-bar {
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.trust-item i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--primary-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-card .card-slideshow {
    position: relative;
    width: calc(100% + 60px);
    height: 250px;
    margin: -30px -30px 20px -30px;
    border-radius: 8px 8px 0 0;
}

.feature-card .card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.feature-card .card-slide.active {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Destinations */
.destinations {
    padding: 80px 0;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid transparent;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%), linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1, #667eea);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.card-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.card-slide.active {
    opacity: 1;
}

.destination-card:hover .card-slide {
    transform: scale(1.05);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.destination-cta-wrap {
    text-align: center;
    margin-top: 40px;
}

.destination-cta-btn {
    padding: 14px 34px;
    border-radius: 999px;
    letter-spacing: 0.2px;
}

.destination-cta-btn i {
    margin-right: 8px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: var(--primary-light);
}

.newsletter-panel {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    border: 1px solid #ececec;
    text-align: center;
}

.newsletter-panel h2 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 2rem;
}

.newsletter-description {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    max-width: 680px;
    margin: 0 auto;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    padding: 0 14px;
    background: #fff;
}

.newsletter-input-wrap i {
    color: var(--text-light);
}

.newsletter-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 14px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.newsletter-btn {
    border: none;
    background: var(--primary-red);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0 24px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #b30017;
    transform: translateY(-1px);
}

.newsletter-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.05rem;
    opacity: 0.92;
}

.contact-form-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 34px;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field {
    margin-bottom: 18px;
}

.contact-field-last {
    margin-bottom: 24px;
}

.contact-label {
    display: block;
    color: #2f2f2f;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #6a6ee7;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.contact-textarea {
    resize: vertical;
    font-family: inherit;
    min-height: 130px;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(102, 126, 234, 0.35);
}

.contact-response-note {
    text-align: center;
    margin-top: 18px;
    font-size: 0.9rem;
    opacity: 0.92;
}

/* Culture Page */
.culture-page-header {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1526481280693-3bfa7568e0f3?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.culture-page-header p {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
}

.culture-page-section,
.sports-page-section {
    padding: 80px 0;
}

.sports-page-section {
    background: var(--primary-light);
}

.culture-page-grid,
.sports-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.culture-page-card,
.sports-page-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.culture-page-card:hover,
.sports-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.culture-page-card img,
.sports-page-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.culture-page-content,
.sports-page-content {
    padding: 20px;
}

.culture-page-content h3,
.sports-page-content h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.culture-page-content p,
.sports-page-content p {
    color: var(--text-light);
}

/* Scholarships Page */
.scholarship-page-header {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.scholarship-page-header p {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
}

.scholarship-section,
.eligibility-section,
.process-section {
    padding: 80px 0;
}

.eligibility-section {
    background: var(--primary-light);
}

.scholarship-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.scholarship-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.scholarship-card:hover {
    transform: none;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.scholarship-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.scholarship-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.scholarship-content h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.scholarship-content p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.scholarship-content ul {
    margin: 2px 0 0 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.scholarship-content ul li + li {
    margin-top: 3px;
}

.scholarship-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

.scholarship-actions a {
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #eceef2;
    background: #f7f8fa;
    color: var(--primary-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
}

.scholarship-actions a:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.eligibility-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.eligibility-note i {
    color: var(--primary-red);
    margin-top: 3px;
}

.eligibility-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ececec;
}

.eligibility-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.eligibility-table th,
.eligibility-table td {
    text-align: left;
    padding: 14px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
    vertical-align: top;
}

.eligibility-table th {
    background: #f7f8fa;
    color: var(--primary-dark);
}

.country-groups {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.group-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 16px;
}

.group-card h3 {
    margin-bottom: 8px;
}

.country-example-block {
    margin-top: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 16px;
}

.country-example-block h3 {
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.country-example-block p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.country-tags span {
    background: #f7f8fa;
    border: 1px solid #eceef2;
    color: var(--text-dark);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.scholarship-extra-section {
    background: #fff;
}

.process-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.process-card p {
    color: var(--text-dark);
    line-height: 1.55;
}

.process-card span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .scholarship-actions a {
        width: 100%;
    }
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1545569341-9eb8b30979d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Driving License Page */
.info-section {
    padding: 60px 0;
}

.info-box {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.info-box h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.document-list {
    list-style: none;
    margin: 20px 0;
}

.document-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.document-list li:before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 10px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table th, .info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.info-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.info-table tr:hover {
    background: #f9f9f9;
}

/* Alert Box */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.alert-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.alert-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.alert i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 92vw);
    height: 100%;
    background: #ffffff;
    box-shadow: -12px 0 35px rgba(0,0,0,0.15);
    border-left: 1px solid #eceef2;
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    display: block;
    list-style: none;
}

.mobile-menu .nav-links li {
    margin: 0 0 10px 0;
}

.mobile-menu .nav-links a {
    font-size: 1.05rem;
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #eceef2;
}

.mobile-menu .nav-links a.active,
.mobile-menu .nav-links a:hover {
    background: #f6f6f6;
    color: var(--primary-red);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.1rem;
    background: #f7f8fa;
    border: 1px solid #eceef2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-actions button {
    min-width: 44px;
    min-height: 44px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    body {
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .search-btn,
    .user-btn,
    .nav-cta-btn {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slide-arrow {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .language-btn span {
        display: none;
    }
    
    .slide-arrow {
        display: none;
    }
    
    .slide-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 160px;
    }

    .newsletter-panel {
        padding: 28px 22px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-btn {
        height: 48px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 1.35rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 15px;
    }

    .destination-cta-btn {
        width: 100%;
    }

    .section-lead {
        margin-bottom: 20px;
    }

    .season-card,
    .itinerary-item,
    .transport-card {
        padding: 18px;
    }

    .culture-card {
        padding: 18px;
    }

    .info-card-image {
        height: 160px;
    }

    .itinerary-hero-image {
        max-height: 240px;
    }

    .culture-page-card img,
    .sports-page-card img {
        height: 180px;
    }

    .culture-page-content,
    .sports-page-content {
        padding: 16px;
    }
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.stat-card p {
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--primary-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #FF6B6B, #f093fb);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--primary-dark);
}

.testimonial-author p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #999;
    font-style: normal;
}

/* Travel Tips Section */
.travel-tips {
    padding: 80px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #4ECDC4, #45B7D1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tip-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.tip-card h3 {
    margin-bottom: 10px;
}

.tip-link {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.tip-link:hover {
    transform: translateX(5px);
}

/* Culture Essentials */
.culture-essentials {
    padding: 80px 0;
    background: #fff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.culture-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.culture-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(214, 0, 28, 0.08);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.culture-card h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.culture-card p {
    color: var(--text-light);
}

.section-lead {
    color: var(--text-light);
    margin-top: -8px;
    margin-bottom: 28px;
    max-width: 760px;
}

/* Seasons Guide */
.season-guide {
    padding: 80px 0;
    background: #fff;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.season-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.info-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.info-picture,
.itinerary-picture {
    display: block;
}

.season-card h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.season-highlight {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Itinerary */
.itinerary {
    padding: 80px 0;
    background: var(--primary-light);
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.itinerary-hero-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.itinerary-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

.itinerary-item span {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.itinerary-item p {
    color: var(--text-dark);
}

/* Transport Guide */
.transport-guide {
    padding: 80px 0;
    background: #fff;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.transport-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.transport-card h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.transport-card p {
    color: var(--text-light);
}

/* Cost Breakdown Section */
.cost-breakdown {
    padding: 80px 0;
    background: var(--primary-light);
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cost-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #f093fb, #667eea);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cost-item:hover {
    transform: scale(1.05);
}

.cost-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.cost-item h4 {
    margin: 10px 0;
}

.cost-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin: 10px 0;
}

.cost-detail {
    font-size: 0.9rem;
    color: #999;
}

.total-cost {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.total-cost h3 {
    margin-bottom: 10px;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 700px;
    margin: 40px auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: var(--primary-light);
    border-radius: 8px;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question span {
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-red);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Driving Centers */
.center-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.center-slideshow {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.center-slideshow .card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.center-slideshow .card-slide.active {
    opacity: 1;
}

.center-card:hover .center-slideshow .card-slide {
    transform: scale(1.05);
}

/* Global Responsive Hardening */
img,
video,
canvas,
svg,
iframe {
    max-width: 100%;
}

@media (max-width: 992px) {
    .experience-cards,
    .destination-grid-detail,
    .calendar-grid,
    .tool-grid,
    .transport-methods {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .mcq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .experience-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .category-header {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }

    .container {
        padding: 0 14px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .social-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-header {
        padding: 70px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .destination-grid,
    .destination-grid-detail,
    .experience-cards,
    .calendar-grid,
    .tool-grid,
    .transport-methods,
    .checklist-grid,
    .accommodation-types,
    .result-details,
    .cost-breakdown,
    .country-groups,
    .travel-grid {
        grid-template-columns: 1fr !important;
    }

    .info-box,
    .contact-form,
    .newsletter-panel,
    .mcqs-container,
    .mcq-question,
    .test-summary,
    .budget-calculator,
    .travel-checklist,
    .destination-content,
    .experience-details {
        padding: 18px !important;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .timeline-item:before {
        width: 16px;
        height: 16px;
    }

    .timeline-item:after {
        left: 7px;
    }

    .resource-modal {
        padding: 12px;
    }

    .resource-modal-head,
    .resource-modal-body {
        padding-left: 14px;
        padding-right: 14px;
    }

    .faq-question {
        align-items: flex-start;
        gap: 10px;
    }

    .faq-question span {
        line-height: 1.4;
    }

    [style*="minmax(300px, 1fr)"],
    [style*="minmax(350px, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.45rem;
    }

    .hero-actions .btn {
        min-width: 100%;
    }

    .nav-actions {
        gap: 6px;
    }

    .mobile-menu {
        width: 100%;
        border-left: none;
    }

    .region-btn {
        width: 100%;
    }
}
