/* Global Styles */
:root {
    --primary-color: #d4af37;
    /* Gold accent */
    --bg-color: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #141414;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --nav-height: 110px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: #1f1c17;
    /* User requested color */
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: visible;
    /* Allow logo to overflow */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    /* position: relative; REMOVED by user request to align image to container top */
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo img {
    height: 160px;
    /* Much larger */
    width: auto;
    position: absolute;
    top: 0;
    /* Flush with top */
    left: 0;
    transition: 0.3s;
    filter: drop_shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
    /* Push menu to right since logo is absolute-ish */
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        height: calc(100vh - var(--nav-height));
        text-align: center;
        transition: 0.3s;
        padding-top: 50px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 25px 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.5s ease;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #fff;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Sections */
.section {
    padding: 100px 0;
}

.bg-dark {
    background-color: var(--bg-darker);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Light background text corrections */
.dark-title {
    color: #1a1a1a;
}

.dark-title::after {
    background-color: #1a1a1a;
}

.dark-text p {
    color: #333 !important;
}

.dark-text h3 {
    color: #000 !important;
}

/* About Section */
.about-section {
    background-color: rgb(238, 222, 188);
    /* User requested Beige */
    color: #1a1a1a;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    gap: 50px;
}

.about-image img {
    border-radius: 10px;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Vision & Mission Section */
.vision-section {
    background-color: #ffffff;
    color: #000;
}

.vision-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1100px;
    gap: 50px;
}

.vision-text {
    flex: 1;
    text-align: left;
}

.vision-text .section-title {
    text-align: left;
    margin-left: 0;
}

.vision-text .section-title::after {
    left: 0;
    transform: none;
}

.vision-item {
    margin-bottom: 30px;
}

.vision-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    /* Keep gold accent for headers inside this section for style, or use black? User said white bg. Gold looks good on white. */
    color: #d4af37;
}

.vision-item p {
    color: #444;
    font-size: 1.05rem;
}

.vision-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .vision-content {
        flex-direction: column-reverse;
        /* Text on top or bottom? User: "Filmler.png visually above or below text". Standard mobile is usually Stacked. */
        text-align: center;
    }

    .vision-text .section-title {
        text-align: center;
    }

    .vision-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p,
.service-list li {
    color: var(--text-muted);
}

.service-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.service-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Films Section */
.films-section {
    background-color: rgb(238, 222, 188);
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 1.1rem;
    color: #333;
}

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

.film-card {
    background: transparent;
    text-align: center;
}

.film-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.film-card:hover .film-image img {
    transform: translateY(-5px);
}

.film-info {
    margin-top: 20px;
    padding: 10px;
}

.film-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.film-info p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* News Section */
.news-section {
    background-color: #1a170e;
    /* Dark brownish matching screenshot */
    padding: 80px 0;
    text-align: center;
}

.news-title {
    color: #e3dcd2;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-text {
    color: #a39f93;
    font-size: 1.5rem;
    font-weight: 300;
}

/* Contact */
.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    width: 100%;
}

.info-item {
    text-align: center;
    padding: 20px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item h4 {
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-muted);
}

/* Footer */
.custom-footer {
    background-color: #11100b;
    /* Very dark background */
    color: #e3dcd2;
    padding: 60px 0 20px;
    font-size: 0.85rem;
    border-top: 1px solid #2a2a2a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.footer-logo {
    flex: 0 0 150px;
}

.footer-logo img {
    width: 100%;
    max-width: 150px;
}

.footer-info-grid {
    display: flex;
    flex: 1;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h5 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    margin-bottom: 10px;
    color: #999;
    line-height: 1.6;
}

.footer-column strong {
    color: #ccc;
}

.footer-bottom {
    text-align: right;
    margin-top: 50px;
    padding-right: 5%;
    color: #555;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        text-align: center;
        padding-right: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: bottom right;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 8px 15px;
    /* Reduced by ~50% */
    font-size: 0.75rem;
    /* Reduced size */
    font-weight: 700;
    cursor: pointer;
    z-index: 9990;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-quote-btn i {
    transform: rotate(90deg);
}

.floating-quote-btn:hover {
    background-color: #fff;
    padding-bottom: 25px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background-color: #1a1a1a;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    background-color: #0f0f0f;
    border: 1px solid #333;
    padding: 12px 15px;
    color: #fff;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #151515;
}

.quote-form textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    min-height: 20px;
}

.form-status.success {
    color: #4caf50;
}

.form-status.error {
    color: #f44336;
}

@media (max-width: 768px) {
    .floating-quote-btn {
        right: 0;
        top: auto;
        bottom: 20px;
        transform: none;
        width: 100%;
        border-radius: 0;
        justify-content: center;
        padding: 20px;
    }

    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
}