/* ==========================================================================
   SPARTAN FLOORING - OFFICIAL MODERN STYLESHEET
   Matching SpartanLogo.png Palette:
   Dark Slate Charcoal (#141211, #1F1B19, #282320),
   Spartan Crimson Red (#B81D24, #8C1117, #D92B32),
   Metallic Bronze / Pewter Gold (#B8A588, #8C7B63, #D8C7A5),
   Clean Off-White (#F7F5F2)
   ========================================================================== */

:root {
    --primary-dark: #141211;
    --primary-slate: #1f1b19;
    --primary-card: #282320;
    --accent-red: #b81d24;
    --accent-red-hover: #8c1117;
    --accent-red-light: #d92b32;
    --accent-gold: #b8a588;
    --accent-gold-hover: #8c7b63;
    --accent-gold-light: #d8c7a5;
    --accent-gold-glow: rgba(184, 165, 136, 0.25);
    --accent-red-glow: rgba(184, 29, 36, 0.35);
    --bg-light: #f7f5f2;
    --bg-white: #ffffff;
    --text-dark: #1a1715;
    --text-muted: #6e6761;
    --text-light: #e6e0da;
    --border-light: #e4ded7;
    --border-dark: #3a332e;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 25px -5px rgba(20, 18, 17, 0.25), 0 8px 10px -6px rgba(20, 18, 17, 0.2);
    --shadow-lg: 0 20px 30px -10px rgba(20, 18, 17, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(184, 29, 36, 0.35);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-brand: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

.text-gold {
    color: var(--accent-gold);
}

.text-white {
    color: #ffffff;
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Announcement Top Bar */
.announcement-bar {
    background: linear-gradient(90deg, #0d0c0b 0%, #1a1715 100%);
    color: #ffffff;
    padding: 0.6rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(184, 29, 36, 0.4);
}

.announcement-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.announcement-badge {
    background: var(--accent-red);
    color: #ffffff;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 29, 36, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(184, 29, 36, 0); }
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.announcement-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.announcement-contact a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.announcement-contact a:hover {
    color: var(--accent-gold-light);
}

/* Header & Navigation */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 18, 17, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 165, 136, 0.25);
    transition: var(--transition);
}

.header-nav.scrolled {
    background: rgba(14, 12, 11, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
    transition: var(--transition);
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 125px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
}

.hero-logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.9));
    margin-bottom: 1.25rem;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(184, 29, 36, 0.4);
    border: 1px solid rgba(216, 199, 165, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(184, 29, 36, 0.6);
    background: linear-gradient(135deg, var(--accent-red-light) 0%, var(--accent-red) 100%);
}

.btn-outline {
    background: transparent;
    border-color: rgba(184, 165, 136, 0.4);
    color: var(--accent-gold-light);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(184, 165, 136, 0.12);
    color: #ffffff;
}

.btn-dark {
    background: var(--primary-dark);
    color: #ffffff;
}

.btn-dark:hover {
    background: var(--primary-slate);
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 18, 17, 0.90) 0%, rgba(31, 27, 25, 0.85) 100%), 
                url('PictureFloors1.png') center/cover no-repeat;
    color: #ffffff;
    padding: 5rem 0 6rem 0;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 29, 36, 0.18);
    border: 1px solid var(--accent-red);
    color: var(--accent-gold-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.25rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Glassmorphism Quick Card in Hero */
.hero-card {
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card-header {
    margin-bottom: 1.5rem;
}

.hero-card-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-card-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Quick Quote Form elements */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(184, 29, 36, 0.25);
    background: rgba(20, 18, 17, 0.8);
}

.form-control option {
    background: var(--primary-dark);
    color: #ffffff;
}

/* Trust Badges Strip */
.trust-strip {
    background: var(--primary-slate);
    border-y: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    color: #ffffff;
}

.trust-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.trust-badge-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.trust-badge-text strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
}

.trust-badge-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* General Section Structure */
.section {
    padding: 5.5rem 0;
}

.bg-dark {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: #ffffff;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.bg-dark .section-subtitle {
    color: var(--text-light);
}

/* Services / Our Expertise Grid */
.pricing-guide-cta {
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bg-dark .service-card {
    background: var(--primary-slate);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-tag-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    color: var(--accent-gold);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--accent-gold);
}

.service-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.bg-dark .service-content p {
    color: var(--text-light);
}

.service-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bg-dark .service-card-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.link-gold {
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.link-gold:hover {
    color: var(--accent-gold-hover);
    gap: 0.75rem;
}

/* Specialty Services & Finishing Touches Grid */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}

.specialty-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.specialty-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.specialty-icon {
    width: 55px;
    height: 55px;
    background: rgba(184, 29, 36, 0.12);
    color: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.specialty-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.specialty-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-bottom: 1rem;
}

.specialty-price-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--bg-white);
}

.reviews-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-badge i {
    font-size: 1.75rem;
}

