:root {
    --bg-dark-overlay: rgba(32, 19, 53, 0.85);
    /* Dark purple overlay */
    --text-light: #f8f9fa;
    --accent-purple: #9b51e0;
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.2);
}

body {
    /* Simulating the dark background with posters from your screenshot */
    background-color: #1a0f2e;
    /* background-image: linear-gradient(var(--bg-dark-overlay), var(--bg-dark-overlay)), url('https://images.unsplash.com/photo-1598899134739-24c46f58b8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
    background-image: linear-gradient(to right, rgba(34, 31, 31, 1) 0%, rgba(34, 31, 31, 0.4) 100%), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* --- Header / Main Logo --- */
.site-header {
    padding: 1rem 1rem 0;
    /* margin-bottom: 1rem; */
}

.main-brand-logo {
    max-width: 250px;
    /* Adjust this to match your exact logo size */
    height: auto;
}

/* --- Layout & Spacing --- */
.main-container {
    flex: 1;
    padding: 0 1rem 1rem;
    position: relative;
}

/* --- Partner Logos Sidebar --- */
.logo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-top: 2rem;
}

.partner-logo {
    max-width: 100px;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* --- Typography & Form --- */
.content-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: justify;
    text-shadow: 1px 1px 2px #ff7e7e, 0 0 25px #dedeff, 0 0 5px #2d2d53;
}

.custom-input {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.custom-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 0.25rem rgba(155, 81, 224, 0.25);
    color: white;
}

.custom-input::placeholder {
    color: #adb5bd;
}

.btn-submit {
    background-color: var(--accent-purple);
    color: white;
    font-weight: 600;
    padding: 0.6rem 3rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-submit:hover {
    background-color: #8a40cf;
    transform: translateY(-2px);
    color: white;
}

/* --- Automatic Image Slider --- */
.slider-container {
    background: transparent;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

.slider-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.movie-title {
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* --- Floating Contact Icons --- */

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.btn-phone {
    background-color: #ff0000;
    border: 2px solid white;
}

.btn-whatsapp {
    background-color: #25D366;
    border: 2px solid white;
}

/* --- Footer --- */
.footer {
    background-color: rgba(26, 15, 46, 0.9);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #adb5bd;
    margin-top: auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .site-header {
        text-align: center;
        /* Centers logo on mobile */
    }

    .logo-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding-top: 0;
    }

    .footer {
        /* padding-bottom: 80px; */
        padding-bottom: 20px;
    }
}

@media (max-width: 425px) {
    .partner-logo {
        max-width: 65px;
        opacity: 0.9;
        transition: opacity 0.3s, transform 0.3s;
    }

    .logo-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0;
        padding-top: 0;
    }

    .site-header {
        text-align: center;
        margin-bottom: 10px;
    }
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    color: white;
    font-weight: 500;
}

/* Floating Icons */
.ph {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 70%;
    right: 10px;
}

.whatsapp {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 80%;
    right: 10px;
}