/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES - LIGHT RED THEME
   ---------------------------------------------------- */
:root {
    /* Color Palette - Vibrant Red & Clean Light Theme */
    --primary-hsl: 354, 85%, 52%;
    --primary: hsl(var(--primary-hsl));
    --primary-hover: hsl(354, 85%, 45%);
    --primary-light: hsl(354, 100%, 96%); /* For soft red alerts/badges */
    
    --secondary-hsl: 12, 95%, 55%;
    --secondary: hsl(var(--secondary-hsl));
    --secondary-glow: rgba(255, 47, 85, 0.15);
    
    --dark-hsl: 220, 24%, 12%;
    --dark: hsl(var(--dark-hsl));
    --dark-card: hsl(220, 20%, 97%);
    --dark-text: hsl(220, 20%, 20%);
    
    --light-bg: hsl(0, 0%, 98%);
    --white: #ffffff;
    --muted: hsl(220, 10%, 48%);
    --border: hsl(220, 12%, 91%);
    
    --whatsapp: hsl(142, 70%, 43%);
    --whatsapp-hover: hsl(142, 70%, 38%);
    
    /* Gradients */
    --grad-hero: linear-gradient(135deg, hsl(354, 100%, 97%) 0%, hsl(210, 20%, 98%) 100%);
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, hsl(354, 90%, 42%) 100%);
    --grad-accent: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.75) 100%);
    --grad-booking: linear-gradient(135deg, hsl(354, 100%, 96%) 0%, hsl(210, 20%, 98%) 100%);
    
    /* Shadows & Borders */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(180, 20, 40, 0.06);
    --shadow-lg: 0 16px 40px rgba(180, 20, 40, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 47, 85, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Header */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px auto;
}

.section-header .sub-title {
    display: inline-block;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-header .title {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header .desc {
    color: var(--muted);
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--grad-accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 47, 85, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(255, 47, 85, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark-text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--dark-text);
    border: 2px solid var(--border);
}

.btn-outline-light:hover {
    background: var(--light-bg);
    border-color: var(--muted);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.35);
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#main-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

#site-logo {
    max-height: 58px; /* Larger logo */
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

#main-header.scrolled #site-logo {
    max-height: 48px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 600; /* Thicker font weight */
    font-size: 16px; /* Slightly larger size */
    color: var(--dark); /* Rich contrast color */
    position: relative;
    padding: 8px 0;
}

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

.nav-item:hover {
    color: var(--primary);
}

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

.booking-nav-btn {
    background: var(--grad-accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 47, 85, 0.15);
}

.booking-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.booking-nav-btn::after {
    display: none;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--dark-text);
    transition: var(--transition);
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
    position: relative;
    background: var(--grad-hero);
    padding: 180px 0 120px 0;
    color: var(--dark-text);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 30%, rgba(255, 47, 85, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .badge {
    background: var(--primary-light);
    border: 1px solid rgba(255, 47, 85, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
    width: 100%;
}

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

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 13px;
    color: var(--muted);
}

/* Floating Hero Image Animation */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

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

.hero-image-blur-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.wave-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    clip-path: ellipse(60% 80% at 50% 100%);
    z-index: 3;
}

/* ----------------------------------------------------
   UNITS SECTION (TABBED FILIALS)
   ---------------------------------------------------- */
.units-section {
    padding: 100px 0;
    background-color: var(--white);
}

.unit-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-text);
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--grad-accent);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(255, 47, 85, 0.3);
}

.unit-content-card {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.unit-content-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.unit-details {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.unit-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.unit-details h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 16px;
    color: var(--dark);
}

.unit-intro {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

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

.info-desc strong {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.info-desc span {
    color: var(--muted);
    font-size: 15px;
}

.unit-actions {
    display: flex;
    gap: 16px;
}

/* Map Card */
.map-card-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 240, 242, 0.98) 100%), url('hero-inspection.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    padding: 32px;
    text-align: center;
}

.map-placeholder.jundiai-map-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 240, 242, 0.98) 100%) center/cover no-repeat;
}

.map-placeholder i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.map-placeholder span {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-placeholder small {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.map-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(255, 47, 85, 0.2);
}

.map-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 47, 85, 0.3);
}

