/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Section Content Wrapper for Center Alignment */
.section-content {
    text-align: center;
}

.section-content .content-split,
.section-content .benefits-list {
    text-align: left;
}

/* Color Palette */
:root {
    --primary-cedar: #8B4513;
    --secondary-charcoal: #2C2C2C;
    --accent-warm: #D2691E;
    --neutral-light: #F5F5F5;
    --neutral-medium: #E5E5E5;
    --neutral-dark: #666;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-cedar);
    color: var(--white);
    border-color: var(--primary-cedar);
}

.btn-primary:hover {
    background-color: #654321;
    border-color: #654321;
}

.btn-secondary {
    background-color: var(--secondary-charcoal);
    color: var(--white);
    border-color: var(--secondary-charcoal);
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-cedar);
    border-color: var(--primary-cedar);
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    color: var(--primary-cedar);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-charcoal);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--white) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--secondary-charcoal);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--neutral-dark);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-img,
.content-img,
.product-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.hero-img {
    max-height: 450px;
    width: 100%;
}

.content-img {
    max-height: 400px;
    width: 100%;
}

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

.hero-image {
    display: flex;
    justify-content: center;
}

/* Image Placeholders */
.image-placeholder {
    background-color: var(--neutral-medium);
    border: 2px dashed var(--neutral-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 2rem;
    border-radius: 8px;
    min-height: 300px;
    width: 100%;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-overview h2 {
    text-align: center;
    color: var(--secondary-charcoal);
    margin-bottom: 3rem;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--neutral-light);
    border: 1px solid var(--neutral-medium);
}

.service-icon {
    color: var(--primary-cedar);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--secondary-charcoal);
    margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    color: var(--secondary-charcoal);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item h4 {
    color: var(--primary-cedar);
    margin-bottom: 0.5rem;
}

/* Process */
.process {
    padding: 5rem 0;
    background-color: var(--white);
}

.process h2 {
    text-align: center;
    color: var(--secondary-charcoal);
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-cedar);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step h3 {
    color: var(--secondary-charcoal);
    margin-bottom: 1rem;
}

/* Products */
.products {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.products h2 {
    text-align: center;
    color: var(--secondary-charcoal);
    margin-bottom: 3rem;
}

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

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-image .image-placeholder {
    height: 200px;
    margin: 0;
    border-radius: 0;
    border: none;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: var(--secondary-charcoal);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-cedar);
    margin: 1rem 0;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem 0;
}

.product-features span {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

/* Service Areas */
.service-areas {
    padding: 5rem 0;
    background-color: var(--white);
}

.service-areas h2 {
    text-align: center;
    color: var(--secondary-charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--neutral-dark);
    margin-bottom: 3rem;
}

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

.area-card {
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--neutral-light);
    border: 1px solid var(--neutral-medium);
}

.area-card h3 {
    color: var(--primary-cedar);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.testimonials h2 {
    text-align: center;
    color: var(--secondary-charcoal);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--neutral-dark);
}

.testimonial-author strong {
    color: var(--secondary-charcoal);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--neutral-dark);
    font-size: 0.875rem;
}

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

.contact h2 {
    text-align: center;
    color: var(--secondary-charcoal);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    color: var(--primary-cedar);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--secondary-charcoal);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-cedar);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-cta {
    padding: 2rem;
    background-color: var(--neutral-light);
    border-radius: 12px;
}

.contact-cta h3 {
    color: var(--secondary-charcoal);
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-charcoal);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

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

.footer-brand {
    flex: 1;
    max-width: 400px;
}

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

.footer-brand .brand-name,
.footer-brand .logo {
    color: var(--white);
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-charcoal);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.cookie-accept {
    background-color: var(--primary-cedar);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #654321;
}

.cookie-reject {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-reject:hover {
    background-color: #444;
    color: var(--white);
}

.cookie-customize {
    background-color: #444;
    color: var(--white);
    border: 1px solid #666;
}

.cookie-customize:hover {
    background-color: #555;
}

.cookie-save {
    background-color: var(--success);
    color: var(--white);
}

.cookie-save:hover {
    background-color: #059669;
}

.cookie-link {
    color: var(--primary-cedar);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    overflow-y: auto;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal-content {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--neutral-medium);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--secondary-charcoal);
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-dark);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: var(--secondary-charcoal);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--neutral-light);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: var(--secondary-charcoal);
}

.cookie-required {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--primary-cedar);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-category p {
    margin: 0;
    color: var(--neutral-dark);
    font-size: 0.9rem;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--neutral-medium);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .content-split,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-cta .btn {
        width: 200px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .services-overview,
    .why-choose-us,
    .process,
    .products,
    .service-areas,
    .testimonials,
    .contact {
        padding: 3rem 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .services-grid,
    .areas-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .logo-brand {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .cookie-banner {
        padding: 1rem 0;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }
}