:root {
    --primary-yellow: #FFD600;
    --primary-black: #121212;
    --primary-white: #FFFFFF;
    --primary-red: #D50000;
    --secondary-yellow: #FFEB3B;
    --light-yellow: #FFF9C4;
    --dark-red: #B71C1C;
    --light-red: #FFCDD2;
    --dark-gray: #424242;
    --light-gray: #F5F5F5;
    --accent-blue: #2196F3;
    --accent-green: #4CAF50;
    --accent-purple: #9C27B0;
    --accent-orange: #FF9800;
    --text-dark: #212121;
    --text-light: #757575;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--primary-white) 100%);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Animation d'entrée pour les sections */
.animate-entry {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */
.navbar {
    background: linear-gradient(90deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0px 0;
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, var(--primary-yellow) 0%, transparent 15%);
    opacity: 0.2;
    z-index: 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--primary-yellow) !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand .navbar-logo {
    height: 100px;
    margin-right: 50px;
}

.navbar-nav .nav-link {
    color: var(--primary-white);
    font-weight: 500;
    margin: 0px 10px;
    padding: 10px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-yellow);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 1.5px;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.search-bar {
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0;
    transition: all 0.4s ease-in-out;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1000;
    cursor: pointer;
}

.search-bar:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.search-bar.active {
    width: 375px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    justify-content: flex-end;
}

.search-bar.active .search-btn {
    position: static;
    width: 40px;
    height: 40px;
}

.search-bar:hover .search-btn {
    color: var(--primary-black);
}

.search-input {
    background: none;
    border: none;
    color: var(--primary-white);
    padding: 10px 15px;
    outline: none;
    width: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 16px;
}

.search-bar.active .search-input {
    width: 250px;
    opacity: 1;
    margin-right: 100px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
    flex-shrink: 0;
}

.search-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--primary-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.profile-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../image/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--primary-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(213,0,0,0.3) 0%, rgba(255,214,0,0.3) 100%);
    z-index: 0;
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, var(--primary-red) 0%, transparent 10%);
    opacity: 0.1;
    z-index: 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--primary-white);
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-title:hover {
    color: var(--primary-yellow);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-red));
    border-radius: 2.5px;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, var(--primary-yellow) 0%, transparent 15%);
    opacity: 0.1;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-black);
    display: flex;
    align-items: center;
}

.form-label i {
    margin-right: 10px;
    color: var(--primary-red);
    background-color: rgba(255, 214, 0, 0.2);
    padding: 5px;
    border-radius: 50%;
}

.form-control {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.25);
    background: var(--primary-white);
}

.form-control:invalid:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(213, 0, 0, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--primary-white);
    border: none;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(213,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(213,0,0,0.4);
    color: var(--primary-white);
}

.info-card {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, var(--primary-yellow) 0%, transparent 15%);
    opacity: 0.1;
    z-index: 0;
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-yellow);
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255,214,0,0.3);
}

.info-icon i {
    color: var(--primary-black);
    font-size: 24px;
}

.info-text {
    flex-grow: 1;
}

.info-label {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.info-value {
    color: var(--primary-white);
    line-height: 1.5;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    color: var(--primary-white);
    position: relative;
}

.map-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, var(--primary-yellow) 0%, transparent 10%);
    opacity: 0.1;
    z-index: 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    height: 600px;
    position: relative;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Cinema Facade Section */
.cinema-facade-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    height: 600px;
    z-index: 1;
}

.cinema-facade-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cinema-facade-container:hover .cinema-facade-image {
    transform: scale(1.05);
}

.facade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    padding: 40px 30px;
    z-index: 2;
}

.facade-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--primary-yellow);
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.facade-description {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: var(--primary-white);
    margin: 0;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    color: var(--primary-white);
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, var(--primary-yellow) 0%, transparent 15%);
    opacity: 0.1;
    z-index: 0;
}

.accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.accordion-header {
    border-radius: 15px !important;
}

.accordion-button {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
    font-weight: 700;
    font-size: 18px;
    padding: 20px 25px;
    box-shadow: none;
    border: none;
    position: relative;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-yellow);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-black);
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--primary-yellow) 100%);
}

.accordion-body {
    padding: 20px 25px;
    color: var(--primary-white);
    line-height: 1.6;
}

