/* --- DESIGN SYSTEM --- */
:root {
    --primary-color: #2D5A27; /* Deep Forest Green */
    --primary-light: #4A8C3F; /* Logo Light Green */
    --accent-color: #C5A059; /* Gold */
    --text-dark: #1A281F;
    --text-muted: #4A5D52;
    --bg-light: #F2F4EF; /* Logo tone */
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-weight: 700;
}

.btn-primary {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
}

.btn-primary:hover {
    background: var(--primary-light) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid white !important;
    color: white !important;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color) !important;
}

/* --- NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.6rem 0 !important;
    background: #ffffff !important; /* Keep pure white on scroll */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px; /* Large logo */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-links .btn-primary {
    padding: 0.8rem 1.5rem;
}

/* --- QUOTE SECTION --- */
.quote-section {
    background: #F2F4EF;
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
}

.quote-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.quote-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.quote-form-block form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quote-form-block input, 
.quote-form-block textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-family: inherit;
    background: white;
    transition: var(--transition);
}

.quote-form-block input:focus, 
.quote-form-block textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
}

.btn-full {
    width: 100%;
}

@media (max-width: 992px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .quote-text {
        text-align: center;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

/* Footer Nav Links */
.footer-nav-links {
    list-style: none;
}

.footer-nav-links li {
    margin-bottom: 0.8rem;
}

.footer-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-nav-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 110vh; /* More breathing room */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 200px 0 80px; /* Increased gap from header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center !important; /* Lock to truck cab side */
    z-index: -2;
    animation: heroZoom 25s ease-out forwards; /* Ken Burns Effect */
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 30%, transparent 100%);
    z-index: -1;
}

.hero-text-block {
    max-width: 800px;
    color: white;
    padding-left: 0; /* Align directly to container edge */
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* --- SERVICES --- */
.services {
    padding: 6rem 0 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.subtitle {
    display: block;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.glass-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- MARQUEE --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.portfolio-item {
    width: 400px;
    height: 380px; /* Taller for more visibility */
    flex-shrink: 0;
    border-radius: 6px; /* Subtle rounded corners */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05); /* Very thin, subtle border */
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

/* Subtle corner detail */
.portfolio-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 3;
}

.portfolio-item:hover::after {
    transform: scaleX(1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    opacity: 0;
    transition: var(--transition);
}

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

.testimonial-card {
    width: 400px;
    flex-shrink: 0;
    padding: 2.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.client-info strong {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

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

/* Business Info */
.business-info {
    padding: 6rem 0;
    background: var(--white);
}

/* --- ABOUT SECTION --- */
.about-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text-content {
    flex: 1;
}

.about-image-frame {
    flex: 1;
    position: relative;
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--accent-color); /* Thinner, more subtle border */
    border-radius: 20px;
    z-index: 1;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: flex;
    align-items: center;
    gap: 2px;
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image-frame {
        width: 100%;
        height: 400px;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
}

.hours-list, .amenities-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-list span {
    font-weight: 700;
    color: var(--primary-color);
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-weight: 500;
}

.amenities-list i {
    color: var(--primary-light);
}

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
}

.stars { color: var(--accent-color); margin-bottom: 1rem; }

/* --- FOOTER --- */
footer {
    background: #ffffff;
    padding: 6rem 0 3rem;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer-form input, 
.footer-form select, 
.footer-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.footer-form input:focus, 
.footer-form select:focus, 
.footer-form textarea:focus {
    border-color: var(--primary-color);
}

.footer-brand img {
    height: 100px; /* Matched to header logo */
    width: auto;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-light);
    transform: translateY(-3px);
}

.payments {
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-hours-list {
    list-style: none;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-hours-list li {
    margin-bottom: 0.5rem;
}

.contact-list {
    list-style: none;
    margin-top: 1.5rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-form select, 
.footer-form textarea, 
.footer-form .btn {
    grid-column: span 2;
}

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- MOBILE --- */
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

.mobile-overlay {
    display: none; /* Hidden on desktop */
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { min-height: 100vh; padding-top: 150px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-bg { 
        background-image: url('../img/hero_mobile.webp') !important; 
        background-position: center !important;
        animation: heroZoom 25s ease-out forwards !important; 
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: white;
        z-index: 10000;
        display: flex; flex-direction: column;
        justify-content: center; align-items: center;
        transition: 0.5s ease;
        visibility: hidden;
    }
    .mobile-overlay.active { 
        right: 0; 
        visibility: visible; 
        display: flex;
    }
    .mobile-nav-links { list-style: none; text-align: center; width: 100%; }
    .mobile-nav-links li { margin: 1.5rem 0; }
    .mobile-nav-links a { font-size: 1.5rem; text-decoration: none; color: var(--primary-color); font-weight: 700; display: block; }
}

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Floating Sonar Button */
.floating-sonar {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.floating-sonar i {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.floating-sonar span {
    background: white;
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.floating-sonar:hover span {
    opacity: 1;
    transform: translateX(0);
}

.sonar-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.4;
    z-index: 1;
    animation: sonarPulse 2s infinite;
}

@keyframes sonarPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.2); opacity: 0; }
}

@media (max-width: 768px) {
    .floating-sonar span { display: none; } /* Icon only on small mobile */
}
