:root {
    --primary: #115c36;
    --primary-dark: #07351f;
    --primary-soft: #e9f5ee;
    --secondary: #d4a85b;
    --secondary-dark: #b48335;
    --ink: #15261d;
    --muted: #6c7a72;
    --white: #ffffff;
    --light: #f7fbf8;
    --dark: #06150d;
    --border: rgba(17, 92, 54, .13);
    --shadow: 0 24px 70px rgba(3, 29, 16, .13);
    --shadow-strong: 0 30px 90px rgba(3, 29, 16, .28);
    --radius: 24px;
    --radius-sm: 14px;
    --transition: all .35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 54px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.why-content h2,
.before-after-copy h2,
.faq-copy h2,
.contact-info h2,
.testimonial-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.08;
    color: var(--primary-dark);
    letter-spacing: -.03em;
    margin: 12px 0 18px;
}

.section-heading p,
.about-content p,
.why-content p,
.before-after-copy p,
.faq-copy p,
.contact-info p,
.testimonial-copy p {
    color: var(--muted);
    font-size: 1.04rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    background: rgba(17, 92, 54, .09);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.section-label.light {
    color: #f0ffe9;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: translateX(-120%);
    transition: transform .7s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2d8453);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(17, 92, 54, .25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(17, 92, 54, .32);
}

.btn-glass {
    background: rgba(255, 255, 255, .13);
    color: var(--white);
    border-color: rgba(255, 255, 255, .25);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .23);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-outline-green {
    border-color: rgba(17, 92, 54, .22);
    color: var(--primary);
    background: var(--white);
}

.btn-outline-green:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    min-height: 58px;
    padding: 16px 28px;
}

.full-btn {
    width: 100%;
}

.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32, 150, 83, .14), transparent 65%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .35s ease;
}

/* Topbar */
.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .86);
    font-size: .88rem;
    position: relative;
    z-index: 30;
}

.topbar-inner {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.topbar a:hover {
    color: var(--secondary);
}

.topbar-right a {
    width: 28px;
    height: 28px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 92, 54, .09);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: .95rem;
    font-weight: 800;
    color: var(--ink);
    position: relative;
    padding: 9px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 900;
    transition: var(--transition);
}

.phone-pill:hover {
    background: var(--primary);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--primary-soft);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 5px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    min-height: calc(100vh - 131px);
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider,
.hero-slide {
    min-height: calc(100vh - 131px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 1s ease, visibility 1s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    position: relative;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 38%;
    background: linear-gradient(0deg, rgba(3, 22, 14, 1), transparent);
    pointer-events: none;
}

.hero-content {
    min-height: calc(100vh - 131px);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 0 120px;
}

.hero-copy {
    max-width: 820px;
    color: var(--white);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.9rem);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 20px 0 24px;
    text-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.hero p {
    max-width: 700px;
    font-size: clamp(1.04rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, .88);
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: .88rem;
}

.hero-trust i {
    color: #b9ff9e;
}

.hero-card {
    position: absolute;
    right: max(30px, calc((100vw - 1180px) / 2));
    bottom: 115px;
    z-index: 4;
    width: min(330px, calc(100% - 40px));
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255,255,255,.35);
}

.hero-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.hero-card h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.hero-card p {
    color: var(--muted);
    font-size: .95rem;
}

.slider-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
}

.slide-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    transition: var(--transition);
}

.slide-arrow:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.slider-dots {
    display: flex;
    gap: 9px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    transition: var(--transition);
}

.dot.active {
    width: 34px;
    background: var(--secondary);
}

/* Quick Quote */
.quick-quote {
    margin-top: -58px;
    position: relative;
    z-index: 8;
}

.quick-quote-inner {
    background: linear-gradient(135deg, var(--secondary), #f1d085);
    border-radius: 26px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-shadow: var(--shadow);
}

.quick-quote span {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 900;
    font-size: .78rem;
    color: rgba(3, 22, 14, .73);
}

.quick-quote h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.2;
    color: var(--dark);
    margin-top: 6px;
}

/* About */
.about-section {
    background: var(--light);
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(17, 92, 54, .07);
    right: -260px;
    top: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 74px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    min-height: 580px;
}

.image-main,
.image-small {
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-main {
    width: 78%;
    height: 540px;
}

.image-small {
    position: absolute;
    width: 48%;
    height: 310px;
    right: 0;
    bottom: 0;
    border: 9px solid var(--light);
}

.floating-badge {
    position: absolute;
    left: 32px;
    bottom: 52px;
    width: min(290px, 76%);
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.floating-badge strong {
    display: block;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.floating-badge span {
    color: var(--muted);
    font-weight: 600;
    line-height: 1.4;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 34px;
}

.about-features div,
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
}

.about-features i,
.check-list i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: .8rem;
    flex: 0 0 auto;
}

/* Stats */
.stats-section {
    padding: 62px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 34px 24px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--white), var(--light));
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 16px 50px rgba(3, 29, 16, .06);
    transition: var(--transition);
}

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

.stat-card h3 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--muted);
    font-weight: 800;
}