/* Modal Styles */
.modal-content {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, var(--primary-yellow) 0%, transparent 15%);
    opacity: 0.1;
    z-index: 0;
}

.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-yellow);
}

.modal-body {
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.modal-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(213,0,0,0.4);
}

.btn-close {
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background-color: var(--primary-yellow);
    opacity: 1;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(90deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
    padding: 60px 0 30px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}


footer p, footer a, footer h5 {
    color: var(--primary-white);
}

footer h5 {
    color: var(--primary-yellow) !important;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo::before {
    position: absolute;
    left: -40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-white);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.6);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    background-color: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--primary-yellow);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 214, 0, 0.2);
    text-align: center;
    color: var(--primary-white);
}

.copyright p {
    color: var(--primary-white);
    margin: 0;
}

/* Responsive - Header Mobile */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 22px;
    }
    
    .navbar-brand .navbar-logo {
        height: 60px;
        margin-right: 15px;
    }
    
    .navbar-nav .nav-link {
        font-size: 15px;
        margin: 0 5px;
        padding: 8px 12px;
    }
    
    .navbar-actions {
        gap: 8px;
    }
    
    .search-bar {
        width: 44px;
        height: 44px;
    }
    
    .search-bar.active {
        width: calc(100vw - 120px);
        max-width: 320px;
    }
    
    .search-bar.active .search-input {
        width: calc(100% - 60px);
        margin-right: 10px;
    }
    
    .profile-btn {
        width: 44px;
        height: 44px;
    }
    
    .search-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
        left: 0;
        top: 0;
    }
    
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 6px 10px;
        background-color: rgba(255, 255, 255, 0.1);
        z-index: 1001;
        position: relative;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.25);
        border-color: var(--primary-yellow);
    }
    
    .navbar-toggler:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: var(--primary-yellow);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        background-color: rgba(18, 18, 18, 0.98);
        margin-top: 10px;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 214, 0, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-brand .navbar-logo {
        height: 50px;
        margin-right: 12px;
    }
    
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 16px;
        margin: 5px 0;
        padding: 10px 15px;
        display: block;
        text-align: center;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-actions {
        gap: 10px;
        margin-top: 10px;
        justify-content: center;
    }
    
    .search-bar {
        width: 40px;
        height: 40px;
    }
    
    .search-bar.active {
        width: calc(100vw - 100px);
        max-width: 280px;
    }
    
    .search-input {
        font-size: 14px;
    }
    
    .search-bar.active .search-input {
        width: calc(100% - 50px);
        margin-right: 8px;
    }
    
    .search-btn {
        font-size: 16px;
        width: 36px;
        height: 36px;
        left: 2px;
        top: 2px;
    }
    
    .search-bar.active .search-btn {
        width: 32px;
        height: 32px;
        position: static;
    }
    
    .profile-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 5px 8px;
        background-color: rgba(255, 255, 255, 0.1);
        z-index: 1001;
        position: relative;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.25);
        border-color: var(--primary-yellow);
    }
    
    .navbar-toggler:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: var(--primary-yellow);
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .navbar-collapse {
        background-color: rgba(18, 18, 18, 0.98);
        margin-top: 15px;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 214, 0, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .navbar-brand .navbar-logo {
        height: 30px;
    }
    
    .map-container,
    .cinema-facade-container {
        height: 400px;
    }
    
    .facade-title {
        font-size: 22px;
    }
    
    .facade-description {
        font-size: 16px;
    }
    
    .facade-overlay {
        padding: 25px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        justify-content: center;
    }
    
    /* Footer Mobile Styles */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-logo {
        font-size: 26px;
        text-align: center;
        display: block;
        margin-bottom: 15px;
    }
    
    .footer-logo::before {
        display: none;
    }
    
    footer .col-lg-4 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    footer .col-lg-4:last-of-type {
        margin-bottom: 0;
    }
    
    footer p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    footer h5 {
        font-size: 18px;
        margin-bottom: 15px !important;
    }
    
    .social-icons {
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-icons a {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        padding: 12px 20px;
        font-size: 15px;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background-color: rgba(255, 214, 0, 0.2);
        transform: translateX(5px);
        color: var(--primary-yellow);
    }
    
    .copyright {
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
    }
    
    .copyright p {
        font-size: 13px;
        opacity: 0.9;
    }
}