:root {
            --primary-deep: #041855;
            --primary-mid: #1B4965;
            --accent-gold: #D4AF37;
            --accent-coral: #E88873;
            --neutral-light: #F8F9FA;
            --neutral-mid: #E9ECEF;
            --text-dark: #1A1A1A;
            --text-light: #6C757D;
        }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #041855;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-switch {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switch:hover {
    background: white;
    color: #1e3c72;
}

 /* Hero Section */
        .hero {            
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-deep) 80%, var(--primary-mid) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(232, 136, 115, 0.1) 0%, transparent 50%);
            opacity: 0.6;
        }

        .globe-decoration {
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 700px;
            height: 700px;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.2);
            animation: rotate 60s linear infinite;
        }

        .globe-decoration::before,
        .globe-decoration::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .globe-decoration::before {
            width: 500px;
            height: 500px;
            top: 100px;
            left: 100px;
        }

        .globe-decoration::after {
            width: 300px;
            height: 300px;
            top: 200px;
            left: 200px;
        }

        @keyframes rotate {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 3rem;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            color: var(--accent-gold);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
        }

        .hero h1 {            
            font-size: 4.5rem;
            font-weight: 700;
            color: white;
            line-height: 1.1;
            max-width: 800px;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 650px;
            line-height: 1.8;
            margin-bottom: 3rem;
            font-weight: 300;
            animation: fadeInUp 0.8s ease-out 0.5s backwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;    
}

section {
    margin-bottom: 4rem;
    scroll-margin-top: 80px;
}

h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.quote {
    background: white;
    padding: 2rem;
    border-left: 4px solid #2a5298;
    margin: 2rem 0;
    font-style: italic;
}

.quote-author {
    text-align: right;
    margin-top: 1rem;
    font-weight: bold;
    color: #1e3c72;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, transparent 100%);
    border-radius: 0 10px 0 100%;
}

.program-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-card ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.program-card li {
    margin: 0rem 0;
    font-size: 0.95rem;
}

