/* ==========================================================================
   TurfTrimmers Landscaping Inc. - Modern Design System & Styles
   ========================================================================== */

:root {
    /* Color Palette */
    --primary: #064e3b;
    --primary-hover: #022c22;
    --emerald: #059669;
    --emerald-light: #10b981;
    --emerald-bg: #ecfdf5;
    --accent-gold: #d97706;
    --accent-gold-light: #fef3c7;
    
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    --white: #ffffff;
    --black: #000000;
    --border-color: #e2e8f0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions & Radius */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 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(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--slate-900);
    line-height: 1.25;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

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

.align-center {
    align-items: center;
}

.text-center { text-align: center; }
.text-emerald { color: var(--emerald); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(6, 78, 59, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 78, 59, 0.45);
}

.btn-emerald {
    background-color: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.btn-emerald:hover {
    background-color: var(--emerald-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-circle-play {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--emerald);
    color: var(--white);
    font-size: 1.25rem;
    border: none;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.btn-circle-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.4);
}

/* Badges & Tags */
.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--emerald-bg);
    color: var(--emerald);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-gold {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
}

/* Header & Navigation */
.top-bar {
    background-color: var(--slate-900);
    color: var(--slate-100);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-info .divider {
    opacity: 0.3;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-phone, .top-email {
    font-weight: 600;
}

.top-phone:hover, .top-email:hover {
    color: var(--emerald-light);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.social-links a:hover {
    background: var(--emerald);
    color: var(--white);
}

/* Main Navbar */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--emerald));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: var(--slate-900);
    line-height: 1;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--emerald);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--slate-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--slate-900);
    cursor: pointer;
}

/* Hero Section & Cinematic Motion Background */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    z-index: 0;
}

.hero-kenburns {
    animation: kenBurnsLoop 28s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurnsLoop {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-1%, -1.5%);
    }
    100% {
        transform: scale(1.12) translate(1%, -1%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.72) 0%, rgba(6, 78, 59, 0.55) 60%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.animate-gradient {
    background: linear-gradient(90deg, #34d399, #fbbf24, #10b981, #34d399);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pulse-badge {
    animation: float 4s ease-in-out infinite;
}

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

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.text-highlight {
    background: linear-gradient(120deg, #34d399, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Quote Banner */
.quote-banner {
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 4rem;
    box-shadow: var(--shadow-xl);
    border-left: 6px solid var(--emerald);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--emerald-light);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--slate-900);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--slate-600);
}

/* Section Header */
.section-header {
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--slate-600);
}

/* Services Section & Tabs */
.services-section {
    padding: 4rem 0 6rem;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.9rem 1.8rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-700);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    background: var(--slate-100);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(6, 78, 59, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-media {
    position: relative;
}

.rounded-image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.badge-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-info {
    padding: 1rem 0;
}

.tab-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.tab-text {
    font-size: 1.05rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--slate-700);
}

.feature-list i {
    color: var(--emerald);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--slate-900), #062b21);
    color: var(--white);
}

.calc-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
}

.calc-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0.75rem 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.calc-header p {
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.calc-body {
    align-items: center;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.slider-label strong {
    font-size: 1.5rem;
    color: var(--emerald-light);
    font-family: var(--font-heading);
}

.range-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--emerald-light);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: transform 0.1s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

.rebate-info-box {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
}

.rebate-info-box h4 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.rebate-info-box ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.calc-results {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.result-primary {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.4), rgba(6, 78, 59, 0.6));
    border: 1px solid var(--emerald-light);
}

.result-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.result-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--emerald-light);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

.result-sub {
    font-size: 0.85rem;
    opacity: 0.8;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-top: 0.25rem;
}

.results-row {
    margin-bottom: 1.5rem;
}

/* Plant Guide Section */
.plant-guide-section {
    padding: 6rem 0;
}

.plant-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.plant-search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.plant-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-600);
}

.plant-search input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 3rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.plant-search input:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.plant-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-700);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--slate-100);
}

.filter-btn.active {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}

.plant-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.plant-card-body {
    padding: 1.5rem;
}

.plant-category-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--emerald-bg);
    color: var(--emerald);
    margin-bottom: 0.75rem;
}

