/* ========================================
   S&K Pro Wash V2 - Refined Aesthetic
   "Quiet Confidence"
   ======================================== */

/* ========================================
   CSS Variables - Sophisticated Palette
   ======================================== */
:root {
    /* Refined Colors - Quiet Confidence */
    --charcoal-deep: #1e293b;
    --charcoal-medium: #334155;
    --slate-dark: #475569;
    --slate-medium: #64748b;
    --slate-light: #cbd5e1;
    --slate-whisper: #f1f5f9;
    --white-pure: #ffffff;
    --accent-sage: #6b8e7f;
    --accent-gold: #d4af37;
    --accent-blue-muted: #5b8fa3;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-deep);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

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

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

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background-color: rgba(30, 41, 59, 0.98);
    padding: 1.2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white-pure);
    letter-spacing: 3px;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--white-pure);
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    transition: var(--transition-smooth);
    position: relative;
}

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

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

.navbar-nav .nav-link:hover {
    color: var(--accent-sage);
}

.btn-nav-cta {
    background-color: transparent;
    color: var(--white-pure);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1.5px solid var(--accent-sage);
    font-size: 0.9rem;
}

.btn-nav-cta:hover {
    background-color: var(--accent-sage);
    color: var(--white-pure);
    border-color: var(--accent-sage);
}

/* ========================================
   Video Hero Section
   ======================================== */
.video-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback animated gradient if video doesn't load */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal-medium) 50%, var(--slate-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.5), rgba(30, 41, 59, 0.8));
    z-index: 1;
}

/* Desktop CTA Overlay - Hidden on Mobile */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text-content {
    color: var(--white-pure);
}

.hero-headline {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-number {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--accent-sage);
}

.badge-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 400;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-hero-primary {
    background-color: var(--accent-sage);
    color: var(--white-pure);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    border: 1.5px solid var(--accent-sage);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    background-color: transparent;
    color: var(--accent-sage);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 142, 127, 0.3);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white-pure);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background-color: var(--white-pure);
    color: var(--charcoal-deep);
    border-color: var(--white-pure);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ========================================
   Mobile CTA Section - Shown only on mobile
   ======================================== */
.mobile-cta-section {
    display: none; /* Hidden by default (desktop) */
    padding: 3rem 0;
    background-color: var(--charcoal-deep);
    color: var(--white-pure);
}

.mobile-cta-content {
    text-align: center;
}

.mobile-headline {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mobile-subheadline {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.mobile-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-badge .badge-number {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent-sage);
}

.mobile-badge .badge-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-mobile-primary,
.btn-mobile-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1.5px solid;
    transition: var(--transition-smooth);
}

.btn-mobile-primary {
    background-color: var(--accent-sage);
    color: var(--white-pure);
    border-color: var(--accent-sage);
}

.btn-mobile-secondary {
    background-color: transparent;
    color: var(--white-pure);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Trust Bar
   ======================================== */
.trust-bar {
    padding: 3rem 0;
    background-color: var(--slate-whisper);
    border-top: 1px solid var(--slate-light);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--accent-sage);
}

.trust-item span {
    font-size: 0.95rem;
    color: var(--slate-dark);
    font-weight: 500;
}

/* ========================================
   Section Headers
   ======================================== */
.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-sage);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.section-title {
    font-size: 3rem;
    color: var(--charcoal-deep);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-medium);
    font-weight: 300;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--white-pure);
}

.service-card {
    background: var(--white-pure);
    border: 1px solid var(--slate-light);
    border-radius: 8px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 142, 127, 0.15);
    border-color: var(--accent-sage);
}

.service-card-featured {
    background: linear-gradient(135deg, var(--charcoal-deep), var(--charcoal-medium));
    border-color: var(--charcoal-deep);
}

.service-card-featured * {
    color: var(--white-pure) !important;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--slate-whisper);
    font-weight: 600;
    opacity: 0.3;
}

.service-card-featured .service-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--slate-whisper);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-featured .service-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--accent-sage);
}

.service-card-featured .service-icon-wrapper i {
    color: var(--white-pure);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal-deep);
    font-weight: 600;
}

.service-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--slate-medium);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--slate-dark);
}

.service-features i {
    color: var(--accent-sage);
    font-size: 1.1rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: var(--section-padding);
    background-color: var(--slate-whisper);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-sage);
    color: var(--white-pure);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(107, 142, 127, 0.3);
}

.experience-number {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-top: 0.5rem;
    display: block;
}

.about-content {
    padding-left: 2rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--slate-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-features {
    margin-top: 2.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--white-pure);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--accent-sage);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal-deep);
    font-weight: 600;
}

.feature-content p {
    color: var(--slate-medium);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--white-pure);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white-pure);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* ========================================
   Service Areas Section
   ======================================== */
.areas-section {
    padding: var(--section-padding);
    background-color: var(--slate-whisper);
}

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

.area-item {
    background: var(--white-pure);
    padding: 1.2rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    color: var(--charcoal-deep);
    border: 1px solid var(--slate-light);
    transition: var(--transition-smooth);
}

.area-item:hover {
    background: var(--accent-sage);
    color: var(--white-pure);
    border-color: var(--accent-sage);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 142, 127, 0.2);
}

.areas-note {
    color: var(--slate-medium);
    font-size: 0.95rem;
}

.areas-note a {
    color: var(--accent-sage);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.areas-note a:hover {
    border-bottom-color: var(--accent-sage);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--charcoal-deep), var(--charcoal-medium));
    color: var(--white-pure);
}

.contact-info-wrapper {
    padding-right: 2rem;
}

.contact-lead {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
}

.contact-methods {
    margin-top: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--accent-sage);
}

.method-content h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.method-content a {
    color: var(--white-pure);
    font-weight: 500;
    font-size: 1.1rem;
}

.method-content a:hover {
    color: var(--accent-sage);
}

.method-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white-pure);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h3 {
    color: var(--charcoal-deep);
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-label {
    font-weight: 500;
    color: var(--charcoal-deep);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border: 1.5px solid var(--slate-light);
    padding: 0.8rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 0.2rem rgba(107, 142, 127, 0.1);
}

.btn-form-submit {
    background-color: var(--accent-sage);
    color: var(--white-pure);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.btn-form-submit:hover {
    background-color: var(--charcoal-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 142, 127, 0.3);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--charcoal-deep);
    color: var(--white-pure);
    padding: 4rem 0 1.5rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white-pure);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-text {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent-sage);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

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

.btn-footer-link {
    background-color: transparent;
    color: var(--white-pure);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-footer-link:hover {
    background-color: var(--accent-sage);
    border-color: var(--accent-sage);
    color: var(--white-pure);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    margin-top: 1rem;
}

.footer-copyright,
.footer-credits {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    :root {
        --section-padding: 70px 0;
    }
    
    /* Video Hero Mobile */
    .video-hero {
        height: 50vh;
    }
    
    /* Hide desktop CTA overlay on mobile */
    .hero-content-overlay {
        display: none !important;
    }
    
    /* Show mobile CTA section on mobile */
    .mobile-cta-section {
        display: block !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-experience-badge {
        right: 20px;
        bottom: 20px;
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-badges {
        gap: 1.5rem;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   AOS Animation Overrides
   ======================================== */
[data-aos] {
    transition-duration: 0.8s;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}