/* Services */
.services-section {
    background: linear-gradient(180deg, #ffffff, #f4faf6);
}

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

.service-card {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(3, 29, 16, .06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,92,54,.96), rgba(6,53,31,.96));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
    color: var(--white);
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,.18);
    color: var(--white);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.55rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-card p {
    color: var(--muted);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card a {
    color: var(--primary);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.extra-service {
    display: none;
}

.services-grid.show-all .extra-service {
    display: block;
}

.center-btn {
    text-align: center;
    margin-top: 34px;
}

/* Why */
.why-section {
    background: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.why-section::before,
.why-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 168, 91, .14);
}

.why-section::before {
    width: 440px;
    height: 440px;
    left: -200px;
    top: -120px;
}

.why-section::after {
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-content h2,
.why-content p {
    color: var(--white);
}

.why-content p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 30px;
}

.why-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.why-card {
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-8px);
}

.why-card i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--secondary);
    color: var(--dark);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, .74);
}

/* Before After */
.before-after-section {
    background: var(--light);
}

.before-after-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 58px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.comparison {
    position: relative;
    height: 560px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    user-select: none;
}

.comparison img,
.comparison-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-before {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

.comparison-before img {
    width: 200%;
    max-width: none;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 25px rgba(0,0,0,.35);
}

.comparison-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.comparison-handle span::before,
.comparison-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
}

.comparison-handle span::before {
    left: 17px;
    transform: translateY(-50%) rotate(-45deg);
}

.comparison-handle span::after {
    right: 17px;
    transform: translateY(-50%) rotate(135deg);
}

.compare-label {
    position: absolute;
    top: 20px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(0,0,0,.48);
    color: var(--white);
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.compare-label.before {
    left: 20px;
}

.compare-label.after {
    right: 20px;
}

/* Gallery */
.projects-section {
    background: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.gallery-filter button {
    padding: 11px 18px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--primary-soft);
    font-weight: 900;
    transition: var(--transition);
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: var(--primary);
    color: var(--white);
}

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

.gallery-item {
    height: 310px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(3, 29, 16, .09);
    transition: var(--transition);
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(3, 22, 14, .82));
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.25rem;
}

.gallery-open {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--primary);
    flex: 0 0 auto;
    transition: var(--transition);
}

.gallery-open:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: rotate(90deg);
}

/* Process */
.process-section {
    background: linear-gradient(135deg, rgba(6, 53, 31, .97), rgba(17, 92, 54, .94)), url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.process-section .section-heading h2,
.process-section .section-heading p {
    color: var(--white);
}

.process-section .section-heading p {
    color: rgba(255,255,255,.76);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: step;
}

.process-card {
    padding: 32px 26px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(14px);
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-8px);
}

.process-card span {
    display: inline-flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 22px;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-card p {
    color: rgba(255,255,255,.74);
}

/* Packages */
.packages-section {
    background: var(--light);
}

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

.package-card {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(3, 29, 16, .07);
    position: relative;
    transition: var(--transition);
}

.package-card.popular {
    border-color: rgba(212, 168, 91, .7);
    transform: translateY(-12px);
    box-shadow: var(--shadow);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.package-card.popular:hover {
    transform: translateY(-18px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .78rem;
}

.package-card h3 {
    color: var(--primary-dark);
    font-size: 1.45rem;
    margin-bottom: 10px;
    padding-right: 95px;
}

.package-card strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.package-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.package-card ul {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.package-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 700;
}

.package-card li i {
    color: var(--primary);
}

/* Testimonials */
.testimonials-section {
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212,168,91,.18), transparent 34%), radial-gradient(circle at 90% 80%, rgba(17,92,54,.35), transparent 32%);
    pointer-events: none;
}

.testimonial-grid-wrap {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-copy h2,
.testimonial-copy p {
    color: var(--white);
}

.testimonial-copy p {
    color: rgba(255,255,255,.74);
}

.testimonial-controls {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.testimonial-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: var(--white);
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background: var(--secondary);
    color: var(--dark);
}

.testimonial-slider {
    position: relative;
    min-height: 390px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    padding: 46px;
    border-radius: 30px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px) scale(.96);
    transition: var(--transition);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.stars {
    color: var(--secondary);
    display: flex;
    gap: 6px;
    margin-bottom: 26px;
}

.testimonial-slide p {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    color: rgba(255,255,255,.9);
    line-height: 1.55;
    margin-bottom: 34px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 900;
    font-size: 1.25rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255,255,255,.65);
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 64px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 35px rgba(3, 29, 16, .05);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: var(--white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font-weight: 900;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

/* Contact */
.contact-section {
    background: linear-gradient(135deg, rgba(6, 53, 31, .96), rgba(17, 92, 54, .92)), url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.contact-info h2,
.contact-info p {
    color: var(--white);
}

.contact-info p {
    color: rgba(255,255,255,.76);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.contact-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.13);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-4px);
}

.contact-card i {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: var(--dark);
    flex: 0 0 auto;
}

.contact-card strong,
.contact-card span {
    display: block;
}

.contact-card span {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    word-break: break-word;
}

.contact-form-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    box-shadow: var(--shadow-strong);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: .9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid rgba(17, 92, 54, .14);
    background: #f8fbf9;
    color: var(--ink);
    border-radius: 16px;
    padding: 15px 16px;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(17, 92, 54, .10);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #d84545;
}

.form-message {
    margin-top: 14px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

.form-message.error {
    color: #d84545;
}

/* Map & Footer */
.map-section {
    filter: saturate(.75) contrast(1.05);
}

.site-footer {
    background: #03160d;
    color: rgba(255,255,255,.76);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 40px;
    padding-bottom: 54px;
}

.footer-brand img {
    height: 86px;
    width: auto;
    background: var(--white);
    border-radius: 18px;
    padding: 10px;
    margin-bottom: 18px;
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-grid p {
    margin-bottom: 10px;
}

.footer-grid li {
    margin-bottom: 10px;
}

.footer-grid a {
    transition: var(--transition);
}

.footer-grid a:hover {
    color: var(--secondary);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.10);
    color: var(--white);
}

.footer-socials a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.09);
    padding: 22px 20px;
    text-align: center;
}

