/*
Theme Name: Edwards Lawn Care
Theme URI: https://edwards.steinmetz.ltd
Author: Steinmetz Web Services
Description: Custom theme for Edwards Lawn Care & Power Washing - clone of Wix site
Version: 1.0.0
License: Proprietary
Text Domain: edwards
*/

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
    --color-bg-dark: #1a1a1a;
    --color-bg-black: #000000;
    --color-bg-white: #ffffff;
    --color-bg-green-dark: #1b3a1b;
    --color-bg-green: #2d5a27;
    --color-green-accent: #62da3a;
    --color-green-lime: #7ed321;
    --color-orange: #e8a838;
    --color-orange-light: #f5c542;
    --color-text-white: #ffffff;
    --color-text-light: #e0e0e0;
    --color-text-dark: #333333;
    --color-text-muted: #999999;
    --color-overlay: rgba(0, 0, 0, 0);
    --font-heading: 'Oswald', sans-serif;
    --font-nav: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1200px;
    --nav-height: 50px;
    --header-height: 430px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER / HERO
   ============================================ */
.site-header {
    position: relative;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-bg img,
.header-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 1;
}

.header-logo {
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 80%;
    animation: fadeInDown 1s ease-out;
}

.header-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: var(--color-bg-black);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-list a {
    color: var(--color-text-white);
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green-accent);
    transition: width 0.3s ease;
}

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION (below nav on home page)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--color-text-white);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 span {
    color: var(--color-orange);
}

