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

:root {
    --primary-color: #14301f;
    --secondary-color: #3f7a4a;
    --accent-color: #7bbf74;
    --text-dark: #e8e8e8;
    --text-light: #b0b0b0;
    --bg-light: #0a0a0a;
    --bg-white: #121212;
    --border-color: #2a2a2a;
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 16px 40px rgba(0, 0, 0, 0.7);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
    --hero-accent: #6fdb77;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo h2 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

/* ===== Top Info Bar ===== */
.top-bar {
    background: linear-gradient(to right, var(--primary-color), #1a3d2a);
    color: #ffffff;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(63, 122, 74, 0.3);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.top-bar-item i {
    font-size: 1rem;
    color: var(--hero-accent);
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        position: fixed;
        padding: 0.4rem 0;
    }
    
    .top-bar-content {
        gap: 1rem;
        justify-content: center;
    }
    
    .top-bar-item span {
        font-size: 0.8rem;
    }
}

/* ===== Header & Navigation ===== */
.header {
    background: #000000;
    border-bottom: 1px solid rgba(63, 122, 74, 0.2);
    position: sticky;
    top: 40px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.deal-strip {
    background: linear-gradient(90deg, #153624 0%, #204a32 50%, #153624 100%);
    border-top: 1px solid rgba(111, 219, 119, 0.2);
    border-bottom: 1px solid rgba(111, 219, 119, 0.22);
}

.deal-strip-content {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
}

.deal-strip-content p {
    margin: 0;
    color: #e4f2e6;
    font-size: 0.92rem;
    line-height: 1.4;
}

.deal-strip-content p i {
    color: var(--hero-accent);
    margin-right: 0.45rem;
}

.deal-strip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0.42rem 0.85rem;
    border-radius: 7px;
    border: 1px solid rgba(111, 219, 119, 0.35);
    color: #eaf8ec;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(12, 28, 19, 0.45);
}

.deal-strip-link:hover {
    color: #ffffff;
    border-color: rgba(111, 219, 119, 0.6);
    background: rgba(18, 40, 27, 0.72);
}

.navbar {
    padding: 1.25rem 0;
}

@media (max-width: 768px) {
    .deal-strip-content {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.6rem 0;
        gap: 0.55rem;
    }

    .deal-strip-content p {
        font-size: 0.82rem;
    }

    .deal-strip-link {
        font-size: 0.75rem;
        padding: 0.38rem 0.72rem;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

.logo a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.before-after-image.image19-focus {
    object-position: center center;
    object-fit: cover;
}

.before-after-image.image20-fill,
.before-after-image.image21-fill {
    object-fit: cover;
    object-position: center center;
    width: 110%;
    height: 110%;
    min-width: 110%;
    min-height: 110%;
    transform: scale(1.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.75rem 0.25rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hero-accent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--hero-accent);
}

.nav-cta {
    margin-left: auto;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #4a8a54);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 8px 20px rgba(63, 122, 74, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #4a8a54, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(63, 122, 74, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-desktop {
    padding: 7rem 0 6rem;
    background: linear-gradient(120deg, rgba(10, 20, 14, 0.72), rgba(10, 20, 14, 0.35)),
    url("../src/Home%20page%20image.jpeg") left center/cover no-repeat;
}

.hero-desktop::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    filter: blur(2px);
}

.hero-desktop::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    left: -220px;
    bottom: -240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 191, 116, 0.35), transparent 70%);
}

.hero-mobile {
    display: none;
}

.hero-mobile-image {
    display: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}
.hero-copy {
    max-width: 600px;
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
    border: none;
    padding: 0;
    text-align: right;
}

.hero-title {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    animation: fadeInUp 0.7s ease forwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.88;
    animation: fadeInUp 0.9s ease forwards;
}

.hero-buttons {
    display: flex;
    gap: 2.5rem; /* increased spacing between buttons */
    flex-wrap: wrap;
    animation: fadeInUp 1.1s ease forwards;
    align-items: center;
}

/* Ensure desktop hero copy buttons have proper spacing */
.hero-copy .hero-buttons {
    gap: 2.5rem;
}

