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

:root {
    --primary-red: #8B2332;
    --primary-red-light: #C94B60;
    --primary-red-lighter: #E07788;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Maintenance Banner */
.maintenance-banner {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.maintenance-banner p {
    margin: 0;
}

/* Navigation */
.navbar {
    background-color: rgba(139, 35, 50, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-red);
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
    box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

.contact-btn {
    background-color: white;
    color: var(--primary-red);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    filter: blur(60px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-red);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h3 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: normal;
}

.intro-text h2 {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button-secondary:hover {
    background-color: var(--primary-red-light);
}

.feature-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--primary-red);
    font-size: 18px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.service-link:hover {
    text-decoration: underline;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.location-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-logo {
    text-align: center;
    padding: 20px;
    background: white;
}

.location-logo img {
    max-width: 200px;
    height: auto;
}

.location-info {
    padding: 30px;
    text-align: center;
}

.location-info h3 {
    color: var(--primary-red);
    font-size: 20px;
    margin-bottom: 15px;
}

.location-info p {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-details {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

.location-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.location-btn:hover {
    background-color: var(--primary-red-light);
}

/* Service Form Section */
.service-form-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: var(--primary-red);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--primary-red-light);
}

/* Career Section */
.career-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    color: white;
}

.career-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 50px;
}

.career-text {
    max-width: 800px;
}

.career-text .section-tag {
    color: white;
}

.career-text h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.career-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.career-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.career-btn {
    background-color: white;
    color: var(--primary-red);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.career-btn:hover {
    transform: scale(1.05);
}

.career-gallery {
    overflow-x: auto;
    padding: 0 40px;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.gallery-grid img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #e8e8e8;
    padding: 50px 0 30px;
}

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

.footer-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-location {
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-location p {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-location a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
}

.footer-location a:hover {
    text-decoration: underline;
}

.footer-links {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ccc;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-locations {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .career-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-form {
        padding: 20px;
    }
}
