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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: background 0.3s;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 100%;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff0000;
    white-space: nowrap;
    flex-shrink: 0;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: #ff0000;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        list-style: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0;
    }

    nav ul.active {
        max-height: 500px;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid #333;
    }

    nav ul li a {
        display: block;
        font-size: 1rem;
    }
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-btn:hover {
    background: #cc0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

.about, .contact {
    background: #111;
}

.services {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/841130/pexels-photo-841130.jpeg') no-repeat center center;
    background-size: cover;
}

.gallery {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.pexels.com/photos/6455971/pexels-photo-6455971.jpeg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff0000;
}

/* About */
.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
}

#contact-form button {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
}

#contact-form button:hover {
    background: #cc0000;
}

/* Footer */
footer {
    background: #000;
    padding: 2rem 0;
    text-align: center;
}

.social-links a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff0000;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Ripple Effect */
.cta-btn, .book-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Smooth Transitions */
* {
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    overflow-x: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .stats {
        flex-direction: column;
    }
    .service-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
}


footer { background: #000; padding: 3rem 0 1rem; border-top: 1px solid #333; }

.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 2rem; }

.footer-section h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }

.footer-section p { color: #999; font-size: 0.9rem; line-height: 1.8; }

.footer-rating { margin-top: 1rem; display: flex; align-items: center; gap: 0.8rem; }

.footer-rating .stars { color: #ff0000; font-size: 1rem; }

.footer-rating .rating-text { color: #bbb; font-size: 0.9rem; }

.footer-section ul { list-style: none; padding: 0; }

.footer-section li { margin-bottom: 0.8rem; }

.footer-section a { color: #999; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }

.footer-section a:hover { color: #cecece; transform: translateX(5px); }

.social-links-footer { display: flex; flex-wrap: wrap; gap: 1rem; }

.social-link { background: rgba(255,0,0,0.1); color: #ff0000; padding: 0.6rem 1.2rem; border-radius: 20px; font-size: 0.85rem; transition: all 0.3s; border: 1px solid #ff0000; }

.social-link:hover { background: #ff0000; color: #fff; }

.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #333; color: #666; font-size: 0.85rem; }

.footer-bottom a { color: #999; transition: color 0.3s; }

.footer-bottom a:hover { color: #ff0000; }