/* ----------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------- */
.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 47, 85, 0.25);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 26px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--grad-accent);
    color: var(--white);
    box-shadow: 0 8px 16px rgba(255, 47, 85, 0.25);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    width: 100%;
}

.service-features li {
    font-size: 14px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--primary);
    font-size: 12px;
}

.service-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .service-link {
    color: var(--primary-hover);
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ----------------------------------------------------
   ABOUT US SECTION
   ---------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

/* Visual Decoration */
.about-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 47, 85, 0.02) 0%, rgba(255, 47, 85, 0.05) 100%), url('hero-inspection.png') center/cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.badge-wrapper {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 2;
}

.experience-badge {
    background: var(--grad-accent);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 24px rgba(255, 47, 85, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-badge .years {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.experience-badge .year-val {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.about-text-content .sub-title {
    display: inline-block;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.about-text-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 24px;
    color: var(--dark);
    line-height: 1.2;
}

.about-text-content p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 18px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-item h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.bullet-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ----------------------------------------------------
   SMART BOOKING SECTION (INTEGRATION FORM)
   ---------------------------------------------------- */
.booking-section {
    padding: 100px 0;
    background: var(--grad-booking);
    color: var(--dark-text);
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 80%, rgba(255, 47, 85, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.booking-form-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.booking-badge {
    background: var(--primary-light);
    border: 1px solid rgba(255, 47, 85, 0.15);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.booking-form-info h2 {
    color: var(--dark);
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.booking-form-info p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.booking-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quick-item i {
    font-size: 32px;
    color: var(--whatsapp);
}

.quick-item div {
    display: flex;
    flex-direction: column;
}

.quick-item span {
    font-size: 13px;
    color: var(--muted);
}

.quick-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: var(--dark);
}

/* Form Styles */
.booking-form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 12px;
}

.form-group input, 
.form-group select {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
    outline: none;
    transition: var(--transition);
}

.form-group select option {
    background-color: var(--white);
    color: var(--dark-text);
}

.form-group input::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 12px rgba(255, 47, 85, 0.15);
}

.btn-submit-whatsapp {
    width: 100%;
    margin-top: 16px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 16px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-submit-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.booking-status-msg {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    animation: statusFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes statusFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-status-msg.success {
    background-color: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.25);
    color: #1a7f37;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.05);
}

.booking-status-msg.error {
    background-color: rgba(225, 47, 85, 0.08);
    border-color: rgba(225, 47, 85, 0.2);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(225, 47, 85, 0.05);
}

.booking-status-msg.loading {
    background-color: var(--light-bg);
    border-color: var(--border);
    color: var(--dark-text);
}

/* Estado desativado para o botão durante o envio */
.btn-submit-whatsapp:disabled {
    background: #cbd5e1 !important;
    color: #64748b !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stars {
    color: #ffb700;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-style: italic;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--dark);
}

.author span {
    font-size: 13px;
    color: var(--muted);
}

/* ----------------------------------------------------
   FOOTER (GROUNDING THE PAGE WITH SLEEK CONTRAST)
   ---------------------------------------------------- */
footer {
    background: #16181d;
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-height: 52px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1); /* Ensure logo is white on dark footer background */
}

.brand-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--grad-accent);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 47, 85, 0.25);
}

.links-col h5, 
.branches-col h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.branches-col ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branches-col li {
    font-size: 14px;
    line-height: 1.5;
}

.branches-col strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 13px;
    background: #0f1013;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----------------------------------------------------
   RESPONSIVENESS & MEDIA QUERIES
   ---------------------------------------------------- */
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .unit-details {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }
    
    .map-card-wrapper {
        min-height: 280px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        height: 320px;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .brand-col {
        grid-column: span 2;
    }
    
    /* Navigation responsive mobile menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        display: none;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .nav-item {
        display: block;
        padding: 10px 0;
        text-align: center;
        color: var(--dark-text);
    }
    
    .booking-nav-btn {
        display: block;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: space-between;
    }
    
    .unit-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .unit-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .unit-actions .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-col {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ----------------------------------------------------
   FAQ SECTION (ACCORDION)
   ---------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 47, 85, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question i {
    font-size: 16px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------------------
   INTERACTIVE CHECKLIST & X-RAY SECTION
   ---------------------------------------------------- */
.checklist-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.xray-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.xray-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.xray-card:hover {
    box-shadow: var(--shadow-md);
}

.xray-img-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.xray-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Simulated X-Ray filter */
.filter-xray {
    filter: saturate(1.8) contrast(1.2) hue-rotate(330deg) brightness(0.9);
}

.xray-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.tag-good {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-text);
}

.tag-danger {
    background-color: var(--primary);
    color: var(--white);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 47, 85, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255, 47, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 47, 85, 0); }
}

