/* ==========================================================================
   Crazys For Detailing — estilos globales
   Paleta y componentes fieles a la plantilla original (dorado / negro)
   ========================================================================== */

:root {
    --gold: #C9A962;
    --gold-light: #D4B978;
    --gold-dark: #A68B4B;
    --black: #0A0A0A;
    --black-light: #111111;
    --dark-gray: #1A1A1A;
    --gray: #2A2A2A;
    --light-gray: #888888;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--gold);
    color: var(--black);
    padding: 12px 20px;
    font-weight: 700;
    z-index: 3000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(6px);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(10px);
    padding: 13px 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.35);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 46px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
}

.logo-text span {
    color: var(--white);
    display: block;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switch {
    border: 1px solid var(--gray);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.lang-switch:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--black);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    overflow: hidden;
    padding: 140px 20px 80px;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    width: 180px;
    margin: 0 auto 20px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-location {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-btn {
    background: var(--gold);
    color: var(--black);
    padding: 16px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.hero-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    border: 1px solid var(--light-gray);
}

.hero-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 13px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Section Styles */
.section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-gray);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
}

.section-label {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
    color: var(--gold);
}

.service-card p {
    color: var(--light-gray);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.service-card-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.service-card:hover .service-card-btn {
    color: var(--gold-light);
}

/* Before/After */
.before-after {
    background: var(--off-white);
    color: var(--black);
}

.before-after .section-header h2 {
    color: var(--black);
}

.before-after .section-header p {
    color: #666;
}

.before-after-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.before-after-container:last-of-type {
    margin-bottom: 0;
}

.before-after-item {
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 500px;
}

.before-after-item img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.before-after-label {
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
}

.before-after-divider {
    font-size: 48px;
    color: var(--gold);
    font-weight: 700;
}

/* Location / Coverage */
.location-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.location-info p {
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-detail i {
    color: var(--gold);
    font-size: 20px;
    width: 30px;
}

.location-detail span {
    font-size: 16px;
}

.location-map {
    background: var(--gray);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Why us / philosophy cards (reused for trust section) */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.philosophy-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.philosophy-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.philosophy-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--light-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    background: var(--gold);
    color: var(--black);
    text-align: center;
}

.quote-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.quote-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.quote-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quote-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.quote-step-text {
    font-weight: 600;
    font-size: 16px;
    text-align: left;
}

.quote-btn {
    background: var(--black);
    color: var(--gold);
    padding: 16px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* FAQ */
.faq-section {
    background: var(--black-light);
}

.faq-section .section-header h2 {
    font-size: 36px;
}

.faq-item {
    border-bottom: 1px solid var(--gray);
    padding: 25px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--light-gray);
    line-height: 1.7;
}

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

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid var(--gray);
    padding: 60px 50px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 14px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
    text-align: center;
    color: var(--light-gray);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--light-gray);
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Page Header (subpages) */
.page-header {
    min-height: 44vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    margin-top: 0;
    padding: 160px 20px 60px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-header .section-label {
    justify-content: center;
    display: block;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 15px;
    line-height: 1.25;
}

.page-header p {
    font-size: 18px;
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 13px;
    color: var(--light-gray);
    margin-bottom: 18px;
}

.breadcrumbs a {
    color: var(--light-gray);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs .sep {
    margin: 0 8px;
    color: var(--gray);
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--gold);
}

.about-text p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.about-media img,
.about-media video {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 16px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--gold);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--gray);
    border-radius: 12px;
    transition: transform 0.3s;
    text-decoration: none;
    color: var(--white);
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-method i {
    font-size: 26px;
    color: var(--gold);
    width: 36px;
    flex-shrink: 0;
}

.contact-method-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-method-text p {
    font-size: 14px;
    color: var(--light-gray);
}

.contact-form {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--light-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--gray);
    background: var(--black);
    color: var(--white);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--gold-light);
}

.form-success {
    display: none;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid #25D366;
    color: #25D366;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.form-success.show {
    display: block;
}

.form-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--gray);
    border-radius: 10px;
    font-size: 13px;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Gallery */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.gallery-filter button {
    background: var(--dark-gray);
    color: var(--white);
    border: 1px solid var(--gray);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.gallery-filter button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-filter button.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

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

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

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--white);
    font-weight: 600;
}

/* Service Detail Page */
.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-section {
    margin-bottom: 60px;
}

.service-detail-section h2,
.service-detail-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-detail-section p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.service-detail-section ul {
    list-style: none;
    padding: 0;
}

.service-detail-section ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-gray);
    font-size: 15px;
}

.service-detail-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.process-step {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.process-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 15px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--light-gray);
}

.related-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.related-services a {
    background: var(--dark-gray);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    border: 1px solid var(--gray);
}

.related-services a:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.related-services h4 {
    color: var(--gold);
    font-size: 17px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.related-services p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Booking */
.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.booking-info-item {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 16px;
}

.booking-info-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.booking-info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.booking-info-item p {
    color: var(--light-gray);
    font-size: 14px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Call CTA (gold, replaces WhatsApp as primary CTA) */
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.call-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* Floating WhatsApp button (fixed, all pages) */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 1500;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 25px;
        bottom: 16px;
        right: 16px;
    }
}

/* Before / After comparison slider */
.ba-slider {
    max-width: 700px;
    margin: 0 auto;
    -webkit-user-select: none;
    user-select: none;
}

.ba-slider-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ba-slider-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-img-before {
    clip-path: inset(0 50% 0 0);
    will-change: clip-path;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.ba-tag {
    position: absolute;
    top: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(10,10,10,0.65);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.ba-tag-before {
    left: 16px;
}

.ba-tag-after {
    right: 16px;
}

.ba-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 40px;
    background: transparent;
    margin-top: 14px;
    cursor: ew-resize;
}

.ba-range:focus {
    outline: none;
}

.ba-range::-webkit-slider-runnable-track {
    height: 6px;
    background: var(--gray);
    border-radius: 3px;
}

.ba-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -9px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--black);
    cursor: ew-resize;
}

.ba-range::-moz-range-track {
    height: 6px;
    background: var(--gray);
    border-radius: 3px;
}

.ba-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--black);
    cursor: ew-resize;
}

.before-after .ba-range::-webkit-slider-runnable-track {
    background: #ddd;
}

/* Responsive */
@media (max-width: 1024px) {
    .location-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--gray);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 30px;
    }

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

    .before-after-container {
        flex-direction: column;
    }

    .quote-steps {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 130px 20px 50px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .breadcrumbs {
        font-size: 8px;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
        padding-bottom: 2px;
        text-align: left;
    }

    .breadcrumbs .sep {
        margin: 0 5px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 0.6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .animate-in {
        animation: none;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