.btn-primary {
    display: inline-block;
    background: var(--color-green-accent);
    color: var(--color-bg-black);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 16px 45px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary:hover {
    background: var(--color-orange);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 255, 0, 0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 20px;
    background-color: var(--color-bg-white);
    background-image: url('assets/images/about-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 90, 39, 0.55);
    z-index: 0;
}

.about-section .btn-primary {
    background: var(--color-bg-black);
    color: var(--color-text-white);
}

.about-section .btn-primary:hover {
    background: var(--color-green-accent);
    color: var(--color-bg-black);
}

.about-section > * {
    position: relative;
    z-index: 1;
}

.about-section h2 {
    font-size: 3.5rem;
    color: var(--color-text-white);
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about-section .btn-primary {
    margin-top: 10px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 80px 20px;
    background: var(--color-bg-dark);
    position: relative;
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--color-text-white);
    margin-bottom: 50px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green-accent), var(--color-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card.service-card-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 0;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
    border-radius: 8px;
    z-index: 0;
}

.service-card.service-card-img h3 {
    position: relative;
    z-index: 1;
    padding: 0 25px 5px;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.service-card.service-card-img p {
    position: relative;
    z-index: 1;
    padding: 0 25px 25px;
    margin: 0;
    color: var(--color-text-light);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

.service-card.service-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-green-accent), var(--color-bg-green));
    font-size: 2rem;
}

.service-card h3 {
    color: var(--color-text-white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

/* ============================================
   GALLERY / OUR WORK SECTION
   ============================================ */
.gallery-section {
    padding: 80px 20px;
    background: var(--color-bg-white);
}

.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 50px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-overlay span {
    color: white;
    font-size: 2rem;
}

.gallery-link {
    text-align: center;
    margin-top: 30px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-green-accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: color 0.3s ease;
}

.lightbox-nav:hover {
    color: var(--color-green-accent);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   NEWSLETTER POPUP MODAL
   ============================================ */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.newsletter-popup.active {
    display: flex;
}

.newsletter-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.newsletter-popup-content {
    position: relative;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-green-accent);
    border-radius: 12px;
    padding: 50px 40px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.newsletter-popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.newsletter-popup-close:hover {
    color: var(--color-green-accent);
}

.newsletter-popup-content h3 {
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-popup-content > p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-popup-form {
    display: flex;
    gap: 0;
}

.newsletter-popup-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    color: white;
    font-size: 1rem;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-body);
}

.newsletter-popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-popup-form input:focus {
    outline: none;
    border-color: var(--color-green-accent);
}

.newsletter-popup-form button {
    background: var(--color-green-accent);
    color: var(--color-bg-black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-popup-form button:hover {
    background: var(--color-orange);
    color: white;
}

.popup-form-message {
    margin-top: 12px;
    font-size: 0.9rem;
    min-height: 20px;
}

.newsletter-popup-dismiss {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.newsletter-popup-dismiss:hover {
    color: var(--color-text-white);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
    padding: 80px 20px;
    background: var(--color-bg-green-dark);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 58, 27, 0.95), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content .quote-mark {
    font-size: 5rem;
    color: var(--color-green-accent);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: -20px;
    font-family: Georgia, serif;
}

.testimonial-content blockquote {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-content .author {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* ============================================
   AREAS WE SERVE
   ============================================ */
.areas-section {
    padding: 80px 20px;
    background: var(--color-bg-white);
    text-align: center;
}

.areas-section h2 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.areas-section .areas-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.areas-list span {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.areas-list span:hover {
    background: var(--color-green-accent);
    color: var(--color-bg-black);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT / QUOTE FORM
   ============================================ */
.quote-section {
    padding: 80px 20px;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.97), rgba(45, 90, 39, 0.85));
    z-index: 1;
}

.quote-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.quote-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--color-text-white);
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.quote-section .quote-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

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

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

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

.quote-form label {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-white);
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    border-radius: 4px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--color-green-accent);
    background: rgba(255, 255, 255, 0.12);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.quote-form select option {
    background: #333;
    color: white;
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form .form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.quote-form .btn-submit {
    display: inline-block;
    background: var(--color-green-accent);
    color: var(--color-bg-black);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 60px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.quote-form .btn-submit:hover {
    background: var(--color-orange);
    color: var(--color-text-white);
    transform: translateY(-2px);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 60px 20px;
    background: var(--color-bg-white);
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.newsletter-section p {
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-right: none;
    font-size: 1rem;
    font-family: var(--font-body);
    border-radius: 0;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-green-accent);
}

.newsletter-form button {
    background: var(--color-green-accent);
    color: var(--color-bg-black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border: 2px solid var(--color-green-accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--color-bg-black);
    color: var(--color-green-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-bg-green-dark);
    color: var(--color-text-light);
    padding: 50px 20px 25px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--color-green-accent);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-green-accent);
    color: var(--color-bg-black);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-bottom a {
    color: var(--color-text-muted);
}

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

.footer-badge {
    display: inline-block;
    background: var(--color-green-accent);
    color: var(--color-bg-black);
    padding: 4px 12px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-bg {
    background-attachment: scroll;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #111;
}

/* ============================================
   SCROLL ANIMATIONS (AOS-like)
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-fade-left {
    transform: translateX(-30px);
}

.animate-on-scroll.animate-fade-right {
    transform: translateX(30px);
}

.animate-on-scroll.animate-zoom {
    transform: scale(0.9);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   PAGE-SPECIFIC: SERVICES
   ============================================ */
.services-page-intro {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    text-align: center;
}

.services-page-intro h1 {
    font-size: 2.8rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.services-page-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    background: var(--color-bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-card .card-image {
    height: 200px;
    overflow: hidden;
}

.service-detail-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-detail-card .card-body {
    padding: 25px;
}

.service-detail-card h3 {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

/* ============================================
   PAGE-SPECIFIC: CONTACT
   ============================================ */
.contact-hero {
    padding: 80px 20px;
    background: var(--color-bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--color-text-white);
    margin-bottom: 15px;
}

.contact-hero .contact-subtitle {
    color: var(--color-green-accent);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-item {
    padding: 20px;
}

.contact-info-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info-item h3 {
    color: var(--color-orange);
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* ============================================
   PAGE-SPECIFIC: FAQ
   ============================================ */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
}

.faq-intro {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-dark);
    padding: 5px 0;
}

.faq-question .faq-toggle {
    font-size: 1.5rem;
    color: var(--color-green-accent);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #555;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 15px;
}

/* ============================================
   PAGE-SPECIFIC: PRIVACY
   ============================================ */
.privacy-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.privacy-section h2 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin: 30px 0 10px;
}

.privacy-section p,
.privacy-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 300px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 100;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    .main-nav {
        justify-content: flex-end;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        border-right: 2px solid #ddd;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .about-section h2,
    .services-section h2,
    .gallery-section h2,
    .quote-section h2 {
        font-size: 1.8rem;
    }

    .header-logo {
        max-width: 280px;
    }
}
