/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    background-color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 0, 0, 0.5);
    border-bottom: 2px solid #D40000;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 0, 0, 0.8);
}

.logo h1 span {
    color: #D40000;
    text-shadow: 0 0 20px rgba(212, 0, 0, 1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D40000, #FF0000);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 0, 0, 0.8);
}

nav a:hover {
    color: #D40000;
    text-shadow: 0 0 10px rgba(212, 0, 0, 0.8);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(135deg, rgba(212, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%), 
                      url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 5px solid #D40000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #D40000;
    box-shadow: 0 0 50px rgba(212, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(212, 0, 0, 0.8), 
                 2px 2px 4px rgba(0, 0, 0, 0.9),
                 0 0 10px rgba(255, 0, 0, 0.6);
    position: relative;
}

.hero-tagline {
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.cta-button {
    background: linear-gradient(135deg, #D40000 0%, #8B0000 100%);
    color: #FFFFFF;
    border: 2px solid #D40000;
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(212, 0, 0, 0.6);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF0000 0%, #D40000 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 0, 0, 0.8);
    border-color: #FF0000;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #000000 0%, #1a0000 50%, #000000 100%);
    padding: 120px 0;
    position: relative;
    border-top: 3px solid #D40000;
    border-bottom: 3px solid #D40000;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: 4px;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 0, 0, 0.8);
}

.section-title::before {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D40000, transparent);
    margin: 0 auto 30px;
    box-shadow: 0 0 10px rgba(212, 0, 0, 0.8);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D40000, transparent);
    margin: 30px auto 0;
    box-shadow: 0 0 10px rgba(212, 0, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    padding: 50px 35px;
    text-align: center;
    border: 2px solid #D40000;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(212, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 0, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #FF0000;
    box-shadow: 0 15px 50px rgba(212, 0, 0, 0.6);
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 10px rgba(212, 0, 0, 0.6));
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 0, 0, 0.5);
}

.service-card p {
    color: #cccccc;
    font-size: 17px;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, #000000 0%, #0a0000 50%, #000000 100%);
    padding: 120px 0;
    border-top: 3px solid #D40000;
    border-bottom: 3px solid #D40000;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    border: 3px solid #D40000;
    box-shadow: 0 0 40px rgba(212, 0, 0, 0.4);
}

.gallery-slides {
    position: relative;
    overflow: hidden;
}

.gallery-slide {
    display: none;
    position: relative;
}

.gallery-slide.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(0.85);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(212, 0, 0, 0.95), transparent);
    color: #FFFFFF;
    padding: 40px 30px 25px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #D40000 0%, #8B0000 100%);
    border: 2px solid #D40000;
    color: #FFFFFF;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(212, 0, 0, 0.6);
}

.gallery-arrow:hover {
    background: linear-gradient(135deg, #FF0000 0%, #D40000 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(212, 0, 0, 0.8);
}

.gallery-arrow.left {
    left: 30px;
}

.gallery-arrow.right {
    right: 30px;
}

.gallery-arrow svg {
    width: 28px;
    height: 28px;
    display: block;
}

.gallery-dots {
    text-align: center;
    margin-top: 35px;
}

.dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #4a4a4a;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background-color: #D40000;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(212, 0, 0, 0.8);
    border-color: #FF0000;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #000000 0%, #1a0000 50%, #000000 100%);
    padding: 120px 0;
    border-top: 3px solid #D40000;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    padding: 40px;
    border: 2px solid #D40000;
    box-shadow: 0 5px 30px rgba(212, 0, 0, 0.3);
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 0, 0, 0.6);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(212, 0, 0, 0.1);
    border-left: 3px solid #D40000;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(212, 0, 0, 0.2);
    transform: translateX(5px);
}

.info-item svg {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(212, 0, 0, 0.6));
}

.info-item span {
    font-size: 19px;
    color: #FFFFFF;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    border: 2px solid #D40000;
    color: #FFFFFF;
    padding: 18px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 20px rgba(212, 0, 0, 0.5), inset 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
}

.submit-button {
    background: linear-gradient(135deg, #D40000 0%, #8B0000 100%);
    color: #FFFFFF;
    border: 2px solid #D40000;
    padding: 20px 50px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    align-self: flex-start;
    box-shadow: 0 5px 20px rgba(212, 0, 0, 0.5);
}

.submit-button:hover {
    background: linear-gradient(135deg, #FF0000 0%, #D40000 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 0, 0, 0.8);
    border-color: #FF0000;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid #D40000;
    box-shadow: 0 -5px 20px rgba(212, 0, 0, 0.3);
}

footer p {
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(212, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .section-title {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slide img {
        height: 350px;
    }

    .gallery-arrow {
        padding: 12px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }

    .gallery-arrow.left {
        left: 10px;
    }

    .gallery-arrow.right {
        right: 10px;
    }
}