.review-badge.yelp i { color: #d32323; }
.review-badge.houzz i { color: #4dbc15; }
.review-badge.google i { color: #4285f4; }

.review-score strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.2;
}

.review-score span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.feature-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.feature-body p {
    color: var(--text-muted);
    font-size: 0.925rem;
}

/* Before & After Interactive Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 480px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    user-select: none;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.before-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000px;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.slider-handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent-red);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
    color: #ffffff;
    border: 2px solid var(--accent-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    z-index: 4;
}

.slider-label {
    position: absolute;
    top: 1.25rem;
    padding: 0.4rem 1rem;
    background: rgba(20, 18, 17, 0.88);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--border-dark);
    letter-spacing: 1px;
    z-index: 3;
}

.slider-label.before { left: 1.25rem; }
.slider-label.after { right: 1.25rem; }

/* Our Process 4-Step Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-card {
    background: #ffffff;
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
    color: #ffffff;
    border: 1px solid rgba(216, 199, 165, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
}

.process-card h3 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
}

/* Testimonials Carousel & Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.stars-rating {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-details strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-dark);
}

.author-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    max-height: 300px;
}

/* SEO Content Guide Block */
.seo-guide-box {
    background: var(--primary-slate);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.seo-guide-box .section-tag {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 2px;
}

.seo-guide-box .section-title {
    color: #ffffff;
    font-weight: 800;
}

.seo-guide-box .section-title .text-gold {
    color: #ffffff;
}

.seo-guide-box h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.85rem;
    color: #ffffff;
    font-weight: 800;
    border-bottom: 2px solid var(--accent-red);
    display: inline-block;
    padding-bottom: 0.25rem;
}

.seo-guide-box p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-weight: 400;
}

.seo-guide-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.seo-guide-box li {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
    list-style: disc;
    line-height: 1.7;
}

.seo-guide-box strong {
    color: #ffffff;
    font-weight: 700;
}

/* Interactive Booking Section (Step 1 of 2) */
.booking-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-slate) 100%);
    color: #ffffff;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.booking-perks-list {
    margin-top: 2rem;
}

.booking-perk-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.booking-perk-item i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.booking-wizard-card {
    background: #ffffff;
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.wizard-step-indicator {
    font-weight: 800;
    color: var(--accent-red);
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wizard-bar-track {
    flex-grow: 1;
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    margin: 0 1rem;
    overflow: hidden;
}

.wizard-bar-fill {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    transition: width 0.4s ease;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.radio-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.tile-option {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.925rem;
}

.tile-option:hover, .tile-option.selected {
    border-color: var(--accent-red);
    background: rgba(184, 29, 36, 0.08);
    color: var(--accent-red);
}

.tile-option input {
    accent-color: var(--accent-red);
}

/* Cost Calculator Widget */
.calc-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.calc-result-display {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.calc-price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin: 0.5rem 0;
    font-family: var(--font-heading);
}

/* End-to-End Big Picture Showcase Carousel Styles */
.showcase-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    overflow: hidden;
    background: #141211;
}

.showcase-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.showcase-slide {
    min-width: 100%;
    position: relative;
    height: 75vh;
    min-height: 450px;
    max-height: 720px;
    cursor: pointer;
    overflow: hidden;
    background: #141211;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.showcase-slide:hover img {
    transform: scale(1.03);
}

.showcase-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    padding: 2.5rem 2rem 1.5rem 2rem;
    color: #ffffff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.showcase-slide-overlay span {
    background: rgba(184, 29, 36, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--accent-gold-light);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(20, 18, 17, 0.82);
    color: var(--accent-gold-light);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.carousel-btn:hover {
    background: var(--accent-red);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 2rem; }
.carousel-btn.next { right: 2rem; }

.showcase-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.showcase-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.showcase-dots .dot.active, .showcase-dots .dot:hover {
    background: var(--accent-red);
    border-color: var(--accent-gold-light);
    transform: scale(1.25);
}

@media (max-width: 768px) {
    .showcase-slide {
        height: 380px;
    }
    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .carousel-btn.prev { left: 0.75rem; }
    .carousel-btn.next { right: 0.75rem; }
}

/* Footer Section */
.footer {
    background: #090e1a;
    color: var(--text-light);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.925rem;
}

.footer-col ul a:hover {
    color: var(--accent-gold-light);
    padding-left: 4px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.free-resource-box {
    background: rgba(184, 29, 36, 0.12);
    border: 1px dashed var(--accent-red);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 1rem;
}

.free-resource-box strong {
    color: var(--accent-gold-light);
    font-size: 0.9rem;
    display: block;
}

.free-resource-box p {
    font-size: 0.825rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid, .booking-grid, .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .announcement-container {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .radio-tiles-grid {
        grid-template-columns: 1fr;
    }

    .reviews-bar {
        flex-direction: column;
        gap: 1.25rem;
    }
}
