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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: #6BA3E8;
    padding: 12px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.top-bar button {
    background: #1E4C9A;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.top-bar button:hover {
    background: #163A7A;
}

/* Header & Navigation */
header {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #E74C3C;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text {
    color: #333;
}

.logo-text span {
    color: #E74C3C;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated underline effect on hover */
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #E74C3C;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #E74C3C;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%236BA3E8" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-trust {
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.hero-urgency {
    font-size: 14px;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 15px;
}

.hero-phone {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #FFD700;
}

.hero-phone a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;
}

.hero-phone a:hover {
    color: #FFF;
    text-decoration: underline;
}

.hero-label {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Rotating text styles */
.rotating-text {
    display: inline-block;
    position: relative;
    min-width: 350px;
    white-space: nowrap;
}

.rotating-text span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    white-space: nowrap;
    color: #FFD700;
}

.rotating-text span.active {
    opacity: 1;
    position: relative;
    left: 0;
    transform: none;
}

.hero-tagline {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-locations {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.hero-section {
    background: linear-gradient(135deg, #1E4C9A 0%, #6BA3E8 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.hero-stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    background: #27AE60;  /* Changed from blue to green for better conversions */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #229954;  /* Darker green on hover */
}

.submit-button {
    background: #27AE60;  /* Green for form submissions */
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #229954;  /* Darker green on hover */
}

/* Container & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    color: #333;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #E74C3C;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Index.html - Why Choose Section */
.why-choose {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-choose h2 span {
    color: #E74C3C;
}

.why-choose-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.8;
}

/* Why Choose - Feature Cards (Single Column Stack) */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    text-align: left;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 10px;
    border-left: 4px solid #1E4C9A;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 20px;
    color: #1E4C9A;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-link {
    color: #E74C3C;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

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

.feature-image {
    width: 100%;
    height: 250px;
    background: #E0E0E0;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #999;
}

/* Comparison Table Section */
.comparison-table-section {
    padding: 80px 20px;
    background: #F8F9FA;
    text-align: center;
}

.comparison-table-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.comparison-table-section h2 span {
    color: #E74C3C;
}

.comparison-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #1E4C9A 0%, #6BA3E8 100%);
    color: white;
}

.comparison-table thead th {
    padding: 30px 20px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    border-right: 2px solid rgba(255,255,255,0.2);
}

.comparison-table thead th:first-child {
    text-align: left;
    font-size: 18px;
    background: #163A7A;
}

.comparison-table thead th:last-child {
    border-right: none;
}

.comparison-table thead th.signature-header {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    position: relative;
}

.comparison-table thead th.competitor-header {
    background: #95a5a6;
}

.best-value-badge {
    display: block;
    background: #FFD700;
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    display: inline-block;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: #F8F9FA;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    border-right: 1px solid #E0E0E0;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
    background: #F8F9FA;
}

.comparison-table td:last-child {
    border-right: none;
    font-size: 13px;
    color: #999;
}

.check-icon {
    color: #4CAF50;
    font-size: 24px;
    font-weight: bold;
}

.cross-icon {
    color: #E74C3C;
    font-size: 24px;
    font-weight: bold;
}

.comparison-table tfoot tr {
    background: #F8F9FA;
}

.comparison-table tfoot td {
    padding: 25px 20px;
    border-top: 2px solid #E0E0E0;
}

.comparison-table tfoot td:first-child {
    background: transparent;
}

.comparison-table .cta-button {
    background: #1E4C9A;  /* Blue for secondary actions */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 200px;
}

.comparison-table .cta-button:hover {
    background: #163A7A;
    transform: scale(1.05);
}

.comparison-table .cta-button.signature {
    background: #27AE60;  /* Green for your premium sheds - the main CTA */
}

.comparison-table .cta-button.signature:hover {
    background: #229954;  /* Darker green on hover */
}

.comparison-table .cta-button.disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.comparison-table .cta-button.disabled:hover {
    background: #95a5a6;
    transform: none;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.testimonials h2 span {
    color: #E74C3C;
    font-style: italic;
}

.testimonials-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.star-rating {
    color: #E74C3C;
    font-size: 32px;
    margin-bottom: 10px;
}

.star-rating-large {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 10px;
}

.review-source {
    color: #666;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #5A6C7D;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.testimonial-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-location {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial-text {
    line-height: 1.8;
    font-size: 15px;
}

.permit-section {
    background: #FFF3CD;
    border-left: 5px solid #FFC107;
    padding: 30px;
    margin: 60px auto;
    max-width: 1000px;
    border-radius: 5px;
}

.permit-section h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 24px;
}

.permit-section p {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 10px;
}

.financing-section {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.financing-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.financing-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.financing-section button {
    background: white;
    color: #E74C3C;
    border: none;
    padding: 15px 50px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.financing-section button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Service Area Page */
.intro-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.intro-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.intro-section h2 span {
    color: #E74C3C;
}

.intro-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.region-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.region-header {
    background: #1E4C9A;
    color: white;
    padding: 40px;
    text-align: center;
}

.region-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.region-header p {
    font-size: 18px;
    opacity: 0.9;
}

.region-body {
    padding: 40px;
}

.region-body h4 {
    font-size: 22px;
    color: #1E4C9A;
    margin-bottom: 20px;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.cities-list li {
    list-style: none;
    padding: 10px 15px;
    background: #F8F9FA;
    border-radius: 5px;
    color: #666;
}

.cities-list li:before {
    content: "📍";
    margin-right: 10px;
}

.contact-box {
    background: #E3F2FD;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-box h4 {
    color: #1E4C9A;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-box p {
    color: #666;
    margin-bottom: 10px;
}

.contact-box a {
    color: #1E4C9A;
    text-decoration: none;
    font-weight: 600;
}

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

.coverage-note {
    background: #FFF3CD;
    border-left: 5px solid #FFC107;
    padding: 30px;
    margin: 60px auto;
    max-width: 900px;
    border-radius: 5px;
}

.coverage-note h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 24px;
}

.coverage-note p {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Testimonials Page */
.trust-banner {
    background: #4CAF50;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.trust-banner h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.trust-banner p {
    font-size: 18px;
    opacity: 0.95;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 14px;
    color: #999;
}

.review-stars {
    font-size: 20px;
    color: #FFD700;
}

.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-footer {
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.featured-review {
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
    border: 3px solid #1E4C9A;
    margin-bottom: 60px;
    padding: 50px;
    border-radius: 15px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #E74C3C;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.featured-review .review-text {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.featured-review .reviewer-info {
    text-align: center;
}

.featured-review .review-stars {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.google-reviews-section {
    background: #F8F9FA;
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
}

.google-reviews-section h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.google-reviews-section p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.google-btn {
    background: white;
    color: #333;
    border: 2px solid #E0E0E0;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.google-btn:hover {
    border-color: #4285F4;
    color: #4285F4;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2C3E50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

/* Remove underline animation on mobile */
@media (max-width: 768px) {
    nav a::after {
        display: none;
    }
    
    nav a:hover {
        background: #F8F9FA;
        color: #E74C3C;
    }
}


    header {
        padding: 15px 20px;
    }

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

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-header h2,
    .story-section h2,
    .values-section h2,
    .locations-section h2,
    .intro-section h2,
    .size-reference-section h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .editions-grid,
    .regions-grid {
        grid-template-columns: 1fr;
    }

    .process-steps,
    .quality-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .values-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

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

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

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

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .shed-specs {
        flex-direction: column;
        gap: 8px;
    }

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

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
    }

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

    .transparency-features {
        flex-direction: column;
        gap: 15px;
    }

    .edition-tabs {
        flex-direction: column;
    }

    .edition-tab {
        width: 100%;
    }

    .cities-list {
        grid-template-columns: 1fr;
    }

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

    .featured-review {
        padding: 30px 20px;
    }

    .featured-review .review-text {
        font-size: 16px;
    }

    .comparison-table-section h2 {
        font-size: 28px;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 700px;
    }

    .comparison-table thead th {
        padding: 20px 15px;
        font-size: 16px;
    }

    .comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .comparison-table .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}