.hero-highlights {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(10, 20, 14, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight i {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    line-height: 1;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 1.1s ease;
    max-width: 360px;
    margin-left: 0;
    grid-column: 2;
    justify-self: end;
}

@keyframes heroZoom {
    from {
        background-size: 105%;
    }
    to {
        background-size: 100%;
    }
}


.hero-card-inner {
    background: rgba(16, 21, 17, 0.7);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
}

.hero-card-title {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-stats {
    display: grid;
    gap: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #f6f2ec;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero-card-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(4px);
    }
    60% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 12px 25px rgba(63, 122, 74, 0.35);
}

.btn-primary:hover {
    background: #34663e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--hero-accent);
}

.btn-light {
    background: var(--bg-white);
    color: var(--hero-accent);
}

.btn-light:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.hero-copy-mobile {
    display: none;
}

/* ===== Sections ===== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--hero-accent);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.4rem;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    display: grid;
    gap: 1.2rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 0.5rem;
    background: rgba(63, 122, 74, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.before-after {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
    cursor: ew-resize;
    touch-action: none;
    --before-after-position: 50%;
}

.before-after::before,
.before-after::after {
    position: absolute;
    top: 12px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #f3f7f3;
    background: rgba(20, 30, 24, 0.6);
    z-index: 3;
    pointer-events: none;
}

.before-after::before {
    content: 'Before';
    left: 12px;
}

.before-after::after {
    content: 'After';
    right: 12px;
}

.before-after-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
}

.before-after-image.zoom-out {
    object-fit: cover;
}

.before-after-after {
    position: absolute;
    inset: 0;
    width: calc(100% - var(--before-after-position));
    overflow: hidden;
    left: auto;
    right: 0;
}

.before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--before-after-position);
    width: 3px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.3));
    transform: translateX(-1.5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.before-after-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(63, 122, 74, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.before-after:hover .before-after-handle::after {
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(63, 122, 74, 0.4),
        0 0 0 8px rgba(63, 122, 74, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.08);
    transform: translate(-50%, -50%) scale(1.1);
}

.before-after-handle::before {
    content: '‹   ›';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 4px;
    z-index: 1;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.before-after:hover .before-after-handle::before {
    color: var(--hero-accent);
    letter-spacing: 5px;
}

.before-after.is-dragging .before-after-after,
.before-after.is-dragging .before-after-handle {
    animation: none;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--hero-accent);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-link {
    color: var(--hero-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
    color: #8fff97;
}

/* Service cards with images */
.service-card:has(.service-image) {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:has(.service-image) h3 {
    padding: 1.5rem 2.4rem 0 2.4rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card:has(.service-image) p {
    padding: 0 2.4rem;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card:has(.service-image) .service-link {
    padding: 0 2.4rem;
    margin-bottom: 3rem;
    display: inline-flex;
    background: rgba(111, 219, 119, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    margin-left: 2.4rem;
    margin-right: 2.4rem;
    transition: all 0.3s ease;
}

.service-card:has(.service-image) .service-link:hover {
    background: var(--hero-accent);
    color: #000000;
    gap: 0.75rem;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Specific image adjustments */
.aeration-image {
    object-position: center 70%;
}

/* ===== About Section ===== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--hero-accent);
    line-height: 1.1;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.about-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, rgba(63, 122, 74, 0.15), rgba(123, 191, 116, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.image-placeholder.has-image {
    padding: 0;
    background: none;
}

.image-placeholder.has-image::after {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--radius-lg) - 10px);
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ===== Why Choose Us Section ===== */
.why-choose {
    background: #0b1c12;
    color: #f3f7f3;
}

.why-choose .section-header h2,
.why-choose .section-header p,
.why-choose .section-header .eyebrow {
    color: #f3f7f3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: left;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 1.5rem;
    background: rgba(63, 122, 74, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
}


.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--hero-accent);
}

.feature-item p {
    color: var(--text-light);
}

.why-choose .feature-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.why-choose .feature-icon {
    background: rgba(123, 191, 116, 0.18);
    color: #f3f7f3;
}

.why-choose .feature-item h3 {
    color: #f6f2ec;
}

.why-choose .feature-item p {
    color: rgba(255, 255, 255, 0.75);
}

/* ===== Testimonials Section ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.testimonial-card .before-after {
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-rating {
    color: #91d186;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--hero-accent);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, #14301f 0%, #295035 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
    background: #0b1c12;
    color: white;
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Page-specific Styles ===== */
.page-header {
    background: linear-gradient(135deg, #1f2b23 0%, #2f4035 100%);
    color: white;
    padding: 3.5rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    cursor: pointer;
}

.gallery-item .image-placeholder {
    height: 100%;
    transition: var(--transition);
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.1);
}

.gallery-filter {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    color: var(--hero-accent);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.6rem;
    margin: 0.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border: 1px solid var(--secondary-color);
}

.filter-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.gallery-info {
    padding: 1rem;
    text-align: center;
}

/* ===== Contact Form ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info-section h3 {
    color: var(--hero-accent);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-detail-text h4 {
    color: var(--hero-accent);
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    color: var(--text-light);
}

/* ===== Services Detail ===== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail-card {
    background: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.service-detail-card h3 {
    color: var(--hero-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-card ul li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
}

.bg-light-section {
    background: var(--bg-light);
}

.section-title-centered {
    text-align: center;
    color: var(--hero-accent);
    margin-bottom: 3rem;
}

.process-step-icon {
    background: var(--secondary-color) !important;
}

.gallery-item-title {
    color: var(--hero-accent);
}

.gallery-item-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

.team-member-image {
    height: 200px;
    margin-bottom: 1rem;
}

.form-heading {
    color: var(--hero-accent);
    margin-bottom: 1.5rem;
}

.btn-full-width {
    width: 100%;
}

.form-success {
    background: #27ae60;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

.form-error {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

/* Service Area Grid */
.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .service-area-grid {
        grid-template-columns: 1fr;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(63, 122, 74, 0.3);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
}

.back-to-top.show {
    display: flex;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    :root {
        --mobile-hero-width: min(560px, calc(100% - 2rem));
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
        padding: 117px 0 4.8rem;
        background: var(--bg-light);
        color: var(--text-dark);
    }

    .page-header {
        padding-top: 7.5rem;
    }

    .hero-mobile .hero-title,
    .hero-mobile .hero-subtitle {
        color: var(--text-dark);
        text-shadow: none;
    }

    .hero-mobile .hero-mobile-title {
        color: #ffffff;
        text-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
    }

    .hero-mobile-stack {
        /* make stack full viewport width so child content can span edges */
        width: 100vw;
        margin-left: calc((100% - 100vw) / 2);
        margin-right: calc((100% - 100vw) / 2);
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .hero-mobile-image {
        display: block;
        /* make the image span the full viewport width */
        width: 100vw;
        height: 380px;
        margin-left: calc((100% - 100vw) / 2);
        margin-right: calc((100% - 100vw) / 2);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4)), url("../src/Home%20page%20image.jpeg");
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 0;
        box-shadow: none;
        border: none;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        overflow: hidden;
    }

    /* fade bottom into the site background for a smooth transition */
    .hero-mobile-image::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 28%;
        background: linear-gradient(to bottom, rgba(0,0,0,0), var(--bg-light));
        z-index: 2;
        pointer-events: none;
    }

    /* title overlay on top of the fade */
    .hero-mobile-image .hero-mobile-title {
        position: absolute;
        bottom: 18px;
        left: 0;
        right: 0;
        z-index: 3;
        color: #ffffff;
        text-shadow: 0 6px 18px rgba(0,0,0,0.6);
        font-family: 'Manrope', 'Segoe UI', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        line-height: 1.05;
        text-align: center;
        margin: 0 auto;
        max-width: 92%;
        word-break: keep-all;
    }

    .hero-mobile-title {
        position: static;
        color: var(--text-dark);
        text-shadow: none;
        font-family: 'Manrope', 'Segoe UI', sans-serif;
        font-size: 1.9rem;
        font-weight: 800;
        line-height: 1.08;
        text-align: center;
        margin: 0 0 0.5rem 0;
        max-width: 100%;
        letter-spacing: -0.01em;
    }

    .hero-mobile-card {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0.75rem 0.75rem 1rem;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        width: 100%;
    }

    .hero-mobile .eyebrow {
        color: var(--accent-color);
        margin-bottom: 0;
    }

    .hero-mobile .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 400px;
        margin: 0 auto;
        color: var(--text-light);
    }

    .hero-mobile .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 0.25rem;
    }
    
    .hero-mobile .hero-buttons .btn {
        width: 100%;
    }

    .hero-mobile .hero-highlights {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-top: 0.5rem;
        align-items: stretch;
    }
    
    .hero-mobile .highlight {
        background: rgba(111, 219, 119, 0.08);
        border-color: rgba(111, 219, 119, 0.25);
        color: var(--text-dark);
        justify-content: center;
    }
    
    .hero-mobile .highlight i {
        background: rgba(111, 219, 119, 0.15);
        color: var(--secondary-color);
    }

    .header {
        position: fixed;
        top: 35px;
        left: 0;
        right: 0;
        height: 82px;
        z-index: 1200;
        border-bottom: none;
    }

    .navbar {
        padding: 0;
    }

    .nav-wrapper {
        min-height: 82px;
        padding: 0 20px;
    }

    .logo-img {
        height: 60px;
    }

    .hamburger {
        gap: 6px;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 117px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.8);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        color: var(--text-dark);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--hero-accent);
    }

    .nav-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        position: relative;
        display: grid;
        gap: 1.75rem;
        justify-items: center;
        align-items: center;
        width: 100%;
    }

    .hero .container.hero-grid {
        width: var(--mobile-hero-width);
        margin: 0 auto;
        padding: 0;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
        padding: 1.6rem 1.4rem 1.8rem;
        color: var(--text-dark);
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: 18px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
    }

    .hero-copy .eyebrow {
        display: none;
    }

    .hero-copy .eyebrow {
        margin-bottom: 0;
    }

    .hero-copy .hero-title {
        margin-bottom: 0;
    }

    .hero-copy .hero-subtitle {
        margin-bottom: 0.25rem;
    }

    .hero-copy .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        margin-top: 0.75rem;
    }

    .hero-copy .hero-highlights {
        display: none;
    }

    .hero-copy .eyebrow,
    .hero-copy .hero-title,
    .hero-copy .hero-subtitle {
        color: var(--text-dark);
        text-shadow: none;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-highlights {
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .hero-copy .highlight {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-copy .highlight i {
        background: rgba(255, 255, 255, 0.18);
    }

    .hero-copy .btn-secondary {
        border-color: rgba(255, 255, 255, 0.7);
        color: #ffffff;
    }

    .hero-copy::before {
        display: none;
    }

    .hero {
        padding: 82px 0 4.8rem;
        min-height: auto;
        position: relative;
        background: var(--bg-light);
    }

    .hero::before {
        display: none;
    }

    .hero::after {
        display: none;
    }

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

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.6rem;
        position: static;
        top: auto;
        right: auto;
        max-width: 100%;
        text-align: center;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: 0.01em;
        text-shadow: none;
        background: none;
        border: none;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 1.02rem;
        max-width: 360px;
        margin: 0 auto;
        color: var(--text-light);
    }

    .hero-mobile .btn-secondary {
        background: transparent;
        color: var(--hero-accent);
        border: 1px solid var(--hero-accent);
    }
    
    .hero-mobile .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-placeholder {
        height: 280px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid,
    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 220px;
        object-position: center;
    }

    .service-card:has(.service-image) h3 {
        padding: 1.25rem 2rem 0 2rem;
        font-size: 1.5rem;
    }

    .service-card:has(.service-image) p {
        padding: 0 2rem;
        font-size: 0.98rem;
    }

    .service-card:has(.service-image) .service-link {
        margin-left: 2rem;
        margin-right: 2rem;
        margin-bottom: 2.5rem;
    }

    .aeration-image {
        object-position: center 60%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card .before-after {
        margin: -2rem -2rem 1.25rem -2rem;
        height: 440px;
    }

    .image19-focus {
        object-position: center 18%;
    }
}

@media (max-width: 480px) {
    .hero-mobile-title {
        position: static;
        color: var(--text-dark);
        text-shadow: none;
        font-family: 'Manrope', 'Segoe UI', sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.05;
        text-align: left;
        margin: 0 0 0.25rem 0;
        width: 100%;
        letter-spacing: -0.01em;
        word-break: keep-all;
    }

    .hero-mobile .hero-subtitle {
        text-align: left;
        max-width: 100%;
        margin: 0;
    }
    
    .hero-mobile-card {
        padding: 1.75rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-copy .hero-buttons .btn {
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }
    
    .image-placeholder {
        height: 220px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card .before-after {
        margin: -1.5rem -1.5rem 1rem -1.5rem;
        height: 420px;
    }

    .image19-focus {
        object-position: center 15%;
    }

    .service-image {
        height: 200px;
        object-position: center;
    }

    .service-card:has(.service-image) h3 {
        padding: 1rem 1.5rem 0 1.5rem;
        font-size: 1.4rem;
    }

    .service-card:has(.service-image) p {
        padding: 0 1.5rem;
        font-size: 0.95rem;
    }

    .service-card:has(.service-image) .service-link {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        margin-bottom: 2rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .aeration-image {
        object-position: center 50%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Spring Special Popup ===== */
body.promo-popup-open {
    overflow: hidden;
}

.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(111, 219, 119, 0.18), transparent 42%),
        radial-gradient(circle at 85% 78%, rgba(63, 122, 74, 0.2), transparent 44%),
        rgba(5, 10, 7, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.promo-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    position: relative;
    width: min(760px, 96vw);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        linear-gradient(140deg, #0f2016 0%, #183626 58%, #1d422d 100%);
    border: 1px solid rgba(111, 219, 119, 0.28);
    border-radius: 22px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.54);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.promo-popup::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    right: -90px;
    top: -110px;
    background: radial-gradient(circle, rgba(111, 219, 119, 0.22), transparent 72%);
    pointer-events: none;
}

.promo-popup::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(111, 219, 119, 0.4) 0%, rgba(111, 219, 119, 0.85) 50%, rgba(111, 219, 119, 0.4) 100%);
}

.promo-popup-overlay.show .promo-popup {
    transform: translateY(0) scale(1);
}

.promo-popup-media {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    background: rgba(9, 20, 13, 0.75);
}

.promo-popup-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.32, 0.72, 0.18, 1);
    will-change: transform;
}

.promo-popup-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.promo-popup-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.04) brightness(0.98);
}

