/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: white;
    color: #c41e3a;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    line-height: 0;
    cursor: pointer;
}

.logo img {
    height: 70px;
    width: auto;
    padding: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

nav a:hover,
nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Video Section */
.hero-video {
    background: transparent;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.hero-video .container {
    padding: 0;
    max-width: 1200px;
}

.video-wrapper {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    object-fit: cover;
}

/* About Section */
.about-section {
    background: transparent;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.about-section h1 {
    color: #c41e3a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
    max-width: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Services Container */
.services-container {
    padding: 2rem 0 4rem 0;
}

.services-container .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Cards */
.service-section {
    display: flex;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    border-top: 4px solid #c41e3a;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h2 {
    color: #c41e3a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 0.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-main {
    padding: 3rem 0;
    min-height: calc(100vh - 300px);
}

.contact-main h1 {
    text-align: center;
    color: #c41e3a;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info .info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.info-card h2 {
    color: #c41e3a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #c41e3a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #c41e3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #a01729;
    text-decoration: underline;
}

.map-container h2 {
    color: #c41e3a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-wrapper iframe {
    display: block;
}

/* Gallery Slider Styles */
.gallery-section {
    background: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.gallery-section .container {
    padding: 0 20px;
    max-width: 1200px;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 0 auto;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(196, 30, 58, 0.7);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(196, 30, 58, 0.9);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    text-align: center;
    padding: 1rem 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot:hover,
.dot.active {
    background-color: #c41e3a;
}

/* About Page Styles */
.about-page {
    padding: 3rem 0;
    min-height: calc(100vh - 300px);
}

.about-page h1 {
    text-align: center;
    color: #c41e3a;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-intro {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-intro h2 {
    color: #c41e3a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-intro p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #c41e3a;
}

.detail-card h2 {
    color: #c41e3a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.detail-card p {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.detail-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Page Styles */
.services-page {
    padding: 3rem 0;
    min-height: calc(100vh - 300px);
}

.services-page h1 {
    text-align: center;
    color: #c41e3a;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.services-intro {
    text-align: center;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #c41e3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-card h2 {
    color: #c41e3a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 0.5rem;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.service-detail-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background: white;
    color: #c41e3a;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #c41e3a;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.sitemap {
    list-style: none;
}

.sitemap li {
    margin-bottom: 0.5rem;
}

.sitemap a {
    color: #c41e3a;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.sitemap a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .services-container .container {
        grid-template-columns: 1fr;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slide img {
        height: 500px;
    }

    .slider-btn {
        padding: 0.7rem;
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .video-wrapper {
        margin: 0 1rem;
    }

    .contact-main h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-card h2 {
        font-size: 1.3rem;
    }

    nav a {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .gallery-slide img {
        height: 500px;
    }

    .slider-btn {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .dot {
        height: 10px;
        width: 10px;
    }
}
