/* 
   Cheetah Junk Removal - Main Stylesheet
   Design Language: Premium Dark Mode, Cheetah Gold Accents, Clean Typography, Dynamic Transitions.
*/

:root {
    --color-primary: #fcc01a;
    --color-primary-hover: #e0a910;
    --color-primary-rgb: 252, 192, 26;
    --color-bg-main: #0c0c0c;
    --color-bg-card: #151515;
    --color-bg-card-hover: #1c1c1c;
    --color-text-main: #ffffff;
    --color-text-muted: #a3a3a3;
    --color-border: #222222;
    --color-success: #10b981;
    --color-error: #ef4444;
    --font-main: 'Outfit', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(252, 192, 26, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* offset for sticky header */
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.icon-inline {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.15em;
    margin-right: 6px;
    display: inline-block;
}

/* --- Utility Classes --- */
.font-yellow { color: var(--color-primary) !important; }
.font-white { color: var(--color-text-main) !important; }
.w-full { width: 100%; }
.dot-green {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 8px var(--color-success);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000000;
    padding: 12px 24px;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: #222222;
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid #333333;
}

.btn-secondary:hover {
    background-color: #2a2a2a;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 11px 23px;
    border: 1px solid var(--color-border);
}

.btn-secondary-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(252, 192, 26, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background-color: #111;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.announcement-text {
    color: var(--color-text-muted);
}

.announcement-phone {
    color: var(--color-primary);
    font-weight: 700;
}

.announcement-phone:hover {
    color: #ffffff;
}

/* --- Header / Navigation --- */
.main-header {
    background-color: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: var(--transition-normal);
}

.logo-area:hover .logo-svg {
    transform: scale(1.05) rotate(-2deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
}

.brand-sub {
    font-weight: 700;
    font-size: 11px;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

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

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

.nav-cta-mobile {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 80px 0 120px 0;
    background: radial-gradient(circle at 80% 20%, rgba(252, 192, 26, 0.08) 0%, rgba(12, 12, 12, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(252, 192, 26, 0.04) 0%, rgba(12, 12, 12, 0) 50%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-accent {
    background-color: rgba(252, 192, 26, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(252, 192, 26, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ffffff 30%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-right: 12px;
}

.hero-title .highlight:nth-child(3) {
    background: linear-gradient(135deg, var(--color-primary) 30%, #e0a910 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-sub {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-main);
    display: inline-block;
    margin-top: 12px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.image-border-glow {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    position: relative;
    background-color: var(--color-bg-card);
    transition: var(--transition-slow);
}

.image-border-glow:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-border-glow:hover .hero-img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background-color: #1a1a1a;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.badge-icon {
    background-color: rgba(252, 192, 26, 0.1);
    color: var(--color-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 15px;
    font-weight: 700;
}

.badge-text span {
    font-size: 12px;
    color: var(--color-text-muted);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 48px;
}

.wave-divider .shape-fill {
    fill: var(--color-bg-main);
}

/* --- Trust Bar --- */
.trust-bar {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: #0f0f0f;
    padding: 40px 0;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon-box {
    background-color: #1a1a1a;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.trust-item:hover .trust-icon-box {
    border-color: var(--color-primary);
    background-color: rgba(252, 192, 26, 0.05);
    color: #ffffff;
}

.trust-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px auto;
}

.section-accent {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 16px;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-main);
}

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

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: var(--color-bg-card-hover);
    border-color: #333333;
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    background-color: var(--color-primary);
}

.service-icon-wrapper {
    background-color: #1c1c1c;
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
    border: 1px solid var(--color-border);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-primary);
    color: #000000;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.service-bullets {
    margin-bottom: 32px;
    width: 100%;
}

.service-bullets li {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.bullet-check {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.service-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

.special-card {
    border-color: rgba(252, 192, 26, 0.25);
    background: radial-gradient(circle at 100% 0, rgba(252, 192, 26, 0.05) 0%, rgba(12, 12, 12, 0) 50%), var(--color-bg-card);
}

.special-card::before {
    background-color: var(--color-primary);
}

/* --- How It Works Section --- */
.how-section {
    padding: 100px 0;
    background-color: #080808;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px 32px;
    position: relative;
    transition: var(--transition-normal);
}

.step-card:hover {
    border-color: #333333;
    background-color: var(--color-bg-card-hover);
}

.step-num {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(252, 192, 26, 0.07);
    line-height: 1;
    transition: var(--transition-normal);
}

.step-card:hover .step-num {
    color: rgba(252, 192, 26, 0.15);
    transform: scale(1.1);
}

.step-icon-box {
    background-color: rgba(252, 192, 26, 0.1);
    color: var(--color-primary);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(252, 192, 26, 0.2);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.link-yellow {
    color: var(--color-primary);
    font-weight: 600;
}

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

/* --- Before & After Section --- */
.before-after-section {
    padding: 100px 0;
    background-color: var(--color-bg-main);
}

.before-after-container {
    max-width: 900px;
    margin: 0 auto;
}

.before-after-panes {
    position: relative;
    display: flex;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.pane {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.pane-img {
    position: absolute;
    width: 200%; /* double size to crop properly */
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-crop {
    left: 0;
    object-position: left center;
}

.after-crop {
    right: 0;
    object-position: right center;
}

.pane-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--color-primary);
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(252, 192, 26, 0.5);
}

.divider-line {
    height: 100%;
    width: 2px;
    background-color: var(--color-primary);
}

.divider-badge {
    position: absolute;
    background-color: var(--color-primary);
    color: #000000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid #000;
}

.divider-badge svg {
    width: 18px;
    height: 18px;
}

.pane-label {
    position: absolute;
    bottom: 24px;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.label-before {
    left: 24px;
    background-color: rgba(239, 68, 68, 0.85);
    color: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.5);
}

.label-after {
    right: 24px;
    background-color: rgba(16, 185, 129, 0.85);
    color: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.comparison-footer {
    margin-top: 24px;
    text-align: center;
}

.comparison-note {
    font-size: 14px;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    background-color: var(--color-bg-card);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
}

/* --- Estimator Section --- */
.estimator-section {
    padding: 100px 0;
    background-color: #080808;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: start;
}

.estimator-inputs h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.estimator-help-text {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.load-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.load-option {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.load-option:hover {
    border-color: #444444;
    background-color: var(--color-bg-card-hover);
}

.load-option.active {
    border-color: var(--color-primary);
    background-color: rgba(252, 192, 26, 0.04);
}

.load-option-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 16px;
}

.load-title {
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition-fast);
}

.load-option.active .load-title {
    color: var(--color-primary);
}

.load-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.load-select-indicator {
    color: var(--color-border);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.load-select-indicator svg {
    width: 20px;
    height: 20px;
}

.load-option.active .load-select-indicator {
    color: var(--color-primary);
}

.estimator-display {
    position: sticky;
    top: 130px;
}

.display-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.display-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.price-range {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-val {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.price-separator {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.price-disclaimer {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Truck SVG styles */
.truck-container {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 32px auto;
    background-color: #0b0b0b;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--color-border);
}

.truck-svg {
    width: 100%;
    height: auto;
}

#truck-label {
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.display-actions {
    margin-top: 16px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-main);
}

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

.review-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.review-card:hover {
    border-color: #333333;
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.review-stars {
    display: flex;
    gap: 4px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.star-fill {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #e5e5e5;
    margin-bottom: 28px;
    font-style: italic;
    flex-grow: 1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    background-color: rgba(252, 192, 26, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 15px;
    font-weight: 700;
}

.user-role {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* --- Contact & Booking Section --- */
.contact-section {
    padding: 100px 0;
    background-color: #080808;
    border-top: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.contact-details h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-details p {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    background-color: rgba(252, 192, 26, 0.1);
    color: var(--color-primary);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(252, 192, 26, 0.15);
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text span {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-link {
    font-size: 20px;
    font-weight: 700;
}

.method-link:hover {
    color: var(--color-primary);
}

.contact-guarantee-box {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    gap: 18px;
}

.contact-guarantee-box svg {
    color: var(--color-primary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-guarantee-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-guarantee-box p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Quote Lead Form styling */
.contact-form-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.contact-form {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-subtext {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--color-error);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: #0b0b0b;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555555;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(252, 192, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Success Overlay State */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.form-success-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    text-align: center;
    max-width: 320px;
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-icon {
    color: var(--color-success);
    margin-bottom: 20px;
}

.success-icon svg {
    width: 64px;
    height: 64px;
}

.success-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-content p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* --- Footer --- */
.footer {
    background-color: #080808;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 0 0;
}

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

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.5;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.footer-links h4,
.footer-about h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #e5e5e5;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-muted);
    border-bottom: 1px solid #111;
    padding-bottom: 6px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    background-color: #050505;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.design-credit {
    font-weight: 600;
}

/* --- Floating Dial Button for Mobile --- */
.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-primary);
    color: #000000;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(252, 192, 26, 0.4);
    align-items: center;
    gap: 8px;
    z-index: 999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #000;
    animation: floating-bounce 2s infinite ease-in-out;
}

@keyframes floating-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* --- Responsive Adaptations --- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .estimator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .estimator-display {
        position: static;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 75px;
    }
    
    .announcement-bar {
        display: none;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0c0c0c;
        border-bottom: 1px solid var(--color-border);
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-cta-mobile {
        display: inline-flex;
        width: 100%;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto 32px auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .hero-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .floating-badge {
        left: 12px;
        bottom: -16px;
    }
    
    .before-after-panes {
        height: 320px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-call-btn {
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .trust-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .title-sub {
        font-size: 20px;
    }
    
    .before-after-panes {
        height: 240px;
    }
    
    .divider-badge {
        width: 36px;
        height: 36px;
    }
    
    .divider-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .pane-label {
        font-size: 11px;
        padding: 4px 8px;
        bottom: 12px;
    }
    
    .label-before { left: 12px; }
    .label-after { right: 12px; }
}

/* Spinner Animation */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

