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

body {
    font-family: -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;
}

/* Color Variables */
:root {
    --primary-red: #dc2626;
    --navy-blue: #1e3a8a;
    --accent-yellow: #fbbf24;
    --light-gray: #f8fafc;
    --border-gray: #e2e8f0;
    --text-gray: #64748b;
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo {
    background: var(--primary-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--navy-blue);
}

.brand-tagline {
    font-size: 12px;
    color: var(--text-gray);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 500;
    transition: color 0.3s;
}

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

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--navy-blue);
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s;
}

.dropdown-btn:hover {
    color: var(--primary-red);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: var(--navy-blue);
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--primary-red);
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: transparent;
    color: var(--navy-blue);
    padding: 10px 20px;
    border: 2px solid var(--navy-blue);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--navy-blue);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.badge {
    background: var(--navy-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-primary {
    color: var(--primary-red);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    color: var(--text-gray);
    font-size: 14px;
}

/* Why Choose Us */
.why-choose {
    padding: 4rem 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

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

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Professional Assembly */
.professional-assembly {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.assembly-text h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.assembly-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.assembly-features {
    margin-bottom: 2rem;
}

.assembly-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.assembly-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.assembly-feature h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.assembly-feature p {
    color: var(--text-gray);
    margin: 0;
}

.suppliers-grid h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.supplier-badge {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
    color: white;
}

.supplier-badge:hover {
    transform: scale(1.05);
}

.supplier-badge.ikea { background: #0058a3; }
.supplier-badge.argos { background: #e60012; }
.supplier-badge.john-lewis { background: #231f20; }
.supplier-badge.next { background: #000; }
.supplier-badge.wayfair { background: #7b68ee; }
.supplier-badge.amazon { background: #ff9900; }
.supplier-badge.very { background: #e60012; }
.supplier-badge.bq { background: #00a651; }
.supplier-badge.dreams { background: #1e3a8a; }
.supplier-badge.jysk { background: #ffd700; color: #000; }

/* Areas Section */
.areas-section {
    padding: 4rem 0;
    text-align: center;
}

.areas-section h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.area-card {
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 500;
    transition: all 0.3s;
}

.area-card:hover {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: white;
}

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

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--light-gray);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-yellow);
}

.testimonial-card h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--border-gray);
    padding-top: 1rem;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
}

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 14px;
}

.contact-icon {
    font-size: 16px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-yellow);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand .logo {
    background: var(--primary-red);
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand .brand-tagline {
    color: #cbd5e1;
}

.contact-details {
    margin-top: 1rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-pricing {
    display: flex;
    gap: 1rem;
}

.pricing-badge {
    background: var(--primary-red);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .assembly-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .supplier-badges {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-pricing {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1rem;
    }
}