/* Floating interactive danger points */
.xray-point {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.pulse-ring {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 10px rgba(255, 47, 85, 0.8);
    animation: ring 1.5s ease-out infinite;
}

@keyframes ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.point-lbl {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1b2434;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.xray-point:hover .point-lbl {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.xray-desc h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.xray-desc p {
    color: var(--muted);
    font-size: 15px;
    margin: 0;
}

/* Checklist Interactive tabs */
.checklist-interactive {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.checklist-title {
    font-size: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.checklist-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.check-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-text);
    cursor: pointer;
    transition: var(--transition);
}

.check-tab-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.check-tab-btn.active {
    background: var(--grad-accent);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(255, 47, 85, 0.25);
}

.check-content-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.check-content-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.check-item-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.check-item-box i {
    font-size: 20px;
    color: var(--whatsapp);
    margin-top: 2px;
}

.check-item-box h5 {
    font-size: 16px;
    margin-bottom: 6px;
}

.check-item-box p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* ----------------------------------------------------
   LOJISTAS & PARCEIROS SECTION
   ---------------------------------------------------- */
.dealers-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.dealers-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.dealers-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.dealers-text p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 36px;
}

.perks-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.perk-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.perk-box i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-box h5 {
    font-size: 17px;
    margin-bottom: 4px;
}

.perk-box p {
    font-size: 14px;
    margin: 0;
}

.dealers-ctas {
    display: flex;
    gap: 16px;
}

.dealers-visual {
    background: linear-gradient(135deg, rgba(255, 47, 85, 0.03) 0%, rgba(255, 47, 85, 0.08) 100%), url('hero-inspection.png') center/cover no-repeat;
    height: 440px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.dealers-visual-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.dealers-visual-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.dealers-visual-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.dealers-visual-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.dealers-stars {
    color: #ffb700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .xray-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .check-grid {
        grid-template-columns: 1fr;
    }
    
    .checklist-interactive {
        padding: 24px;
    }
    
    .dealers-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dealers-visual {
        height: 360px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .check-tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dealers-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .dealers-ctas .btn {
        width: 100%;
    }
}

/* ====================================================
   SERVICE PAGES STYLING
   ==================================================== */
.breadcrumb {
    padding: 24px 0;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: var(--muted);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--muted);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
    opacity: 0.6;
}

.breadcrumb span {
    color: var(--primary);
}

.service-hero-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 240, 242, 0.98) 100%), url('hero-inspection.png') center/cover no-repeat;
    border-bottom: 1px solid var(--border);
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
}

.service-hero-badge {
    background: var(--primary-light);
    border: 1px solid rgba(255, 47, 85, 0.15);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-hero-content p.service-tagline {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding: 80px 0;
}

.service-details-content {
    display: flex;
    flex-direction: column;
}

.service-details-content h3 {
    font-size: 26px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-details-content h3 i {
    color: var(--primary);
}

.service-details-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.documents-card {
    background: var(--light-bg);
    border: 1px dashed var(--primary);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-top: 32px;
    box-shadow: var(--shadow-sm);
}

.documents-card h4 {
    color: var(--primary);
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.documents-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.documents-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-text);
}

.documents-card li i {
    color: var(--primary);
    font-size: 14px;
}

.checklist-items-box {
    margin-top: 48px;
}

.checklist-items-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
}

.items-checked-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.item-checked-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
}

.item-checked-card i {
    color: #25d366;
    font-size: 16px;
}

.sidebar-cta-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-cta-box h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
}

.sidebar-cta-box p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.sidebar-features li {
    font-size: 14px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-features li i {
    color: var(--primary);
    font-size: 12px;
}

@media (max-width: 991px) {
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar-cta-box {
        position: relative;
        top: 0;
    }
    
    .service-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .service-hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .items-checked-grid {
        grid-template-columns: 1fr;
    }
}

