/* ============================================================
   David Ramos Landscaping — Main Stylesheet
   Epic • Professional • Modern
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ----- CSS Variables (from readme) ----- */
:root {
    --black: #000000;
    --white: #ffffff;
    --frosted-mint: #d8f3dc;
    --celadon: #b7e4c7;
    --celadon-2: #95d5b2;
    --mint-leaf: #74c69d;
    --mint-leaf-2: #52b788;
    --sea-green: #40916c;
    --dark-emerald: #2d6a4f;
    --pine-teal: #1b4332;
    --evergreen: #081c15;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

a {
    color: var(--sea-green);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--dark-emerald); }

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

section {
    padding: 90px 0;
    position: relative;
}

/* ----- Utility Classes ----- */
.bg-evergreen { background-color: var(--evergreen); }
.bg-pine-teal { background-color: var(--pine-teal); }
.bg-dark-emerald { background-color: var(--dark-emerald); }
.bg-sea-green { background-color: var(--sea-green); }
.bg-mint-leaf { background-color: var(--mint-leaf); }
.bg-celadon { background-color: var(--celadon); }
.bg-frosted-mint { background-color: var(--frosted-mint); }

.text-evergreen { color: var(--evergreen); }
.text-pine-teal { color: var(--pine-teal); }
.text-sea-green { color: var(--sea-green); }
.text-mint-leaf { color: var(--mint-leaf); }

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sea-green);
    margin-bottom: 0.75rem;
    position: relative;
}

.section-label::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--mint-leaf-2);
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--evergreen);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* ----- Buttons ----- */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sea-green), var(--dark-emerald));
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--dark-emerald), var(--pine-teal));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.5);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--evergreen);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-primary:hover {
    background: var(--sea-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    font-family: var(--font-heading);
    padding: 15px 0;
    transition: all 0.4s ease;
    z-index: 1030;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 28, 21, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar .navbar-brand img {
    height: 50px;
    transition: height 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 42px;
}

.navbar .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px !important;
    position: relative;
    transition: color var(--transition);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--mint-leaf);
    transition: width var(--transition);
    border-radius: 2px;
}

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

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--mint-leaf) !important;
}

.navbar .nav-cta {
    background: linear-gradient(135deg, var(--mint-leaf-2), var(--sea-green));
    border-radius: 50px;
    padding: 10px 24px !important;
    margin-left: 8px;
    box-shadow: 0 4px 12px rgba(82, 183, 136, 0.3);
    transition: all var(--transition);
}

.navbar .nav-cta::after {
    display: none;
}

.navbar .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 183, 136, 0.45);
    color: var(--white) !important;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(8, 28, 21, 0.98);
    }
    .navbar .nav-link {
        padding: 12px 18px !important;
    }
    .navbar .nav-link::after {
        display: none;
    }
    .navbar .nav-cta {
        display: inline-block;
        margin-top: 8px;
        text-align: center;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--evergreen) 0%, var(--pine-teal) 40%, var(--dark-emerald) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 28, 21, 0.85) 0%,
        rgba(8, 28, 21, 0.55) 50%,
        rgba(8, 28, 21, 0.85) 100%
    );
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/homepage-image-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mint-leaf);
    background: rgba(116, 198, 157, 0.1);
    border: 1px solid rgba(116, 198, 157, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--mint-leaf), var(--celadon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s ease-in-out infinite, fadeInUp 1s ease 0.8s both;
}

.hero-scroll a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.hero-scroll a:hover {
    opacity: 1;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

/* ----- Hero (inner pages) ----- */
.hero-inner {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--evergreen), var(--pine-teal));
}

.hero-inner .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/services/services-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-inner .hero-overlay {
    background: linear-gradient(180deg,
        rgba(8, 28, 21, 0.9) 0%,
        rgba(8, 28, 21, 0.5) 100%);
}

.hero-inner .hero-content {
    padding-top: 80px;
}

.hero-inner .hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.intro-section {
    background: var(--white);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.intro-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--sea-green), var(--dark-emerald));
    color: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2;
}

