/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal-blue: #202A44;
    --pure-white: #FFFFFF;
    --burnt-caramel: #8B4513;
    --charcoal-blue-light: #212e50;
    --burnt-caramel-deep: #744828;
}

body {
    font-family: 'Roboto', 'Century Gothic', 'CenturyGothic', 'AppleGothic', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--pure-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Mobile First */
.navbar {
    background-color: var(--charcoal-blue-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo h2 {
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Mobile Menu */
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--charcoal-blue);
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1rem;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--burnt-caramel);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--pure-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Mobile Optimized */
.hero {
    position: relative;
    color: var(--pure-white);
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--burnt-caramel);
    color: var(--pure-white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--charcoal-blue);
    font-weight: 600;
}

.intro-paragraphs {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.intro-paragraphs p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    color: var(--charcoal-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-weight: 400;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--charcoal-blue) 0%, #2c3e50 100%);
    color: var(--pure-white);
    padding: 100px 0 40px;
    text-align: center;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.page-header p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Page */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text h2 {
    color: var(--charcoal-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text h3 {
    color: var(--charcoal-blue);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.about-text ul {
    margin-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    order: -1;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: var(--burnt-caramel);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--charcoal-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Services Page */
.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--burnt-caramel);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--charcoal-blue);
    margin-bottom: 1rem;
    padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
}

/* Contact Page */
.contact {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--charcoal-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-details h3 {
    color: var(--charcoal-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burnt-caramel);
    margin-bottom: 0.5rem;
}

.contact-note {
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
}

.business-hours {
    background: var(--charcoal-blue);
    color: var(--pure-white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.business-hours h3 {
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.day-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day-time:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    font-size: 0.9rem;
}

.time {
    color: var(--burnt-caramel);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.office-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    background: #f8f9fa;
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        background: none;
        padding: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 150px 0 100px;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
    
    .about-image {
        order: 0;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .contact-method:hover {
        transform: translateX(10px);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}