:root {
    /* Primary Colors */
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #e6f0ff;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    
    /* Background Colors */
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #343a40;
    
    /* Overlay Colors */
    --overlay-dark: rgba(0, 0, 0, 0.5);
    
    /* Border Colors */
    --border-color: #dee2e6;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    height: 100px;
    width: 100%;
    box-sizing: border-box;
    background-color: white;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 100px;
    width: auto;
}

.logo-container a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding-right: 20px;
}

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

/* Hero Section */
.hero {
    background-image: url('/images/wall-panel-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-light);
}

.hero p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-light);
}

.hero-content .cta-button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-content .cta-button:hover {
    background-color: var(--primary-dark);
}

/* Info Section */
.info {
    background: white;
    text-align: center;
    padding: 40px;
}

.info h2 {
    font-size: 1.8em;
}

.info p {
    margin: 10px 0;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-logo {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
}

.footer h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: white;
    text-decoration: none;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #ffd700;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
}

.social-icons a:hover {
    color: #ffd700;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-logo img {
        max-width: 80px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .social-icons {
        justify-content: center;
    }

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

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        justify-content: space-between;
        padding: 0 1rem;
        overflow: visible;
    }
    
    .social-links {
        margin-top: 10px;
    }
}

/* Feature Module Styles */
.feature-module {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

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

.feature-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Desktop styles for reverse layout */
.feature-content.reverse {
    flex-direction: row-reverse;
}

/* Desktop styles */
.feature-text {
    flex: 1;
    max-width: 50%; /* For desktop only */
}

/* Mobile styles for all feature content */
@media (max-width: 768px) {
    .feature-content,
    .feature-content.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
    }

    .feature-image,
    .feature-text {
        flex: 1;
        padding: 0;
        width: 100%;
        max-width: 100% !important; /* Override desktop max-width */
    }

    .feature-text {
        order: 1;
    }

    .feature-image {
        order: 2;
    }

    .feature-text h2 {
        font-size: 2rem;
        padding: 0 1rem;
        width: 95%;
        margin: 0 auto;
    }

    .feature-text p {
        padding: 0;
        margin: 1rem auto;
        width: 95%;
    }

    .feature-text .hero-cta {
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }

    .feature-container {
        padding: 0;
    }
}

.feature-image {
    flex: 2;
    max-width: 100%;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

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

.cta-button:hover {
    background-color: #ffed4a;
}

/* Contact Page Styles */
.contact-module {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

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

.contact-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.thank-you-message {
    text-align: center;
    background: #f0f8f0;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.thank-you-message h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-content {
        padding: 0 1rem;
    }

    .contact-content h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
    }
}

/* Standardized CTA Button Style */
.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffd700;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
}

.hero-cta:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

/* Services Page Styles */
.services-intro {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: var(--bg-light);
}

.services-intro h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .services-intro {
        padding: 2rem 0 1rem;
    }

    .services-intro h1 {
        font-size: 2rem;
    }
}

/* Desktop Navigation */
.desktop-nav {
    margin-left: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    position: relative;
    margin-right: 1rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger to X transformation */
.hamburger.menu-open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.menu-open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.menu-open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 999;
    flex-direction: column;
    padding: 2rem;
}

.mobile-menu .mobile-menu-header {
    display: none;
}

.mobile-nav {
    margin-top: 0; /* Remove top margin since we removed the header */
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1rem 0;
}

.mobile-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .mobile-menu.active {
        display: flex !important;
    }

    .logo-container {
        flex: 0 1 auto;
    }
}

/* Mobile Menu Header Styles */
.mobile-menu-header {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-header .logo {
    height: 100px;
    width: auto;
}

.mobile-menu-header .company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
}

/* Ensure header stays white on all pages */
.feature-module header,
.contact-module header,
.services-intro header {
    background-color: white;
}

