:root {
    --primary-color: #4A5859;
    --secondary-color: #8C7F76;
    --accent-color: #D5B9B2;
    --text-color: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --max-width: 1200px;
    --primary-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Simple Header Layout */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - Left */
.logo {
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.logo a {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.logo img {
    height: 75px;
    width: auto;
    max-width: 320px;
    display: block;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 65px;
}

.logo a:hover img {
    opacity: 0.8;
}

/* Get Free Quote - Center */
.nav-cta {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateX(-50%) translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hamburger - Right */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 10001;
    flex: 0 0 auto;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu - Hidden by Default */
.nav-menu {
    position: fixed !important;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    padding: 0;
    overflow-y: auto;
    display: block !important;
}

/* Show mobile menu on all screen sizes */
.nav-menu {
    display: block !important;
}

/* Ensure no select elements show in mobile menu */
.nav-menu select {
    display: none !important;
}

.nav-menu.active {
    right: 0;
}

.nav-links {
    padding: 4rem 0 0 0;
    margin: 0;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: #f8f9fa;
    padding-left: 2.5rem;
}

/* Services Dropdown in Mobile Menu */
.dropdown {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.nav-menu .dropdown .dropdown-btn {
    width: 100% !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
    background: var(--white) !important;
    border: none !important;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.dropdown-btn:hover {
    color: var(--primary-color);
    background: #f8f9fa;
    padding-left: 2.5rem;
}

.dropdown-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-left: auto;
}

.dropdown.active .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.dropdown.active .dropdown-content {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 3rem;
}

.dropdown-content a::before {
    content: '•';
    position: absolute;
    left: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    color: var(--primary-color);
    background: #e9ecef;
    padding-left: 3.5rem;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .header.scrolled {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 65px;
        max-width: 280px;
    }
    
    .header.scrolled .logo img {
        height: 55px;
    }
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/new-painted-roof.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Hero Sections */
.hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Service-specific hero backgrounds */
.painting-hero {
    background-image: url('../images/roof-painting-hero.jpg');
}

.cleaning-hero {
    background-image: url('../images/roof-cleaning-hero.jpg');
}

.waterproofing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/waterproofing.jpg') no-repeat center center;
    background-size: cover;
    min-height: 60vh;
}

/* Service Page Hero Sections */
.painting-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/roof-painting.jpg') no-repeat center center;
    background-size: cover;
    min-height: 60vh;
}

.cleaning-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/roof-cleaning.jpg') no-repeat center center;
    background-size: cover;
    min-height: 60vh;
}

.waterproofing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/waterproofing.jpg') no-repeat center center;
    background-size: cover;
    min-height: 60vh;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.cta-button {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.benefits h2, .services h2, .testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.service-card h3, .service-card p {
    padding: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: gold;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.form-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(74, 88, 89, 0.3);
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Hide honeypot field */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
        word-wrap: break-word;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .benefit-card,
    .service-card,
    .testimonial-card {
        margin: 0 1rem;
        word-wrap: break-word;
    }
    
    .contact-form {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        text-align: center;
    }
}

/* Service Hero Section */
.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 8rem 1rem 4rem;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Service Details */
.service-details {
    padding: 4rem 0;
    background: var(--light-bg);
}

.service-info {
    margin-bottom: 3rem;
}

.service-info h2,
.service-process h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-process ol {
    list-style: none;
    counter-reset: process-counter;
    padding: 0;
}

.service-process ol li {
    counter-increment: process-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.service-process ol li::before {
    content: counter(process-counter);
    background: var(--primary-color);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}

/* Service Details Section */
.service-details {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.service-details .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-info {
    margin-bottom: 3rem;
}

.service-info h2,
.service-benefits h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.service-info ol {
    list-style: none;
    counter-reset: service-counter;
    padding: 0;
}

.service-info ol li::before {
    content: counter(service-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #4A5859;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.service-info ol li h3 {
    color: #4A5859;
    margin-bottom: 0.5rem;
}

.service-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-benefits .benefit {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-benefits .benefit h3 {
    color: #4A5859;
    margin-bottom: 1rem;
}

/* Service Benefits Section */
.service-benefits {
    padding: 4rem 2rem;
    background-color: #fff;
}

.service-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-benefits h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.service-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-benefits .benefit {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-benefits .benefit h3 {
    color: #4A5859;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: #4A5859;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #D5B9B2;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-section .cta-button:hover {
    background-color: #8C7F76;
    color: white;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: var(--light-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-form {
    padding: 4rem 0;
    background: var(--white);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-form > .container > p {
    text-align: center;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: auto;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.submit-button:hover {
    background: var(--secondary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
        padding: 0;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin: 0 1rem;
    }
    
    .benefits,
    .services,
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .contact {
        padding: 3rem 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/contact-hero.jpg') no-repeat center center;
    background-size: cover;
    min-height: 60vh;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #4A5859;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-details {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #4A5859;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
}

.service-areas h3 {
    color: #4A5859;
    margin-bottom: 1rem;
}

.service-areas ul {
    list-style: none;
    padding: 0;
    columns: 2;
}

.service-areas li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-areas li::before {
    content: "•";
    color: #4A5859;
    position: absolute;
    left: 0;
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #4A5859;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #4A5859;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: auto;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #8C7F76;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-areas ul {
        columns: 1;
    }
}

/* Recent Projects Section */
.recent-projects {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.recent-projects h2 {
    text-align: center;
    color: #4A5859;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    aspect-ratio: 1;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay p {
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .project-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 1rem;
    }
}

/* Recent Work Section */
.recent-work {
    padding: 2rem 0;
    background-color: #f5f5f5;
}

.recent-work h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}