/* Garden Room Experts - Exact PDF Match */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #5cb85c;
    --dark-green: #4a9c4a;
    --dark-bg: #2c2c2c;
    --text-dark: #333;
    --text-gray: #666;
    --light-bg: #f5f5f5;
    --white: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* TOP BAR */
.top-bar {
    background: var(--dark-bg);
    padding: 10px 0;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar .logo img {
    height: 45px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 13px;
}

.top-bar-hours {
    color: #ccc;
}

.top-bar-phone {
    color: var(--green);
    font-weight: 700;
    font-size: 18px;
}

/* NAVIGATION */
.main-nav {
    background: var(--dark-bg);
    border-top: 1px solid #444;
}

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

.main-nav a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--green);
}

/* HERO */
.hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-green {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--text-dark);
}

/* TRUST BADGES */
.trust-badges {
    background: var(--light-bg);
    padding: 30px 0;
}

.trust-badges .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

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

.trust-badge-icon {
    width: 65px;
    height: 65px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.trust-badge h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.trust-badge p {
    font-size: 13px;
    color: var(--text-gray);
}

/* SECTIONS */
.section {
    padding: 50px 0;
}

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

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

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 14px;
    line-height: 1.7;
}

/* PURPOSE GRID */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.purpose-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.purpose-card-content {
    padding: 18px;
}

.purpose-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.purpose-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* QUALITY SECTION */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.quality-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.quality-seal {
    width: 220px;
    height: 220px;
    border: 6px solid var(--green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.quality-seal .top-text {
    font-size: 14px;
    color: var(--green);
    font-weight: 500;
}

.quality-seal .main-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
}

.quality-seal .bottom-text {
    font-size: 14px;
    color: var(--green);
    font-weight: 500;
}

/* RANGE SECTION */
.range-grid {
    max-width: 950px;
    margin: 0 auto;
}

.range-card {
    display: grid;
    grid-template-columns: 170px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 25px 30px;
    background: var(--light-bg);
    margin-bottom: 15px;
    border-left: 5px solid var(--green);
}

.range-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.range-card .warranty {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.range-card .description {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA BAR */
.cta-bar {
    background: var(--green);
    padding: 20px 0;
}

.cta-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-bar h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.cta-bar p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.cta-phone-box {
    background: #fff;
    color: var(--green);
    padding: 15px 35px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 3px;
}

/* WHY CHOOSE US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.why-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.why-content .btn {
    margin-top: 10px;
}

.why-image img {
    width: 100%;
    border-radius: 5px;
}

/* FEATURE BOXES */
.feature-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.feature-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 5px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.feature-box .btn {
    margin-top: 10px;
}

/* NEWS SECTION */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.news-card-content {
    padding: 20px;
}

.news-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* TESTIMONIALS */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.testimonials-header h2 {
    font-size: 26px;
    font-weight: 600;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-rating .logo {
    font-weight: 600;
    font-size: 14px;
}

.google-rating .stars {
    color: #f4b400;
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
    color: #f4b400;
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonial-card .name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.testimonial-card .date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* EXTENSION SECTION */
.extension-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.extension-image img {
    width: 100%;
    border-radius: 5px;
}

.extension-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.extension-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* FOOTER */
.footer {
    background: var(--dark-bg);
    padding: 25px 0;
    text-align: center;
}

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

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    margin: 0 15px;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-company {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
}

/* MOBILE MENU */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        z-index: 100;
    }

    .main-nav ul.active {
        display: flex;
    }

    .main-nav a {
        border-bottom: 1px solid #444;
    }

    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-grid,
    .why-grid,
    .extension-grid,
    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .range-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .range-card .btn {
        margin-top: 15px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 5px;
    }

    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .trust-badges .container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .purpose-grid,
    .news-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* FORMS (for other pages) */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: inherit;
}

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

/* PRODUCT GRID (for products page) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.product-card-content {
    padding: 20px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.product-card .price {
    color: var(--green);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}
