/* Import fonts — must be first */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===========================================
   COMPLETE REDESIGN - Nashville Shed Company
   Unrecognizable new visual identity
   =========================================== */

/* Reset previous styles */
.financing-bar, .topbar-modern, .nav-modern, .top-bar, .nav-bar,
.feature, .about, .fact, .service, .faqs, .testimonial, .blog, .footer,
#pricing, #carousel { all: revert; }

/* Re-hide nav-modern after revert (revert undoes display:none) */
.nav-modern { display: none !important; }

/* Announcement bar */
.announcement-bar {
    background: var(--charcoal);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
}
.announcement-bar a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
}

:root {
    /* New Brand Colors - Earth/Wood Tones */
    --cedar: #8B4513;
    --cedar-light: #A0522D;
    --cedar-dark: #5D2E0C;
    --forest: #2D5016;
    --forest-light: #3D6B1E;
    --sage: #87A878;
    --cream: #FDF8F3;
    --warm-white: #FFFAF5;
    --charcoal: #1C1C1C;
    --slate: #3A3A3A;
    --stone: #6B6B6B;
    --mist: #E8E4DF;
    
    /* Accent */
    --gold: #D4A84B;
    --gold-light: #E8C878;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --section-pad: clamp(60px, 10vw, 120px);
}


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

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Hide old elements we're replacing */
.top-bar, .financing-bar { display: none !important; }

/* ===========================================
   NEW NAVIGATION - Minimal & Elegant
   =========================================== */

.nav-bar {
    display: none !important;
}

.new-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.new-nav.scrolled {
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.new-nav .logo img {
    height: 50px;
    transition: all 0.3s;
}

.new-nav.scrolled .logo img {
    height: 42px;
}

.new-nav .nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.new-nav .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.new-nav.scrolled .nav-menu a {
    color: var(--charcoal);
}

.new-nav .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.new-nav .nav-menu a:hover::after {
    width: 100%;
}

.new-nav .nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.new-nav .nav-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.new-nav.scrolled .nav-phone {
    color: var(--charcoal);
}

.new-nav .nav-btn {
    background: var(--gold);
    color: var(--charcoal);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.new-nav .nav-btn:hover {
    background: var(--charcoal);
    color: #fff;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.new-nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}

@media (max-width: 991px) {
    .new-nav { padding: 15px 25px; }
    .new-nav .nav-menu { display: none; }
    .new-nav .nav-phone { display: none; }
    .nav-toggle { display: flex; }
}

/* ===========================================
   NEW HERO - Split Layout with Video/Image
   =========================================== */

#carousel, .carousel { display: none !important; }

.new-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--charcoal);
}

.new-hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 80px 40px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
}

.new-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.3);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    width: fit-content;
}

.new-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
}

.new-hero h1 span {
    color: var(--gold);
}

.new-hero .hero-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.new-hero .hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.new-hero .stat {
    text-align: left;
}

.new-hero .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.new-hero .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

.new-hero .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.new-hero .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.new-hero .btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.new-hero .btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.new-hero .btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.new-hero .hero-image {
    position: relative;
    overflow: hidden;
}

.new-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-hero .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--charcoal) 0%, transparent 30%);
}

.new-hero .financing-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--charcoal);
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 14px;
}

.new-hero .financing-strip a {
    color: var(--charcoal);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .new-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .new-hero .hero-content {
        padding: 40px 25px 50px;
        order: 1;
    }
    .new-hero .hero-image {
        height: 50vh;
        min-height: 300px;
        order: 2;
    }
    .new-hero .hero-image::after {
        background: linear-gradient(180deg, var(--charcoal) 0%, transparent 20%, transparent 80%, var(--charcoal) 100%);
    }
    .new-hero h1 {
        font-size: 2rem;
    }
    .new-hero .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }
    .new-hero .stat-number {
        font-size: 1.75rem;
    }
    .new-hero .financing-strip {
        position: relative;
        order: 3;
    }
    .new-hero .hero-buttons {
        flex-direction: column;
    }
    .new-hero .btn-primary,
    .new-hero .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===========================================
   TRUST BAR - Horizontal Scroll
   =========================================== */

.trust-bar {
    background: var(--cream);
    padding: 25px 0;
    border-bottom: 1px solid var(--mist);
    overflow: hidden;
}

.trust-bar .trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--stone);
}

.trust-bar .trust-item i {
    color: var(--forest);
    font-size: 18px;
}

.trust-bar .trust-item strong {
    color: var(--charcoal);
}

/* ===========================================
   WHY ON-SITE - Horizontal Cards
   =========================================== */

.feature { display: none !important; }

.why-section {
    padding: var(--section-pad) 50px;
    background: var(--warm-white);
}

.why-section .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-section .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 15px;
}

.why-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 20px;
}

.why-section .section-desc {
    color: var(--stone);
    font-size: 1.0625rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--mist);
    position: relative;
    transition: all 0.4s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.why-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-card .card-icon i {
    font-size: 24px;
    color: var(--forest);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--stone);
    font-size: 0.9375rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .why-section { padding: 60px 25px; }
    .why-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   ABOUT SECTION - Magazine Style
   =========================================== */

.about { display: none !important; }

.about-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about-new .about-image {
    position: relative;
    overflow: hidden;
}

.about-new .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-new .about-content {
    background: var(--forest);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-new .about-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
}

.about-new h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-new p {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-new .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.about-new .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
}

.about-new .feature-item i {
    color: var(--gold);
}

.about-new .about-cta {
    margin-top: 40px;
}