.program-detail {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.school-info {
    color: white;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.school-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.contact-section {
    background: #f8f9fa;    
    border-radius: 10px;
    text-align: center;
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-box h4 {
    margin: 0;
}

.contact-box a {
    transition: color 0.3s;
}

.contact-box a:hover {
    color: #1e3c72 !important;
}

.contact-info {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.cta-button {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e3c72;
}

footer {
    background: #041855;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

/* Single Page Section Styles */
.section {
    padding: 1rem 0;
    min-height: 60vh;
}

.section-alt {
    background: #f8f9fa;
}

/* Ensure smooth scrolling with offset for fixed header */
section {
    scroll-margin-top: 80px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.lang-en.active {
    display: inline;
}


.lang-content.active {
    display: block;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3c72;
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Feedback Slider Styles */
.feedback-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.program-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #2a5298;
    border-radius: 25px;
    color: #2a5298;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.program-tab:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.program-tab.active {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.feedback-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feedback-cards-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.feedback-cards {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-card {
    min-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(42, 82, 152, 0.1);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.7;
}

.quote-icon2 {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    opacity: 0.7;
}

.feedback-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.feedback-program-label {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.slider-btn {
    background: white;
    border: 2px solid #2a5298;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #2a5298;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #2a5298;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: #2a5298;
    transform: scale(1.2);
}

.dot.active {
    background: #2a5298;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {

    .cta-buttons > .btn {
        padding: 0.5rem 1.5rem;
    }

    .container {
        max-width: 100%;
        padding: 1rem;
    }
    
    .program-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .feedback-card {
        padding: 2rem 1.5rem;
    }
    
    .feedback-text {
        font-size: 1rem;
        min-height: 250px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .quote-icon {
        top: 1rem;
        right: 1rem;
    }
    
    .quote-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feedback-slider {
        gap: 0.5rem;
    }

    .slider-dots {    
        gap: 0.50rem;
    }

    .dot {
    width: 6px;
    height: 6px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem 1rem;
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .about-content {    
        padding: 2rem;
    }
    .school-info {    
        padding: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-content h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}

/* Photo Gallery Styles */
#photos {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);    
    margin-left: -2rem;
    margin-right: -2rem;
}

.photo-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}

.photo-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.photo-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.film-strip-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

.film-strip {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 0;
}

.film-item {
    flex-shrink: 0;
    width: 400px;
    height: 420px;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.75);
    opacity: 0.4;
    filter: blur(2px);
}

.film-item.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 10;
}

.film-item:hover {
    transform: scale(0.8);
    opacity: 0.7;
}

.film-item.active:hover {
    transform: scale(1.02);
    opacity: 1;
}

.film-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    background: white;
    transition: all 0.4s;
}

.film-item.active .film-image {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.film-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #2a5298;
    border-radius: 25px;
    color: #2a5298;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.photo-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f0f0f0;
}

.photo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.photo-info {
    padding: 2rem;
    background: white;
    text-align: center;
}

.photo-info h4 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.photo-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    min-height: 60px;
}

.photo-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .photo-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .film-strip-wrapper {
        height: 350px;
    }
    
    .film-item {
        width: 280px;
        height: 300px;
    }
    
    .photo-info {
        padding: 1.5rem;
    }
    
    .photo-info h4 {
        font-size: 1.3rem;
    }
    
    .photo-info p {
        font-size: 0.95rem;
        min-height: 50px;
    }
    
    #photos {
        padding: 3rem 1rem;
        margin-left: -2rem;
        margin-right: -2rem;
    }
    
    .photo-slider {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .film-strip-wrapper {
        height: 280px;
    }
    
    .film-item {
        width: 220px;
        height: 240px;
    }
    
    .photo-info h4 {
        font-size: 1.1rem;
    }
    
    .photo-info p {
        font-size: 0.9rem;
    }
}

.program-card {
        transition: all 0.3s ease;
    }
    
    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(42, 82, 152, 0.2);
    }
    
    .program-card.active {
        border: 3px solid #2a5298;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        box-shadow: 0 10px 25px rgba(42, 82, 152, 0.3);
    }
    
    #programDetailSection {
        animation: fadeIn 0.5s ease-in;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }




        #programDetailContent {
            line-height: 1.6;
            color: #333;
        }
        
        #programDetailContent .program-title {
            color: #2c3e50;
            font-size: 2em;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
        }
        
        #programDetailContent .program-section {
            margin-bottom: 30px;
        }
        
        #programDetailContent .program-section h2 {
            color: #3498db;
            font-size: 1.3em;
            margin-bottom: 15px;
        }
        
        #programDetailContent .program-section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        #programDetailContent .info-box {
            background: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #3498db;
            margin: 20px 0;
        }
        
        #programDetailContent .info-box h2 {
            color: #2c3e50;
            font-size: 1.3em;
            margin-bottom: 15px;
        }
        
        #programDetailContent .topics {
            background: #f8f9fa;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        #programDetailContent .topics h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        #programDetailContent .topics p {
            color: #555;
        }
        
        #programDetailContent .contact {
            background: #e8f4f8;
            padding: 20px;
            text-align: center;
            border-radius: 5px;
            margin-top: 30px;
        }
        
        #programDetailContent .contact p {
            color: #2c3e50;
            font-size: 1.1em;
            margin: 0;
        }


        #programDetailContent h2 {
            text-align: left;
        }

.service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.4s ease;
        }




 /* Footer */
        footer {            
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: white;
            margin-bottom: 1rem;
        }

        .footer-about p {
            line-height: 1.7;
            font-size: 0.9rem;
        }

        .footer-links h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.85rem;
        }



        @media (max-width: 768px) {
            

            .footer-content {
                grid-template-columns: 1fr;
            }
        }


.btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-primary {
            background: var(--accent-gold);
            color: var(--primary-deep);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            background: #C49D2E;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }