/* ============================================
   DENHAM SOD - Main Stylesheet
   Colors: Deep Forest Green, Gold, Off-White
   Typography: Playfair Display, Poppins, Montserrat
   ============================================ */

/* ----- CSS Custom Properties ----- */
:root {
    --green-deep: #1B4D2E;
    --green-dark: #0F2E1A;
    --green-darker: #0B1F12;
    --green-light: #2D7A4A;
    --green-muted: #3A6B4C;
    --gold: #D4AF37;
    --gold-light: #E8C94A;
    --gold-dark: #B8941F;
    --yellow: #E8B931;
    --off-white: #F8F9F7;
    --white: #FFFFFF;
    --gray-100: #F0F2EE;
    --gray-200: #E2E5DF;
    --gray-300: #C5C9C0;
    --gray-400: #8A8F84;
    --gray-500: #6B7066;
    --gray-600: #4A4F45;
    --text-dark: #1A1D17;
    --text-body: #3D4238;
    --text-light: #B9C2B4;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --font-accent: 'Montserrat', 'Arial', sans-serif;

    --shadow-sm: 0 2px 8px rgba(11, 31, 18, 0.08);
    --shadow-md: 0 8px 24px rgba(11, 31, 18, 0.12);
    --shadow-lg: 0 16px 48px rgba(11, 31, 18, 0.16);
    --shadow-xl: 0 24px 64px rgba(11, 31, 18, 0.2);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

.text-accent { color: var(--green-deep); }
.text-gold { color: var(--gold); }

/* ----- Layout ----- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

.section-header-light .section-title,
.section-title-light {
    color: var(--off-white);
}

.section-label-light {
    color: var(--gold-light);
}

.section-subtitle-light {
    color: var(--text-light);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-darker);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--off-white);
    border-color: rgba(248, 249, 247, 0.3);
}

.btn-outline:hover {
    background: rgba(248, 249, 247, 0.1);
    border-color: var(--off-white);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 31, 18, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--off-white);
    letter-spacing: 0.02em;
}

.logo-accent {
    color: var(--gold);
}

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

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(248, 249, 247, 0.8);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--green-darker) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.nav-phone:hover {
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--off-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-deep) 50%, var(--green-dark) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(27, 77, 46, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    color: var(--off-white);
    margin-bottom: 24px;
    line-height: 1.08;
}

.title-accent {
    color: var(--gold);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(248, 249, 247, 0.7);
    letter-spacing: 0.03em;
}

/* Hero 3D Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-grass-3d {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.4));
    transform: rotateY(-8deg) rotateX(5deg);
    animation: grassFloat 6s ease-in-out infinite;
}

.floating-sphere {
    position: absolute;
    top: -10%;
    right: 5%;
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.3));
    animation: sphereFloat 4s ease-in-out infinite;
}

.floating-sod-roll {
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 130px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: sodRollFloat 5s ease-in-out infinite 1s;
}

@keyframes grassFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(3deg) translateY(-15px); }
}

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

@keyframes sodRollFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-5deg); }
}

.hero-diagonal {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--off-white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 3;
}

/* ============================================
   USP SECTION
   ============================================ */
.usp-section {
    padding: 80px 0 100px;
    background: var(--off-white);
    position: relative;
}

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

.usp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-deep), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.usp-card-featured {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

.usp-card-featured h3 {
    color: var(--off-white);
}

.usp-card-featured p {
    color: var(--text-light);
}

.usp-card-featured:hover {
    box-shadow: 0 16px 48px rgba(27, 77, 46, 0.3);
}

.usp-card-featured::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 1;
}

.usp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green-darker);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
}

.usp-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.usp-icon-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.usp-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.usp-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   SOD TYPES SECTION
   ============================================ */
.sod-section {
    padding: 120px 0;
    background: var(--green-deep);
    position: relative;
}

.sod-diagonal-top {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--off-white);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    z-index: 2;
}

.sod-diagonal-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--off-white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.sod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.sod-card {
    background: rgba(248, 249, 247, 0.06);
    border: 1px solid rgba(248, 249, 247, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.sod-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(248, 249, 247, 0.1);
}

.sod-card-header {
    padding: 28px 32px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sod-number {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green-deep);
    background: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.sod-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--off-white);
    flex: 1;
}

.sod-tag {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.sod-card-body {
    padding: 0 32px 32px;
}

.sod-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.sod-features {
    margin-bottom: 20px;
}

.sod-features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.88rem;
    color: rgba(185, 194, 180, 0.85);
    margin-bottom: 8px;
    line-height: 1.6;
}

.sod-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
}

.sod-best-for {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
    padding-top: 16px;
    border-top: 1px solid rgba(248, 249, 247, 0.08);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 100px 0;
    background: var(--off-white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-number {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green-darker);
    background: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
}

.step-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.step-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.process-step:hover .step-image-wrapper img {
    transform: scale(1.05);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    padding: 120px 0;
    background: var(--green-deep);
    position: relative;
}

.results-diagonal-top {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--off-white);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
    z-index: 2;
}

.results-diagonal-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--off-white);
    clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
    z-index: 2;
}

.results-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.results-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.results-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.results-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--green-darker);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.results-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.results-badge-text {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.results-content {
    color: var(--off-white);
}

.results-content .section-title {
    color: var(--off-white);
}

.results-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.results-content .btn {
    margin-top: 16px;
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.quote-section {
    padding: 100px 0;
    background: var(--off-white);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quote-info .section-title {
    margin-bottom: 16px;
}

.quote-info > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.quote-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.92rem;
    color: var(--gray-500);
}

.contact-item a:hover {
    color: var(--gold-dark);
}

/* Form Styles */
.quote-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.required {
    color: var(--gold-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    color: var(--text-dark);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px rgba(27, 77, 46, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7066' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 16px;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    color: var(--green-deep);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-500);
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.area-section {
    padding: 120px 0;
    background: var(--green-dark);
    position: relative;
}

.area-diagonal-top {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--off-white);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    z-index: 2;
}

.area-diagonal-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--green-darker);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

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

.area-card {
    background: rgba(248, 249, 247, 0.06);
    border: 1px solid rgba(248, 249, 247, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.area-card:hover {
    background: rgba(248, 249, 247, 0.1);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.area-pin {
    margin-bottom: 16px;
}

.area-pin svg {
    margin: 0 auto;
}

.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--off-white);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-darker);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(248, 249, 247, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-nap {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-nap a {
    color: var(--gold);
}

.footer-nap a:hover {
    color: var(--gold-light);
}

.footer-links h4 {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--off-white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-light);
    transition: all var(--transition);
}

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

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

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

    .usp-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .sod-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .results-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .results-content .section-label {
        display: block;
    }

    .results-content .btn {
        margin: 16px auto 0;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

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

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

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 31, 18, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-cta {
        padding: 14px 28px !important;
        font-size: 1rem !important;
    }

    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-3d-wrapper {
        max-width: 320px;
    }

    .floating-sod-roll {
        width: 90px;
    }

    .floating-sphere {
        width: 50px;
        height: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

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

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        margin: 0 auto 20px;
    }

    .results-image img {
        height: 280px;
    }

    .hero-diagonal,
    .sod-diagonal-top,
    .sod-diagonal-bottom,
    .results-diagonal-top,
    .results-diagonal-bottom,
    .area-diagonal-top,
    .area-diagonal-bottom {
        height: 60px;
    }

    .sod-section,
    .results-section,
    .area-section {
        padding: 80px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-container {
        padding: 40px 16px;
    }

    .quote-form-wrapper {
        padding: 24px 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.82rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}