.intro-image-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.intro-image-badge .years-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.intro-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.intro-features li {
    padding: 8px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-features li i {
    color: var(--sea-green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-section {
    background: linear-gradient(180deg, var(--frosted-mint) 0%, var(--white) 100%);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-leaf), var(--sea-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--frosted-mint), var(--celadon));
    color: var(--dark-emerald);
    transition: all var(--transition);
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--mint-leaf-2), var(--sea-green));
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sea-green);
    margin-top: 20px;
    transition: gap var(--transition);
}

.service-card .learn-more i {
    transition: transform var(--transition);
}

.service-card:hover .learn-more {
    gap: 12px;
}

.service-card:hover .learn-more i {
    transform: translateX(4px);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--evergreen) 0%, var(--pine-teal) 50%, var(--dark-emerald) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(116, 198, 157, 0.06);
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(116, 198, 157, 0.04);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
    background: var(--white);
}

.area-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.area-card:hover {
    border-color: var(--mint-leaf);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.area-card i {
    font-size: 1.8rem;
    color: var(--sea-green);
    margin-bottom: 12px;
    display: block;
}

.area-card .area-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--evergreen);
    margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--evergreen), var(--pine-teal));
    border-radius: 20px;
    padding: 40px 30px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(116, 198, 157, 0.1);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--mint-leaf);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item .label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
    color: var(--mint-leaf);
}

.contact-info-item .value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-info-item a.value:hover {
    color: var(--celadon);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    position: relative;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.contact-social a:hover {
    background: var(--mint-leaf);
    color: var(--evergreen);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.php-email-form .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--evergreen);
}

.php-email-form .form-control,
.php-email-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all var(--transition);
    background: #fafafa;
}

.php-email-form .form-control:focus,
.php-email-form .form-select:focus {
    border-color: var(--mint-leaf);
    box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.15);
    background: var(--white);
    outline: none;
}

.php-email-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Form Messages */
.php-email-form .error-message {
    display: none;
    background: #dc3545;
    color: #ffffff;
    text-align: left;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-weight: 500;
    border-radius: 10px;
    font-size: 0.9rem;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: var(--sea-green);
    text-align: center;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-weight: 500;
    border-radius: 10px;
    font-size: 0.9rem;
}

.php-email-form .loading {
    display: none;
    background: var(--pine-teal);
    color: var(--white);
    text-align: center;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 0 10px -5px 0;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    animation: php-email-form-loading 0.8s linear infinite;
}

@keyframes php-email-form-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Map */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--evergreen);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-leaf), var(--sea-green), var(--dark-emerald));
}

.footer-top {
    padding: 70px 0 40px;
    position: relative;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer h5 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
}

.footer h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--mint-leaf);
    margin-top: 10px;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--mint-leaf);
    transition: transform var(--transition);
}

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

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--mint-leaf);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--mint-leaf);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--mint-leaf);
    color: var(--evergreen);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
}

.footer-bottom a {
    color: var(--mint-leaf);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--celadon);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 {
    padding: 120px 0;
    min-height: 80vh;
    background: linear-gradient(180deg, var(--frosted-mint) 0%, var(--white) 100%);
}

.error-404 .error-code {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 15vw, 14rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--sea-green), var(--evergreen));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404 h2 {
    color: var(--evergreen);
}

.error-404 .lead {
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
    color: #666;
}

.error-404 .bi-arrow-left {
    transition: transform 0.2s ease;
}

.error-404 .btn:hover .bi-arrow-left {
    transform: translateX(-4px);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sea-green), var(--dark-emerald));
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

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

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.5);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-inner {
        min-height: 40vh;
    }

    .intro-image-wrapper img {
        height: 280px;
    }

    .intro-image-badge {
        bottom: -10px;
        right: -10px;
        padding: 16px 20px;
    }

    .intro-image-badge .years {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 28px 22px;
    }

    .contact-info-card,
    .contact-form-wrapper {
        border-radius: 16px;
        padding: 28px 22px;
    }

    .footer-top {
        padding: 50px 0 20px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}