:root {
    --primary: #1a1a1a;
    --secondary: #d4af37;
    --dark: #121212;
    --light: #ffffff;
    --gray: #555555;
    --text-light: rgba(255,255,255,0.9);
    --text-muted: rgba(255,255,255,0.6);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-content .logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    margin-bottom: 20px;
}

.logo-gradient {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #f4e5c2, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShine 3s linear infinite;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    margin: 20px auto;
    border-radius: 3px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d4af37, #f4e5c2);
    animation: loading 2.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Header Styles */
header {
    background-color: var(--dark);
    color: var(--light);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.header-content .logo-gradient {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-indicator {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.nav-indicator span {
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e5c2);
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e5c2);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary);
}

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

@keyframes gradientShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-indicator {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        z-index: 99;
        transition: right 0.4s ease;
        padding: 80px 30px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 1.2rem;
    }
    
    .nav-indicator.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-indicator.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-indicator.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .cart-icon {
        display: none;
    }
}

/* Hero Section */
.hero {
    background-color: var(--dark);
    color: var(--light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text h1 .logo-gradient {
    font-size: inherit;
    font-weight: inherit;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-line {
    width: 100px;
    height: 1px;
    background-color: var(--light);
    margin: 2rem 0;
    opacity: 0.3;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--light);
    border: 1px solid var(--light);
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    transform: rotate(-5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: rotate(-2deg) scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: -20px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.showreel, .since {
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.showreel i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.hero-background-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-background-text span {
    display: block;
    font-size: 10vw;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.03);
    line-height: 0.8;
    white-space: nowrap;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 1rem auto 0;
}

/* Services Section */
.services {
    background-color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    color: var(--light);
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-weight: bold;
}

.price {
    color: var(--secondary);
}

.duration {
    color: var(--text-muted);
    font-weight: normal;
}

.service-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    font-weight: 600;
}

.service-btn:hover {
    background: #e6c34d;
    transform: translateY(-2px);
}

/* Our Works Section */
.works {
    background-color: var(--dark);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.work-item {
    display: block;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover {
    transform: scale(1.03);
}

.work-item:hover img {
    transform: scale(1.1);
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

.view-more .btn {
    background: var(--secondary);
    color: var(--dark);
    border: none;
}

.view-more .btn:hover {
    background: #e6c34d;
    transform: translateY(-2px);
}

/* About Section */
.about {
    background-color: rgba(0,0,0,0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Hours Section */
.hours {
    background-color: var(--dark);
}

.hours-container {
    max-width: 800px;
    margin: 0 auto;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.hours-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hours-item .day {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.hours-item .time {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background-color: rgba(0,0,0,0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--light);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.map-container {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.3);
    pointer-events: none;
    mix-blend-mode: multiply;
}

.dark-map {
    filter: grayscale(50%) invert(90%) contrast(90%);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--dark);
    margin: 50px auto;
    padding: 30px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

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

/* Booking Modal */
.booking-content {
    max-width: 500px;
}

.booking-step h2 {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.booking-service-info {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--light);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

#booking-time {
    background-color: rgba(0,0,0,0.5);
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.2);
}

#booking-time option {
    background-color: var(--dark);
    padding: 10px;
}

.time-of-day {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.time-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: all 0.3s;
}

.time-option input {
    display: none;
}

.time-option input:checked + span {
    color: var(--secondary);
}

.time-option:hover {
    background: rgba(255,255,255,0.2);
}

/* Confirmation Modal */
.confirmation-content {
    text-align: center;
    max-width: 500px;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.confirmation-details {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.confirmation-details p {
    margin-bottom: 0.5rem;
}

.confirmation-details strong {
    color: var(--light);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-container .logo-img {
    width: 60px;
    height: 60px;
}

.social-links {
    display: flex;
    margin: 1.5rem 0;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

.copyright {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-indicator {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        z-index: 99;
        transition: right 0.4s ease;
        padding: 80px 30px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 1.2rem;
    }
    
    .nav-indicator.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-indicator.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-indicator.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-line {
        margin: 2rem auto;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .about-content, .hours-content, .contact-content {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 20px auto;
        padding: 20px;
    }

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
}