.plant-title {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.plant-botanical {
    font-size: 0.85rem;
    color: var(--slate-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.plant-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.plant-stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--slate-700);
}

.plant-stat i {
    color: var(--emerald);
}

.plant-desc {
    font-size: 0.95rem;
    color: var(--slate-600);
}

/* Showcase Section */
.showcase-section {
    padding: 5rem 0;
    background: var(--slate-100);
}

.showcase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-5px);
}

.showcase-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(15, 23, 42, 0.85);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.showcase-content {
    padding: 2rem;
}

.showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.showcase-content p {
    color: var(--slate-600);
}

/* About & Checklist Section */
.about-section {
    padding: 6rem 0;
}

.sub-heading {
    color: var(--emerald);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--slate-700);
}

.founder-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.founder-signature strong {
    font-size: 1.2rem;
    color: var(--slate-900);
}

.checklist-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checklist-header i {
    font-size: 2rem;
    color: var(--emerald);
}

.checklist-header h3 {
    font-size: 1.5rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.checklist-items li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.checklist-items i {
    color: var(--emerald);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.checklist-items strong {
    display: block;
    color: var(--slate-900);
    margin-bottom: 0.2rem;
}

.checklist-items span {
    font-size: 0.9rem;
    color: var(--slate-600);
}

.checklist-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
}

/* Promotions Section */
.promo-section {
    padding: 5rem 0;
    background: var(--slate-900);
    color: var(--white);
}

.promo-section .section-title {
    color: var(--white);
}

.promo-section .section-description {
    color: var(--slate-100);
    opacity: 0.9;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-light);
}

.promo-card.featured {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(6, 78, 59, 0.4));
    border: 2px solid var(--emerald-light);
}

.promo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald-light);
    color: var(--slate-900);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.promo-icon {
    font-size: 2.5rem;
    color: var(--emerald-light);
    margin-bottom: 1.25rem;
}

.promo-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Partners Section */
.partners-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.partners-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.8rem;
    border-radius: var(--radius-md);
    background: var(--slate-50);
    border: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--slate-800);
}

.partner-card i {
    font-size: 1.4rem;
}

.partner-card:hover {
    border-color: var(--emerald);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--slate-900);
    color: var(--slate-100);
    padding-top: 5rem;
}

.footer-container {
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-logo i {
    color: var(--emerald-light);
}

.footer-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--emerald-light);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--emerald-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--emerald-light);
    padding-left: 5px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.area-tags li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-copy {
    flex: 1.2;
    min-width: 280px;
    text-align: left;
}

.footer-tagline {
    flex: 1;
    min-width: 240px;
    text-align: center;
    font-style: italic;
    opacity: 0.85;
}

.footer-credit {
    flex: 1.2;
    min-width: 200px;
    text-align: right;
}

.credit-link {
    color: var(--emerald-light);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.credit-link:hover {
    color: var(--white);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    padding: 2.5rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--slate-600);
    cursor: pointer;
}

.video-modal-content {
    max-width: 800px;
    padding: 1rem;
    background: var(--black);
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-header {
    margin-bottom: 1.75rem;
}

.modal-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--slate-800);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.form-control:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--slate-900);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--emerald-light);
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Interactive Before / After Split Slider */
.ba-slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 2px solid var(--border-color);
    background: var(--slate-900);
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.ba-after {
    width: 50%;
    overflow: hidden;
    border-right: 3px solid var(--white);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.ba-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
}

.ba-range-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: ew-resize;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--white);
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
}

.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--emerald);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.8), var(--shadow-xl);
}

.ba-badge {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 4;
}

.badge-before {
    left: 1.5rem;
    background: rgba(15, 23, 42, 0.85);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.badge-after {
    right: 1.5rem;
    background: rgba(5, 150, 105, 0.9);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.mt-5 { margin-top: 3rem; }

/* Scroll Reveal Entrance Animations */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="zoom"] {
    transform: scale(0.92);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }

    .hero-title { font-size: 2.8rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    
    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-copy, .footer-tagline, .footer-credit {
        text-align: center;
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .mobile-toggle {
        display: block;
    }

    .calc-card { padding: 2rem; }
    .calc-body { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .top-info span:not(:first-child) { display: none; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .quote-card { padding: 2rem 1.5rem; }
    .quote-text { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
}
