@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
    --bg-body: #fafbfc;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --bg-navy: #1e3a5f;
    --bg-navy-dark: #152c4a;

    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-heading: #1a202c;
    --text-white: #ffffff;
    --text-link: #1e3a5f;

    --accent: #ff6b6b;
    --accent-end: #ffa07a;
    --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 100%);
    --accent-light: rgba(255, 107, 107, 0.08);

    --border-light: #e2e8f0;
    --border-card: rgba(0, 0, 0, 0.06);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 8px 25px rgba(255, 107, 107, 0.25);

    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 100px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ---------- HEADER ---------- */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 0;
}

.logo { display: flex; align-items: center; }
.logo-svg { height: 38px; width: auto; }

.nav-menu {
    display: flex; align-items: center; gap: 2rem;
}

.nav-link {
    font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
    padding: 0.4rem 0; position: relative;
}

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

.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: -10px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
    display: block; padding: 0.65rem 1.25rem;
    font-size: 0.9rem; color: var(--text-secondary);
}
.dropdown-menu a:hover {
    background: var(--accent-light); color: var(--accent);
}

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

.btn-accent {
    background: var(--accent-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-heading);
    border: 2px solid var(--border-light);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--bg-navy);
    color: var(--text-white);
}
.btn-navy:hover {
    background: var(--bg-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; border: none; background: transparent; padding: 5px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-heading);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- HERO SLIDER ---------- */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 60px;
    overflow: hidden;
}
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.slide-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.3) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.slide-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}
.slide-text-col {
    max-width: 650px;
}
.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.slide-title .accent {
    color: var(--accent);
}
.slide-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.slide-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-white);
    background: var(--bg-white);
    transition: var(--transition);
    animation: floatImage 5s ease-in-out infinite alternate;
}
.slide-image-wrap:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
.slide-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}
@keyframes floatImage {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}


/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}
.slider-arrow:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 12px; height: 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 10px;
}

/* ---------- COMPARISON CALCULATOR / PRICE ESTIMATOR ---------- */
.estimator-section {
    padding: 5rem 0;
    background: var(--bg-white);
}
.estimator-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
    align-items: center;
}
.estimator-card {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.estimator-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.estimator-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.btn-toggle-group {
    display: flex;
    background: var(--border-light);
    padding: 4px;
    border-radius: var(--radius-full);
}
.btn-toggle {
    flex: 1;
    padding: 0.6rem;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}
.btn-toggle.active {
    background: var(--bg-white);
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
}

/* Estimator Results */
.estimator-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.estimate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.estimate-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.estimate-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1.15rem;
}
.estimate-price {
    text-align: right;
}
.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}
.price-period {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---------- WHY LEMONADE SECTION ---------- */
.lemonade-section {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.03) 0%, rgba(255, 160, 122, 0.05) 100%);
    padding: 5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.lemonade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lemonade-tag {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}
.lemonade-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}
.lemonade-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.lemonade-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.lemonade-feature {
    display: flex;
    gap: 1rem;
}
.lemonade-icon {
    width: 45px; height: 45px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.lemonade-feature-title {
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}
.lemonade-feature-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ---------- CHART/GRAPH SECTION ---------- */
.chart-section {
    padding: 5rem 0;
    background: var(--bg-white);
}
.chart-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.7fr;
    gap: 4rem;
    align-items: center;
}
.chart-visual {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.chart-header {
    margin-bottom: 2rem;
    text-align: center;
}
.chart-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.chart-tab {
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.chart-tab.active {
    background: var(--bg-navy);
    color: white;
    border-color: var(--bg-navy);
}

/* Interactive SVG Graph Styles */
.svg-chart-container {
    width: 100%;
    position: relative;
}
.chart-bar {
    transition: height 0.8s ease-in-out, y 0.8s ease-in-out;
}
.chart-bar:hover {
    fill: var(--accent);
}
.chart-tooltip {
    position: absolute;
    background: var(--bg-navy);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonial-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    color: #f6ad55;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-navy);
}
.testimonial-name {
    font-weight: 700;
    color: var(--text-heading);
}
.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---------- SECTIONS ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-light); }
.section-navy { background: var(--bg-navy); color: var(--text-white); }

.section-header { margin-bottom: 3.5rem; }
.section-label {
    display: inline-block;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: 2.2rem; font-weight: 800; color: var(--text-heading);
    line-height: 1.25;
}
.section-navy .section-title { color: var(--text-white); }
.section-desc {
    font-size: 1.05rem; color: var(--text-secondary);
    margin-top: 1rem; max-width: 600px;
}
.section-desc.centered { margin-left: auto; margin-right: auto; }
.section-navy .section-desc { color: rgba(255, 255, 255, 0.7); }

/* ---------- CARDS ---------- */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 107, 0.15);
}
.card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--accent);
    margin-bottom: 1.5rem;
}
.card-title {
    font-size: 1.2rem; font-weight: 700; color: var(--text-heading);
    margin-bottom: 0.75rem;
}
.card-text { font-size: 0.95rem; color: var(--text-secondary); }

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