.promo-popup-content {
    position: relative;
    z-index: 1;
    padding: 2rem 2.2rem;
    color: #ffffff;
}

.promo-popup-badge {
    display: inline-block;
    padding: 0.38rem 0.8rem;
    border-radius: 8px;
    background: rgba(111, 219, 119, 0.14);
    color: #d2f5d5;
    border: 1px solid rgba(111, 219, 119, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    box-shadow: none;
}

.promo-popup-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #bce9c1;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.promo-popup-content h3 {
    font-size: 2.12rem;
    line-height: 1.08;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.promo-popup-content p {
    color: #e4efe6;
    margin-bottom: 0.85rem;
    font-size: 1.02rem;
}

.promo-popup-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 0.95rem 0;
    padding: 0;
}

.promo-popup-list li {
    background: rgba(14, 41, 24, 0.85);
    border: 1px solid rgba(111, 219, 119, 0.32);
    color: #d8f0dc;
    border-radius: 999px;
    padding: 0.35rem 0.74rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
}

.promo-popup-note {
    color: #c7eecf;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

.promo-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #3f7a4a, #4a8a54);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    border: 1px solid rgba(111, 219, 119, 0.3);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.promo-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
    filter: brightness(1.06);
}

.promo-popup-close {
    position: absolute;
    right: 0.7rem;
    top: 0.7rem;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(111, 219, 119, 0.55);
    background: rgba(10, 25, 15, 0.9);
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.promo-popup-close:hover {
    transform: scale(1.06);
    background: rgba(22, 48, 31, 0.96);
}

@media (max-width: 700px) {
    .promo-popup-overlay {
        padding: 0.75rem;
        align-items: center;
    }

    .promo-popup {
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 14px;
    }

    .promo-popup-media {
        aspect-ratio: 16 / 7;
    }

    .promo-popup-media img {
        height: 100%;
    }

    .promo-popup::before {
        display: none;
    }

    .promo-popup-content {
        padding: 1rem 1.1rem 1.2rem;
    }

    .promo-popup-badge {
        font-size: 0.65rem;
        padding: 0.28rem 0.6rem;
        margin-bottom: 0.5rem;
    }

    .promo-popup-kicker {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .promo-popup-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.45rem;
    }

    .promo-popup-content p {
        font-size: 0.88rem;
        margin-bottom: 0.55rem;
    }

    .promo-popup-list {
        gap: 0.35rem;
        margin-bottom: 0.6rem;
    }

    .promo-popup-list li {
        font-size: 0.75rem;
        padding: 0.25rem 0.55rem;
    }

    .promo-popup-note {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }

    .promo-popup-cta {
        width: 100%;
        min-height: 40px;
        font-size: 0.85rem;
        padding: 0.55rem 1rem;
    }

    .promo-popup-close {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
}
