/* --- General & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maple-red: #E53E3E;
    --maple-dark: #2D3748;
    --maple-grey: #718096;
    --maple-light-grey: #F7FAFC;
    --white: #FFFFFF;
    --black: #1A202C;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--maple-red);
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--maple-red);
    border-bottom-color: var(--maple-red);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--maple-red);
    cursor: pointer;
}

/* --- Hero & Page Header --- */
.hero {
    background-image: linear-gradient(rgba(45, 55, 72, 0.7), rgba(26, 32, 44, 0.7)), url(' https://i.ibb.co/1c3mVL6/Gemini-Generated-Image-za18g7za18g7za18.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 200px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-header {
    background-color: var(--maple-dark);
    color: var(--white);
    text-align: center;
    padding: 140px 20px 60px 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* --- Sections & Titles --- */
.section {
    padding: 80px 0;
}
.bg-light-grey {
    background-color: var(--maple-light-grey);
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--maple-dark);
    margin-bottom: 60px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--maple-red);
    margin: 20px auto 0;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background: var(--maple-red);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    border: none;
}
.cta-button:hover {
    background-color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.cta-button.alt {
    background: var(--maple-dark);
    color: var(--white);
}
.cta-button.alt:hover {
    background: var(--black);
}

/* --- Cards (Services & Projects) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.services-grid.large {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--maple-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.service-icon {
    font-size: 3rem;
    color: var(--maple-red);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maple-dark);
    margin-bottom: 15px;
}
.service-card p {
    color: var(--maple-grey);
    line-height: 1.7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.project-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.project-content {
    padding: 25px;
}
.project-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maple-dark);
    margin-bottom: 10px;
}
.project-location {
    color: var(--maple-red);
    font-weight: 600;
    margin-bottom: 10px;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--maple-red);
    margin-bottom: 20px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.stat {
    text-align: center;
    padding: 20px;
    background: var(--maple-light-grey);
    border-radius: 10px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--maple-red);
}

/* --- Forms --- */
.form-container, .contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 25px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--maple-dark);
}
input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--maple-red);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-info {
    background: var(--maple-dark);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
}
.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.contact-item i {
    font-size: 1.5rem;
    color: var(--maple-red);
    margin-right: 20px;
    width: 30px;
}
.contact-item div p {
    opacity: 0.8;
}
.map-container {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
}
.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Footer --- */
.footer {
    background: var(--maple-dark);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--maple-red);
    margin-bottom: 20px;
}
.footer-content p {
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--maple-red);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    opacity: 0.6;
}

/* --- Thank You Page --- */
.thank-you-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--maple-light-grey);
    text-align: center;
    padding: 20px;
}
.thank-you-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
}
.thank-you-box .logo {
    font-size: 3rem;
    margin-bottom: 20px;
}
.thank-you-box h1 {
    font-size: 2.5rem;
    color: var(--maple-dark);
    margin-bottom: 15px;
}
.thank-you-box p {
    color: var(--maple-grey);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 150px 0; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-container, .contact-form-container {
        padding: 30px 20px;
    }
}