/* Floating */
.floating-call,
.back-to-top {
    position: fixed;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 40;
    box-shadow: 0 14px 34px rgba(0,0,0,.2);
    transition: var(--transition);
}

.floating-call {
    bottom: 86px;
    background: var(--primary);
    color: var(--white);
    animation: pulse 2.2s infinite;
}

.back-to-top {
    bottom: 22px;
    background: var(--secondary);
    color: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-call:hover,
.back-to-top:hover {
    transform: translateY(-5px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(17, 92, 54, .42); }
    70% { box-shadow: 0 0 0 18px rgba(17, 92, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(17, 92, 54, 0); }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.86);
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-height: 78vh;
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
}

.lightbox h3 {
    color: var(--white);
    margin-top: 18px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
}

/* Reveal animations */
.reveal-up,
.reveal-left,
.reveal-right,
.service-card,
.gallery-item,
.process-card,
.package-card,
.why-card {
    opacity: 0;
    transition: opacity .75s ease, transform .75s ease;
}

.reveal-up,
.service-card,
.gallery-item,
.process-card,
.package-card,
.why-card {
    transform: translateY(36px);
}

.reveal-left {
    transform: translateX(-42px);
}

.reveal-right {
    transform: translateX(42px);
}

.in-view {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Responsive */
@media (max-width: 1120px) {
    .nav-actions .btn,
    .phone-pill span {
        display: none;
    }

    .main-nav ul {
        gap: 20px;
    }

    .hero-card {
        display: none;
    }
}

@media (max-width: 940px) {
    .container {
        width: min(100% - 28px, 760px);
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-right,
    .topbar-left span {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(380px, 86vw);
        height: 100vh;
        background: var(--white);
        box-shadow: -25px 0 80px rgba(0,0,0,.17);
        padding: 115px 30px 30px;
        transition: right .35s ease;
        z-index: 45;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        display: grid;
        gap: 4px;
    }

    .main-nav a {
        display: block;
        padding: 14px 0;
        font-size: 1.1rem;
    }

    .nav-actions {
        gap: 10px;
    }

    .phone-pill {
        width: 46px;
        height: 46px;
        padding: 0;
        justify-content: center;
    }

    .logo img {
        height: 66px;
    }

    .section {
        padding: 80px 0;
    }

    .hero,
    .hero-slider,
    .hero-slide,
    .hero-content {
        min-height: 760px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.9rem);
    }

    .quick-quote-inner,
    .about-grid,
    .why-grid,
    .before-after-grid,
    .testimonial-grid-wrap,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-quote-inner {
        text-align: center;
    }

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

    .services-grid,
    .gallery-grid,
    .packages-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .package-card.popular {
        transform: none;
    }

    .testimonial-slider {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .topbar-left {
        gap: 10px;
        justify-content: center;
        font-size: .78rem;
    }

    .nav-wrap {
        min-height: 78px;
    }

    .logo img {
        height: 58px;
    }

    .hero,
    .hero-slider,
    .hero-slide,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        padding: 54px 0 110px;
    }

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

    .hero-trust {
        display: none;
    }

    .slider-controls {
        bottom: 24px;
    }

    .quick-quote {
        margin-top: -34px;
    }

    .quick-quote-inner {
        padding: 24px 20px;
    }

    .section-heading h2,
    .about-content h2,
    .why-content h2,
    .before-after-copy h2,
    .faq-copy h2,
    .contact-info h2,
    .testimonial-copy h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .image-stack {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .image-main,
    .image-small {
        position: static;
        width: 100%;
        height: 330px;
        border: none;
    }

    .floating-badge {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .about-features,
    .stats-grid,
    .services-grid,
    .why-card-grid,
    .gallery-grid,
    .process-grid,
    .packages-grid,
    .contact-details,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .comparison {
        height: 390px;
    }

    .testimonial-slide {
        padding: 28px;
    }

    .testimonial-slider {
        min-height: 500px;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

    .floating-call,
    .back-to-top {
        right: 14px;
    }

    .lightbox {
        padding: 18px;
    }
}
