/* Global Styles */
:root {
    --primary-color: #2c3e50; /* Modern Deep Blue */
    --secondary-color: #e67e22; /* Action Orange */
    --light-bg: #f4f7f6;
    --text-color: #333;
    --white: #ffffff;
    --grey: #bdc3c7;
    --dark: #2c3e50;
    --accent: #3498db;
    --success: #27ae60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header & Nav */
header {
    background: var(--dark);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d35400;
}

.btn-secondary {
    background: var(--accent);
}

.btn-secondary:hover {
    background: #2980b9;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.features .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    margin: 10px;
}

.feature i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

/* Trailer Preview */
.trailer-preview {
    padding: 80px 0;
    background: var(--white);
}

.trailer-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.trailer-detail {
    padding: 40px;
    background: var(--white);
    margin-bottom: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Gallery Styles */
.gallery-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.main-image-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    background: #f5f5f5;
}

.main-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 12px;
}

.thumbnail {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    transition: all 0.25s ease;
    background: #f9f9f9;
}

.thumbnail:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.2);
}

.thumbnail.active {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
}

.trailer-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.trailer-info {
    flex: 1.2;
    min-width: 300px;
}

.video-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}


.trailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trailer-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trailer-card:hover {
    transform: translateY(-10px);
}

.trailer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body h3 {
    margin-bottom: 10px;
}

.card-subtitle {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 3px;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.socials {
    margin-top: 20px;
}

.socials a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    background: #25d366; /* WhatsApp Green */
    padding: 10px 20px;
    border-radius: 50px;
    transition: opacity 0.3s ease;
}

.socials a:hover {
    opacity: 0.8;
}

/* Pricing Tables */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pricing-table th {
    background: var(--dark);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.pricing-table tr:hover {
    background: #f9f9f9;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.specs-table td:first-child {
    font-weight: bold;
    color: var(--primary-color);
    width: 40%;
    background: #f9f9f9;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* Checklist Styles */
.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

.checklist li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Agenda / Calendar Styles */
.calendar-container {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.day {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    background: #fafafa;
}

.day.header {
    background: var(--dark);
    color: var(--white);
    font-weight: bold;
}

.day.available {
    background: #e8f5e9;
    color: #2e7d32;
    cursor: pointer;
}

.day.booked {
    background: #ffebee;
    color: #c62828;
    text-decoration: line-through;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .intro-text h2 {
        font-size: 1.5rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
    }
}

    .trailer-flex {
        flex-direction: column;
        gap: 30px;
    }
    .gallery-container {
        max-width: 100%;
    }
    .main-image-container img {
        height: 300px;
    }
    .thumbnails-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
    .thumbnail img {
        height: 60px;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
}