/* ---------- COMPARISON TABLE ---------- */
.compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}
.compare-table {
    width: 100%; border-collapse: collapse; min-width: 750px; text-align: left;
}
.compare-table th, .compare-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}
.compare-table th {
    background: var(--bg-light);
    font-weight: 700; color: var(--text-heading);
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .brand-name { font-weight: 700; color: var(--text-heading); }
.compare-table .our-row { background: rgba(255, 107, 107, 0.04); }
.compare-table .our-row td { border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent); }
.check-yes { color: #38a169; }
.check-no { color: #e53e3e; }

/* ---------- PARTNER LOGOS CAROUSEL ---------- */
.partners-strip {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.partners-track {
    display: flex; gap: 4rem;
    animation: marquee 35s linear infinite;
    width: max-content;
}
.partner-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 1.2rem; font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.5;
    white-space: nowrap;
    transition: var(--transition);
    cursor: default;
}
.partner-item:hover { opacity: 1; color: var(--text-heading); }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden; background: var(--bg-white);
    transition: var(--transition);
}
.faq-item.active { border-color: rgba(255, 107, 107, 0.3); }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer; font-weight: 600; color: var(--text-heading); font-size: 1rem;
}
.faq-q i { color: var(--accent); transition: var(--transition); font-size: 0.85rem; }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-a-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary); font-size: 0.95rem;
}

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info-item {
    display: flex; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.1rem; flex-shrink: 0;
}
.contact-label { font-weight: 700; color: var(--text-heading); font-size: 0.95rem; }
.contact-detail { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.15rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text-secondary); margin-bottom: 0.4rem;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.form-control {
    width: 100%; padding: 0.8rem 1rem;
    border: 1px solid var(--border-light); border-radius: var(--radius-md);
    font-family: var(--font); font-size: 0.95rem;
    color: var(--text-primary); background: var(--bg-white);
    transition: var(--transition);
}
.form-control:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* Map */
.map-frame {
    margin-top: 3rem; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border-light);
    height: 300px;
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    padding: 10rem 0 3.5rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-body) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}
.page-hero .section-title { margin-bottom: 0.75rem; }

/* ---------- ABOUT ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.stat-box { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* About image */
.about-img {
    width: 100%; border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); box-shadow: var(--shadow-md);
}

/* ---------- POLICY / LEGAL PAGES ---------- */
.legal-content {
    max-width: 800px; margin: 0 auto; padding: 3rem 0 5rem;
}
.legal-content h2 {
    font-size: 1.5rem; font-weight: 700; color: var(--text-heading);
    margin-top: 2.5rem; margin-bottom: 1rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent-light);
}
.legal-content h3 {
    font-size: 1.15rem; font-weight: 600; color: var(--text-heading);
    margin-top: 1.5rem; margin-bottom: 0.75rem;
}
.legal-content p {
    margin-bottom: 1rem; color: var(--text-primary); font-size: 0.98rem;
}
.legal-content ul, .legal-content ol {
    margin-bottom: 1rem; padding-left: 1.5rem;
}
.legal-content li {
    list-style: disc; margin-bottom: 0.5rem;
    color: var(--text-primary); font-size: 0.95rem;
}
.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ---------- SERVICE DETAIL ---------- */
.service-features-list {
    display: flex; flex-direction: column; gap: 0.75rem;
    margin: 1.5rem 0;
}
.service-features-list li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.95rem; color: var(--text-secondary);
}
.service-features-list li i { color: var(--accent); margin-top: 0.3rem; }

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-navy); color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem; margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-about .logo-svg text { fill: #fff; }
.footer-about .logo-svg tspan { fill: url(#logoGradF); }
.footer-desc { font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer .social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer .social-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.6); transition: var(--transition);
}
.footer .social-icon:hover {
    background: var(--accent); color: #fff;
    transform: translateY(-2px);
}
.footer-title {
    font-size: 1rem; font-weight: 700; color: var(--text-white);
    margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-links li {
    font-size: 0.9rem; color: rgba(255, 255, 255, 0.55);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.4); }
.footer-bottom-links a:hover { color: #fff; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--text-white);
    margin: 4rem 0;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { background: #fff; color: var(--text-heading); box-shadow: var(--shadow-md); }
.cta-banner .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .slide-title { font-size: 2.8rem; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .estimator-grid, .lemonade-grid, .chart-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .hero-slider-container { height: 500px; }
    .slide-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .slide-image-wrap {
        display: none;
    }
    .slide-title { font-size: 2.2rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: var(--bg-white);
        flex-direction: column; justify-content: center; gap: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 999;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu .nav-link { font-size: 1.3rem; }
    .dropdown-menu {
        position: static; box-shadow: none; border: none;
        opacity: 1; visibility: visible; transform: none;
        padding: 0; min-width: auto;
        display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem;
    }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
    .cta-banner { padding: 3rem 1.5rem; }
    .section { padding: 3.5rem 0; }
    .page-hero { padding: 8rem 0 2.5rem; }
}