.about-new .btn-light {
    background: #fff;
    color: var(--forest);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-new .btn-light:hover {
    background: var(--gold);
    color: var(--charcoal);
}

@media (max-width: 991px) {
    .about-new { grid-template-columns: 1fr; }
    .about-new .about-image { height: 50vh; }
    .about-new .about-content { padding: 50px 25px; }
    .about-new .about-features { grid-template-columns: 1fr; }
}

/* ===========================================
   SHED STYLES - Horizontal Scroll Gallery
   =========================================== */

.service { display: none !important; }

.sheds-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

.sheds-section .section-header {
    padding: 0 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sheds-section .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 15px;
}

.sheds-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--charcoal);
}

.sheds-section .view-all {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.sheds-section .view-all:hover {
    color: var(--gold);
}

.sheds-scroll {
    display: flex;
    gap: 30px;
    padding: 0 50px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.sheds-scroll::-webkit-scrollbar { height: 6px; }
.sheds-scroll::-webkit-scrollbar-track { background: var(--mist); }
.sheds-scroll::-webkit-scrollbar-thumb { background: var(--stone); }

.shed-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shed-card:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.shed-card .card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.shed-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shed-card:hover .card-image img {
    transform: scale(1.08);
}

.shed-card .card-content {
    padding: 30px;
}

.shed-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.shed-card p {
    color: var(--stone);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.shed-card .card-link {
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.shed-card .card-link:hover {
    gap: 15px;
}

@media (max-width: 991px) {
    .sheds-section .section-header { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 25px; }
    .sheds-scroll { padding: 0 25px 20px; gap: 20px; }
    .shed-card { flex: 0 0 300px; }
}

/* ===========================================
   PRICING - Dark Elegant
   =========================================== */

#pricing { display: none !important; }

.pricing-section {
    padding: var(--section-pad) 50px;
    background: var(--charcoal);
    position: relative;
}

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

.pricing-section .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.pricing-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 20px;
}

.pricing-section .section-desc {
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.pricing-tabs button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tabs button:hover,
.pricing-tabs button.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

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

.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.price-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--gold);
    transform: translateY(-8px);
}

.price-card .size {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.price-card .doors {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.price-card .price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
}

.addons-grid {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.addon-item {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.addon-item strong {
    color: var(--gold);
}

.pricing-cta {
    text-align: center;
    margin-top: 50px;
}

.pricing-cta p {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-cta .btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.pricing-cta .btn-gold:hover {
    background: #fff;
}

.pricing-cta .btn-outline {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.pricing-cta .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .pricing-section { padding: 60px 25px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   SERVICE AREAS - Map Style Grid
   =========================================== */

.areas-section {
    padding: var(--section-pad) 50px;
    background: var(--warm-white);
}

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

.areas-section .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 15px;
}

.areas-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--charcoal);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.area-card {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.area-card:hover img {
    transform: scale(1.1);
}

.area-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(28, 28, 28, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.area-card:hover .card-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(28, 28, 28, 0.95) 100%);
}

.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.area-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.area-card:hover p {
    max-height: 80px;
}

.area-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 991px) {
    .areas-section { padding: 60px 25px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .areas-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   FAQ - Clean Accordion
   =========================================== */

.faqs { display: none !important; }

.faq-section {
    padding: var(--section-pad) 50px;
    background: var(--cream);
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-section .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 15px;
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--charcoal);
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border: 1px solid var(--mist);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--forest);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--stone);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .faq-section { padding: 60px 25px; }
}

/* ===========================================
   TESTIMONIALS - Minimal Slider
   =========================================== */

.testimonial { display: none !important; }

.reviews-section {
    padding: var(--section-pad) 50px;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

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

.reviews-section .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 15px;
}

.reviews-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-item {
    padding: 40px;
}

.review-item .stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
}

.review-item blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
}

.review-item .author {
    color: rgba(255,255,255,0.7);
}

.review-item .author strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .reviews-section { padding: 60px 25px; }
}

/* ===========================================
   BLOG - Magazine Grid
   =========================================== */

.blog { display: none !important; }

.blog-section {
    padding: var(--section-pad) 50px;
    background: var(--warm-white);
}

.blog-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.blog-section .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 15px;
}

.blog-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--charcoal);
}

.blog-section .view-all {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--mist);
    transition: all 0.4s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.blog-card .card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.08);
}

.blog-card .card-content {
    padding: 30px;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--stone);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card a {
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 991px) {
    .blog-section { padding: 60px 25px; }
    .blog-section .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   CTA BANNER
   =========================================== */

.cta-banner {
    padding: 80px 50px;
    background: var(--gold);
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--charcoal);
    margin-bottom: 15px;
}

.cta-banner p {
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 30px;
}

.cta-banner .btn-dark {
    background: var(--charcoal);
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.cta-banner .btn-dark:hover {
    background: var(--forest);
}

/* ===========================================
   NEW FOOTER - Clean & Modern
   =========================================== */

.footer { display: none !important; }

.new-footer {
    background: var(--charcoal);
    padding: 80px 50px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin: 20px 0 30px;
    max-width: 300px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 30px;
}

@media (max-width: 991px) {
    .new-footer { padding: 60px 25px 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 575px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
}

/* ===========================================
   FLOATING ELEMENTS
   =========================================== */

.fab-builder, .fab-discount { display: none !important; }

.float-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.4);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 168, 75, 0.5);
}

.float-btn.secondary {
    background: var(--charcoal);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.back-to-top { display: none !important; }

@media (max-width: 767px) {
    .float-cta { bottom: 20px; right: 20px; }
    .float-btn { width: 50px; height: 50px; font-size: 18px; }
}
