/* =========================================
   Great Valley Landscaping - Rich Aesthetic Styles
   ========================================= */

:root {
    /* Color Palette */
    --clr-primary: #1A5326; /* Deep forest green */
    --clr-primary-light: #2A793A;
    --clr-primary-dark: #0F3316;
    --clr-accent: #D4AF37; /* Warm Gold */
    --clr-accent-hover: #F3D05C;
    --clr-bg-light: #F4F7F4;
    --clr-bg-dark: #121A14;
    --clr-text-light: #F4F7F4;
    --clr-text-dark: #1F2922;
    --clr-text-muted: #6B7280;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* Variables */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-dark);
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--clr-accent); }
.text-white { color: var(--clr-text-light); }
.text-light-gray { color: #A0AAB2; }
.bg-light { background-color: var(--clr-bg-light); }
.bg-dark { background-color: var(--clr-bg-dark); }

/* --- Buttons & Badges --- */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(26, 83, 38, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(26, 83, 38, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--clr-accent);
}

/* --- Glassmorphism --- */

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

/* --- Navigation --- */

.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.glass-nav.scrolled .logo, .glass-nav.scrolled .nav-links a, .glass-nav.scrolled .mobile-menu-btn {
    color: var(--clr-primary-dark);
}

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

.logo {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */

.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/hero_bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 51, 22, 0.6) 0%, rgba(15, 51, 22, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    padding: 0 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-weight: 500;
}

/* --- Section Shared --- */

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
}

/* --- About Section --- */

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
    transition: transform 0.7s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease 0.3s;
}

.about-image.active .experience-badge {
    opacity: 1;
    transform: translateX(0);
    right: 2rem;
}

.experience-badge .counter {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item i {
    font-size: 2rem;
}

.stat-item h4 {
    font-size: 1.1rem;
}

/* --- Services Section --- */

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 83, 38, 0.1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--clr-primary);
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* --- Offer Section --- */

.offer {
    position: relative;
    min-height: 500px;
    background: url('assets/offer_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background-attachment: fixed;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 51, 22, 0.85); /* Deep green tint */
}

.offer-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.offer-card {
    padding: 2.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
}

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

.expiry {
    font-style: italic;
    opacity: 0.8;
}

/* --- Testimonials --- */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--clr-bg-light);
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.customer-info {
    display: flex;
    flex-direction: column;
}

.customer-info strong {
    color: var(--clr-primary-dark);
    font-family: var(--font-heading);
}

.customer-info span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* --- Contact Section --- */

.info-blocks {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05); /* very dark glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-block h4 {
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.info-block p {
    color: #A0AAB2;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-form {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: rgba(255, 255, 255, 0.1);
}

.response-time {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #A0AAB2;
    text-align: center;
}

/* --- Footer --- */

footer {
    background: #0A120D;
    color: #6B7280;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* --- Animations --- */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

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

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */

@media (max-width: 992px) {
    .section-split {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1.5rem 2rem;
        color: var(--clr-primary-dark);
        border-bottom: 1px solid #eee;
    }
    
    .glass-nav.scrolled .mobile-menu-btn {
        color: var(--clr-primary-dark);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}
