/* Google Fonts - Arabic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Tajawal:wght@400;500;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fcb613;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    direction: rtl;
}

body[dir="ltr"] {
    direction: ltr;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.ministry-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo-ar {
    font-size: 18px;
    color: var(--text-light);
    display: block;
}

.search-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-toggle {
    background: var(--bg-light);
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.login-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.login-btn:hover {
    background: var(--secondary-color);
}

/* Navigation */
.navbar {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    font-weight: bold;
    font-size: 16px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Logo in nav menu */
.nav-menu .logo-item {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.nav-menu .logo-item .logo {
    display: flex;
    align-items: center;
}

.nav-menu .logo-item .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Language toggle in nav menu */
.nav-menu .lang-item {
    margin-right: auto;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.nav-menu .lang-item .lang-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 14px;
}

.nav-menu .lang-item .lang-toggle:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hosteling-logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hi-logo {
    width: 120px;
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 15px;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
    opacity: 0.8;
}

/* Events Section */
.events {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 36px;
    font-weight: bold;
    display: block;
}

.event-date .month {
    font-size: 16px;
    text-transform: uppercase;
}

.event-content {
    padding: 30px;
    flex: 1;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.event-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 1000px;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        border-bottom: 1px solid #eee;
        border-right: none;
    }

    .nav-menu .logo-item {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-menu .logo-item .logo-img {
        height: 40px;
    }

    .nav-menu .lang-item {
        width: 100%;
        margin-right: 0;
        justify-content: center;
        padding: 15px 20px;
        border-top: 1px solid #eee;
    }

    .nav-menu .lang-item .lang-toggle {
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Page Header */
.page-header {
    background: #000000;
    color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    margin: 40px 0;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* Membership Page */
.membership-content {
    padding: 60px 0;
}

.membership-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.benefits-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefits-list li span {
    color: var(--text-light);
    line-height: 1.6;
}

.membership-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.membership-form-card h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
}

.membership-form .form-group,
.contact-form .form-group {
    margin-bottom: 20px;
}

.membership-form label,
.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.membership-form input,
.membership-form select,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.membership-form input:focus,
.membership-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 182, 19, 0.1);
}

.membership-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Page */
.contact-content {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-card h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Events Page */
.events-page {
    padding: 60px 0;
}

.event-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.event-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Language Direction Support */
body[dir="ltr"] .nav-menu {
    flex-direction: row-reverse;
}

body[dir="ltr"] .dropdown-menu {
    right: auto;
    left: 0;
}

body[dir="ltr"] .footer-section ul li a:hover {
    padding-right: 0;
}

/* Discover Qatar 144 Page */
.section-block {
    margin: 40px 0;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.section-block:last-child {
    border-bottom: none;
}

.section-block h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.attraction-item {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.attraction-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.attraction-item h4 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.attraction-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}
    padding-left: 5px;
}

/* Content Page Styles */
.content-page {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section {
    margin-bottom: 40px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.aims-list,
.rules-list {
    list-style: none;
    margin-top: 20px;
}

.aims-list li,
.rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 5px;
}

.aims-list li i,
.rules-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Story Page */
.story-timeline {
    margin-bottom: 50px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: 100px;
    top: 0;
    bottom: -40px;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    height: fit-content;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.story-values {
    margin-top: 50px;
}

.story-values h2 {
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
}

/* Partnerships Page */
.partners-section {
    margin: 50px 0;
}

.partners-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.partner-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.partnership-benefits {
    margin: 50px 0;
}

.partnership-benefits h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
}

.become-partner {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.become-partner h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.become-partner p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* About Qatar Page */
.qatar-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.attractions-section {
    margin-top: 50px;
}

.attractions-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
}

.attractions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.attractions-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.attractions-list li i {
    color: var(--primary-color);
    font-size: 20px;
}

.attractions-list li span {
    color: var(--text-dark);
}

/* Rules Page */
.rules-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.rules-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-rules {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.contact-rules p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 18px;
}

/* Initiatives Page */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.initiative-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.initiative-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.initiative-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.initiative-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.get-involved {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.get-involved h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.get-involved p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .membership-info,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .info-card,
    .membership-form-card,
    .contact-info,
    .contact-form-card {
        padding: 30px 20px;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-year {
        width: 100%;
    }

    .partners-grid,
    .initiatives-grid,
    .qatar-info-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .rules-section {
        padding: 30px 20px;
    }
}

/* Activities Page */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.activity-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.activity-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.activity-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Travel & Share Page */
.travel-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* News Page */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.news-date .day {
    font-size: 36px;
    font-weight: bold;
    display: block;
}

.news-date .month {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
}

.news-date .year {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.news-content {
    padding: 30px;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Testimonials Page */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Media Gallery Page */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
}

.gallery-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
}

.gallery-placeholder p {
    font-size: 14px;
    margin: 0;
}

/* Statistics Page */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 16px;
}

.stats-description {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
}

.stats-description h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stats-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 18px;
}

/* Event Detail Page */
.event-detail-page {
    padding: 60px 0;
}

.event-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.event-main-content {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.event-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
    opacity: 0.9;
}

.event-info {
    padding: 40px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.event-meta i {
    color: var(--primary-color);
}

.event-description h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.event-description h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 30px 0 15px;
}

.event-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.event-features {
    list-style: none;
    margin: 20px 0;
}

.event-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 5px;
}

.event-features li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-register-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.event-register-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.event-register-box p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-share {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.event-share h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Our Partners Section */
.our-partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
}

.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
}

.partner-logo {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-name {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

/* Hostel & Accommodation Section */
.hostel-accommodation {
    padding: 80px 0;
    background: var(--bg-light);
}

.room-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.room-category-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.room-category-btn:hover,
.room-category-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.events-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

.events-tab {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-tab:hover,
.events-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.room-gallery.active {
    display: grid;
}

.room-gallery-item {
    display: none;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-gallery-item.active {
    display: block !important;
}

.room-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.room-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Accommodation Page */
.accommodation-page {
    padding: 60px 0;
}

.accommodation-title {
    text-align: center;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: bold;
}

.room-categories-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.room-gallery-container {
    margin: 40px 0;
}

/* Gallery rules for accommodation page only */
.room-gallery-container .room-gallery,
.accommodation-page .room-gallery[data-category] {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.room-gallery-container .room-gallery.active,
.accommodation-page .room-gallery[data-category].active {
    display: grid;
}

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-details {
    margin: 50px 0;
}

.room-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: none;
}

.room-info-card.active {
    display: block;
}

.room-info-card h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.room-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 5px;
}

.room-features li i {
    color: var(--primary-color);
}

.booking-section {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.booking-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.booking-section p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Camps & Activities Page */
.camps-activities-page {
    padding: 60px 0;
}

.camps-intro {
    text-align: center;
    margin-bottom: 50px;
}

.camps-main-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.camps-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.activity-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.activity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 25px;
}

.activity-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.activity-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.activity-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.activity-social span {
    color: var(--text-light);
    font-size: 14px;
    padding: 5px 10px;
    background: var(--bg-light);
    border-radius: 3px;
}

/* Partners Page */
.partners-page {
    padding: 60px 0;
}

.partners-main-title {
    text-align: center;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsive additions */
@media (max-width: 768px) {
    .activities-grid,
    .travel-features,
    .news-grid,
    .testimonials-grid,
    .stats-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        justify-content: flex-start;
    }

    .event-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .event-meta {
        flex-direction: column;
        gap: 10px;
    }

    .event-image-placeholder {
        height: 250px;
        font-size: 60px;
    }

    .logo-section {
        flex-direction: column;
        gap: 10px;
    }

    .logo-img,
    .ministry-img {
        height: 40px;
    }

    .hero {
        padding: 100px 0;
        min-height: 500px;
    }

    .hosteling-logo {
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .hero-slider-nav {
        padding: 0 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .partner-logo {
        max-width: 120px;
        max-height: 80px;
    }

    .room-categories,
    .room-categories-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .room-category-btn {
        width: 100%;
        justify-content: center;
    }

    .room-gallery {
        grid-template-columns: 1fr;
    }

    .camps-main-title,
    .accommodation-title,
    .partners-main-title {
        font-size: 32px;
    }
}

/* Lectures & Workshops Page */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.workshop-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.workshop-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.workshop-card h4 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.workshop-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.lecture-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.lecture-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}

.lecture-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.lecture-icon {
    font-size: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.lecture-content {
    flex: 1;
}

.lecture-content h4 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.lecture-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 14px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: var(--white);
    margin: 50px 0;
}

.cta-section h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.cta-section .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .lecture-item {
        flex-direction: column;
        text-align: center;
    }

    .lecture-icon {
        margin: 0 auto;
    }

    .workshop-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Tourist Lens Competition Page */
.competition-header {
    text-align: center;
    margin: 40px 0;
}

.competition-header h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.competition-form {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 30px auto;
}

.competition-form .form-group {
    margin-bottom: 25px;
}

.competition-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
}

.competition-form .required {
    color: #d32f2f;
    margin-right: 5px;
}

.competition-form input[type="text"],
.competition-form input[type="email"],
.competition-form input[type="tel"],
.competition-form input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.competition-form input[type="text"]:focus,
.competition-form input[type="email"]:focus,
.competition-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 182, 19, 0.1);
}

.competition-form input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.competition-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

.sponsor-info {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.sponsor-info p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .competition-form {
        padding: 25px 20px;
    }

    .competition-header h2 {
        font-size: 28px;
    }
}

/* Programs Page */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.program-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-card h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.program-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.program-card .btn {
    margin-top: auto;
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}
