/* ===== GLOBAL RESET & VARIABLES ===== */
:root {
    --red: #C41E2A;
    --red-dark: #9B1520;
    --black: #1A1A1A;
    --dark-gray: #2D2D2D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-dark: #333333;
    --text-light: #666666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-red {
    background-color: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background-color: var(--red-dark);
}

.btn-white {
    background-color: var(--white);
    color: var(--red);
}

.btn-white:hover {
    background-color: var(--light-gray);
}

.btn-outline {
    background-color: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-outline:hover {
    background-color: var(--red);
    color: var(--white);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact a {
    color: var(--white);
}

.top-bar-contact a:hover {
    color: var(--red);
}

.top-bar-contact .divider {
    margin: 0 15px;
    opacity: 0.5;
}

.top-bar-social a {
    color: var(--white);
    margin-left: 15px;
    font-weight: 600;
}

.top-bar-social a:hover {
    color: var(--red);
}

/* ===== HEADER ===== */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--red);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--black);
}

/* ===== HERO ===== */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-white {
    background-color: var(--white);
}

.section-light {
    background-color: var(--light-gray);
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-dark h2 {
    color: var(--white);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col.reverse .col-text {
    order: 2;
}

.two-col.reverse .col-image {
    order: 1;
}

.col-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.col-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background-color: var(--red);
    color: var(--white);
    padding: 80px 0;
}

.cta-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== SERVICE CARDS ===== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 700px;
    margin: 30px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    margin-bottom: 20px;
    resize: vertical;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--medium-gray);
    padding: 25px 0;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding-top: 15px;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--red);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    color: var(--red);
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.social-links a {
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== ABOUT PAGE ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--red);
}

.value-card p {
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.contact-details h3 {
    margin-bottom: 20px;
    color: var(--red);
}

.contact-details p {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col.reverse .col-text {
        order: 1;
    }

    .two-col.reverse .col-image {
        order: 2;
    }

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

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

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

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

    .hero h1 {
        font-size: 2.4rem;
    }

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

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .header-content {
        position: relative;
    }

    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cta-banner h2 {
        font-size: 1.8rem;
    }

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

    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
