/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    /* Color Palette - Green, White & Gray Theme */
    --primary-green: #16a34a;       /* Vibrant Classic Green */
    --primary-green-light: #22c55e;
    --primary-green-dark: #14532d;   /* Deep Forest Green */
    
    --accent-green: #15803d;        /* Strong Accent Green */
    --accent-green-hover: #166534;
    --accent-green-light: #dcfce7;
    
    --accent-gold: #f59e0b;         /* Google Review Star Gold */
    
    --pure-white: #ffffff;
    --body-white: #f8fafc;
    --card-white: #ffffff;
    
    --gray-dark: #1e293b;           /* Slate / Dark Charcoal Gray */
    --gray-darker: #0f172a;         /* Deepest Charcoal Gray */
    --gray-medium: #64748b;         /* Medium Slate Gray */
    --gray-light: #f1f5f9;          /* Light Gray Background */
    
    --text-dark: #0f172a;           /* Charcoal text */
    --text-muted: #64748b;          /* Muted grey */
    --text-light: #f8fafc;          /* Light grey text for dark backgrounds */
    
    --border-light: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Backwards compatibility aliases */
    --primary-blue: var(--primary-green);
    --primary-blue-light: var(--primary-green-light);
    --primary-blue-dark: var(--gray-darker);
    
    --accent-red: var(--primary-green);
    --accent-red-hover: var(--accent-green-hover);
    --accent-red-light: var(--accent-green-light);
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Decoration & Transitions */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(22, 163, 74, 0.08);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   GLOBAL RESET & INITIAL BASE LAYOUT
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul {
    list-style: none;
}

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

/* Common SVG Icons */
.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.icon-red,
.icon-green {
    color: var(--primary-green);
}

.icon-blue,
.icon-gray {
    color: var(--gray-medium);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-red, .text-green { color: var(--primary-green); }
.text-blue, .text-gray { color: var(--gray-dark); }

/* ==========================================================================
   BUTTONS STYLING
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-blue,
.btn-green {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

.btn-blue:hover,
.btn-green:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.btn-red {
    background-color: var(--accent-green);
    color: var(--pure-white);
}

.btn-red:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}

.btn-gray {
    background-color: var(--gray-medium);
    color: var(--pure-white);
}

.btn-gray:hover {
    background-color: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--pure-white);
    border-color: var(--pure-white);
}

.btn-outline-white:hover {
    background-color: var(--pure-white);
    color: var(--gray-darker);
    transform: translateY(-2px);
}

.btn-icon .icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   TOP INFO BAR (PRE-HEADER)
   ========================================================================== */
.top-info-bar {
    background-color: var(--gray-darker);
    color: var(--text-light);
    font-size: 0.85rem;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary-green);
    position: relative;
    z-index: 100;
}

.top-info-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover {
    color: var(--primary-green-light);
    text-decoration: underline;
}

.status-indicator {
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.status-indicator.closed {
    background-color: var(--gray-medium);
    color: var(--pure-white);
}

.status-indicator.open {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

/* ==========================================================================
   MAIN NAVIGATION HEADER
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

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

/* Brand Logo (Green, White & Gray Theme) */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-stripe-container {
    display: flex;
    flex-direction: column;
    width: 28px;
    height: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.logo-stripe-container .stripe {
    flex: 1;
}

.green-stripe, .blue-stripe { background-color: var(--primary-green); }
.white-stripe { background-color: var(--pure-white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.gray-stripe, .red-stripe { background-color: var(--gray-medium); }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    color: var(--gray-darker);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary-green);
}

/* Navbar Links */
.desktop-navbar {
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-dark);
    padding: 8px 0;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-green);
    transition: var(--transition-smooth);
}

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

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

/* Header CTAs */
.nav-action-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* Hamburger toggle for Mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-menu .line {
    width: 100%;
    height: 3px;
    background-color: var(--gray-darker);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.hamburger-menu.active .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer & Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 97;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: calc(var(--header-height) + var(--topbar-height) - 2px);
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - var(--header-height) - var(--topbar-height));
    background-color: var(--gray-darker);
    box-shadow: var(--shadow-lg);
    z-index: 98;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 24px;
}

.mobile-drawer-header .logo-title {
    color: var(--pure-white);
    font-size: 1.15rem;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: var(--pure-white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.drawer-close-btn:hover {
    color: var(--primary-green-light);
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mob-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-white);
    display: block;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 12px;
}

.mob-link:hover {
    color: var(--primary-green-light);
    padding-left: 8px;
}

.mobile-drawer-footer {
    color: var(--text-light);
}

.mobile-drawer-footer p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background-image: url('img/hero_garage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--pure-white);
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 83, 45, 0.85) 60%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.badge-trust {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.badge-trust .icon {
    width: 14px;
    height: 14px;
    color: var(--primary-green-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-title {
    color: var(--primary-green-light);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: var(--text-light);
    font-weight: 300;
}

.hero-review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-review-badge .stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.hero-review-badge .rating-text {
    font-size: 1rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-cta-btn {
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
}

/* Side Info Box / Hours Card */
.working-hours-card {
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--pure-white);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.working-hours-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 12px;
}

.hours-status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.badge-status-closed {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.badge-status-open {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.opening-hours-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-dark);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li.weekend {
    color: var(--text-muted);
}

/* ==========================================================================
   QUICK NAVIGATION ACTIONS SECTION
   ========================================================================== */
.quick-navigation-buttons-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    background-color: var(--card-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-green);
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    border-radius: var(--radius-md);
    background-color: #f8fafc;
    border: 1px solid var(--border-light);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background-color: var(--pure-white);
    border-color: var(--primary-green);
}

.action-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--pure-white);
    box-shadow: var(--shadow-sm);
}

.action-icon-circle svg {
    width: 24px;
    height: 24px;
}

.action-card span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-darker);
    margin-bottom: 4px;
    display: block;
}

.action-card small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Color variations for action buttons */
.blue-bg, .green-bg { background-color: var(--primary-green); }
.red-bg, .gray-bg { background-color: var(--gray-dark); }
.gold-bg { background-color: var(--accent-gold); }
.white-blue-bg, .white-green-bg { background-color: var(--pure-white); border: 2px solid var(--primary-green); color: var(--primary-green); }
.white-blue-bg svg, .white-green-bg svg { color: var(--primary-green); }
.white-red-bg, .white-gray-bg { background-color: var(--pure-white); border: 2px solid var(--gray-dark); color: var(--gray-dark); }
.white-red-bg svg, .white-gray-bg svg { color: var(--gray-dark); }

/* ==========================================================================
   COMMON SECTION HEADERS
   ========================================================================== */
.services-section {
    padding: 100px 0;
}

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

.section-header.text-center {
    text-align: center;
}

.section-header .subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-header .title {
    font-size: 2.25rem;
    color: var(--gray-darker);
    font-weight: 800;
}

.accent-lines {
    display: flex;
    gap: 4px;
    margin-top: 14px;
}

.accent-lines.centered {
    justify-content: center;
}

.accent-lines span {
    height: 4px;
    border-radius: var(--radius-full);
}

.accent-lines .line-blue, .accent-lines .line-green {
    width: 60px;
    background-color: var(--primary-green);
}

.accent-lines .line-red, .accent-lines .line-gray {
    width: 24px;
    background-color: var(--gray-medium);
}

/* ==========================================================================
   SERVICES GRID STYLING
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--card-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--gray-medium);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    background-color: var(--primary-green);
    width: 10px;
}

.service-icon-bg {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gray-darker);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-bg {
    background-color: var(--accent-green-light);
    color: var(--primary-green);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.3rem;
    color: var(--gray-darker);
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    min-height: 80px;
}

.service-features {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.service-features li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '▪';
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* ==========================================================================
   APPOINTMENT SIMULATOR SECTION
   ========================================================================== */
.appointment-section {
    padding: 100px 0;
    background-color: var(--gray-darker);
    color: var(--pure-white);
}

.appointment-wrapper {
    position: relative;
}

.appointment-decor-stripe {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-green) 0%, var(--gray-medium) 50%, var(--pure-white) 100%);
    position: absolute;
    top: -100px;
    left: 0;
    display: none;
}

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

.appointment-info-side {
    max-width: 500px;
}

.accent-badge-red, .accent-badge-green {
    background-color: var(--primary-green);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.appointment-info-side h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.appointment-info-side p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

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

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

.highlight-item .h-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.info-card-tel {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-card-tel span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.tel-call-action {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pure-white);
}

.tel-call-action:hover {
    color: var(--primary-green-light);
}

/* Appointment Form Card */
.appointment-form-card {
    background-color: var(--card-white);
    border-radius: var(--radius-lg);
    padding: 44px;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Top accent tag on form card */
.appointment-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--primary-green);
}

.form-card-title {
    font-size: 1.4rem;
    color: var(--gray-darker);
    margin-bottom: 24px;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.progress-step.active {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

.progress-step.completed {
    background-color: var(--primary-green-light);
    color: var(--pure-white);
}

.progress-line {
    flex: 1;
    height: 3px;
    background-color: var(--border-light);
    margin: 0 12px;
    max-width: 120px;
}

.progress-line.completed {
    background-color: var(--primary-green-light);
}

/* Step content visibility */
.form-step-pane {
    display: none;
}

.form-step-pane.active {
    display: block;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-darker);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    background-color: var(--body-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    background-color: var(--pure-white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.form-group input.error-input,
.form-group select.error-input {
    border-color: #ef4444;
}

.error-msg {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 600;
}

.price-estimator-box {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-estimator-box span {
    font-size: 0.85rem;
    color: #166534;
}

.estimated-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem !important;
    color: #15803d !important;
}

.price-estimator-box small {
    font-size: 0.75rem;
    color: #166534;
    text-align: center;
}

.form-actions-split {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.form-actions-split .btn {
    flex: 1;
}

/* Success Card Screen */
.booking-success-box {
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

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

.success-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #d1fae5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon-badge svg {
    width: 32px;
    height: 32px;
}

.booking-success-box h3 {
    font-size: 1.6rem;
    color: var(--gray-darker);
    margin-bottom: 8px;
}

.success-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.summary-card {
    background-color: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 8px;
}

.summary-card p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.verification-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
    padding: 100px 0;
    background-color: #f1f5f9;
}

.reviews-trust-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    background-color: var(--card-white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.stars-large {
    color: var(--accent-gold);
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1;
}

.score-large {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--gray-darker);
    margin: 8px 0;
}

.score-large span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.review-count-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Testimonial slider layout */
.slider-outer-container {
    max-width: 750px;
    margin: 50px auto 0;
    position: relative;
}

.reviews-slider {
    position: relative;
    min-height: 200px;
}

.review-card {
    background-color: var(--card-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.review-card.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gray-darker);
}

.review-stars {
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-date-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Slider buttons and navigation indicators */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-arrow {
    background-color: var(--pure-white);
    border: 1px solid var(--border-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--gray-darker);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--primary-green);
    color: var(--pure-white);
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background-color: var(--primary-green);
    width: 20px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   LOCATION, DETAILED INFORMATION & MOCKED MAP
   ========================================================================== */
.location-section {
    padding: 100px 0;
    background-color: var(--pure-white);
}

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

.contact-details-side {
    max-width: 500px;
}

.accent-badge-blue, .accent-badge-gray {
    background-color: var(--gray-dark);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-details-side h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: var(--gray-darker);
}

.detail-blocks {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.detail-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-content h3 {
    font-size: 1.15rem;
    color: var(--gray-darker);
    margin-bottom: 6px;
}

.detail-content p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.underline-link {
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: underline;
    font-size: 0.9rem;
}

.underline-link:hover {
    color: var(--accent-green-hover);
}

.tel-number-medium {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-darker);
}

.tel-number-medium:hover {
    color: var(--primary-green);
}

.dark-bg {
    background-color: var(--gray-darker);
}

/* Custom Interactive Mock Map Outer Wrapper */
.map-card-wrapper {
    background-color: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.map-toolbar {
    background-color: #f8fafc;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-title-bar {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-darker);
    font-family: var(--font-heading);
}

.map-actions {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-pulse {
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Map screen space */
.svg-map-container {
    position: relative;
    background-color: #f4f6f8;
    height: 320px;
    overflow: hidden;
}

.custom-vector-map {
    width: 100%;
    height: 100%;
    display: block;
}

/* Pulsing street pin overlay */
.map-pin-group .pulse-ring {
    transform-origin: center;
    animation: ringGlow 2.5s infinite;
}

@keyframes ringGlow {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.map-overlay-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: var(--shadow-md);
    width: 80%;
    max-width: 260px;
    text-align: center;
}

.map-overlay-button .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--gray-darker);
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.90fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand-pane {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-logo .logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--pure-white);
    letter-spacing: 0.5px;
}

.footer-logo .logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-green);
    letter-spacing: 3.5px;
}

.brand-pitch {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.decor-stripes-footer {
    display: flex;
    gap: 4px;
    width: 80px;
    height: 4px;
}

.decor-stripes-footer .dst {
    flex: 1;
    height: 100%;
    border-radius: var(--radius-full);
}

.decor-stripes-footer .stripe-blue, .decor-stripes-footer .stripe-green { background-color: var(--primary-green); }
.decor-stripes-footer .stripe-red, .decor-stripes-footer .stripe-gray { background-color: var(--gray-medium); }

.footer-links-pane h3,
.footer-contact-pane h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--pure-white);
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 8px;
}

.footer-links-pane h3::after,
.footer-contact-pane h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-green);
}

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

.footer-links-pane a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-pane a:hover {
    color: var(--pure-white);
    padding-left: 6px;
}

.footer-contact-pane p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-contact-pane a:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

.footer-bottom-bar {
    background-color: #090d16;
    border-top: 1px solid var(--border-dark);
    padding: 24px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legal-nav {
    display: flex;
    gap: 16px;
}

.legal-nav a:hover {
    color: var(--pure-white);
}

/* ==========================================================================
   TOAST POPUP NOTIFICATION (GENERAL/SHARE UTILITY)
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gray-darker);
    border-bottom: 3px solid var(--primary-green);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 14px 28px;
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    max-width: 90%;
    width: auto;
}

.toast-notification.show {
    bottom: 24px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pure-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.toast-icon {
    background-color: var(--primary-green);
    color: var(--pure-white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (MEDIA QUERIES)
   ========================================================================== */

/* 1024px Screen Width (Tablets Landscape & Laptops) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .action-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        padding: 16px;
    }
    
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .appointment-info-side {
        max-width: 100%;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-details-side {
        max-width: 100%;
    }
}

/* 768px Screen Width (Tablets Portrait / Large Phones) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .top-info-grid {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 4px 12px;
    }
    
    .top-info-bar {
        height: auto;
        padding: 6px 0;
    }
    
    .desktop-navbar {
        display: none;
    }
    
    .nav-cta {
        display: none; /* In mobile drawer instead */
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .badge-trust {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-review-badge {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .action-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: -20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .appointment-form-card {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .slider-outer-container {
        padding: 0 16px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* 480px Screen Width (Small Phones) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #action-share {
        grid-column: span 2;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .slider-controls {
        gap: 12px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   ADMINISTRATION DASHBOARD & LOGIN MODAL STYLES
   ========================================================================== */
.admin-link {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.admin-link:hover {
    color: var(--primary-green) !important;
}

.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.admin-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.admin-modal-box {
    background-color: var(--card-white);
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border-top: 4px solid var(--primary-green);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.admin-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
}

.admin-modal-header h3 {
    font-size: 1.4rem;
    color: var(--gray-darker);
    margin-bottom: 4px;
}

.admin-modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.admin-hint {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Full Admin Dashboard Box */
.admin-dashboard-box {
    background-color: var(--body-white);
    border-radius: var(--radius-lg);
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--primary-green);
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.admin-dashboard-header h2 {
    font-size: 1.6rem;
    color: var(--gray-darker);
}

.admin-dashboard-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background-color: var(--card-white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-darker);
}

.stat-num.text-gold { color: var(--accent-gold); }
.stat-num.text-green { color: var(--primary-green); }

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

/* Appointments Data Table */
.table-responsive-wrapper {
    overflow-x: auto;
    background-color: var(--card-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.admin-citas-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-citas-table th {
    background-color: #f1f5f9;
    color: var(--gray-darker);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 16px;
    border-bottom: 2px solid var(--border-light);
    white-space: nowrap;
}

.admin-citas-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
    vertical-align: middle;
}

.admin-citas-table tbody tr:hover {
    background-color: #f8fafc;
}

.badge-status {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-status.pendiente {
    background-color: #fef3c7;
    color: #b45309;
}

.badge-status.confirmada {
    background-color: #d1fae5;
    color: #047857;
}

.badge-status.cancelada {
    background-color: #fee2e2;
    color: #b91c1c;
}

.btn-action-icon {
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-action-icon:hover {
    background-color: var(--primary-green);
    color: var(--pure-white);
}

/* Webhook Setup Guide Container */
.webhook-config-box {
    margin-top: 28px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    padding: 24px;
}

.webhook-config-box h4 {
    color: #166534;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.webhook-config-box p {
    color: #15803d;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.webhook-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.webhook-input-group input {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid #86efac;
}

.webhook-guide {
    font-size: 0.82rem;
    color: #166534;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 14px;
    border-radius: var(--radius-sm);
}

.webhook-guide ol {
    margin-left: 18px;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .admin-dashboard-box {
        padding: 20px;
    }
    .webhook-input-group {
        flex-direction: column;
    }
}

/* ==========================================================================
   LEGAL PAGES STYLING (Aviso Legal, Privacidad, Cookies)
   ========================================================================== */
.legal-hero {
    background: linear-gradient(135deg, var(--gray-darker) 0%, var(--gray-dark) 100%);
    padding: 60px 0 40px 0;
    color: var(--pure-white);
    position: relative;
    border-bottom: 3px solid var(--primary-green);
}

.legal-hero-content {
    max-width: 800px;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.legal-breadcrumb a {
    color: #cbd5e1;
    transition: var(--transition-smooth);
}

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

.legal-breadcrumb .separator {
    color: #64748b;
}

.legal-hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--pure-white);
}

.legal-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.5;
}

.legal-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background-color: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-green-light);
    font-size: 0.82rem;
    font-weight: 600;
}

.legal-main-container {
    padding: 50px 0 80px 0;
    background-color: var(--body-white);
}

.legal-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Legal Table of Contents / Sidebar Nav */
.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--card-white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.legal-sidebar h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-darker);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green-light);
}

.legal-toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-toc-list a {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    padding: 4px 0;
}

.legal-toc-list a:hover {
    color: var(--primary-green);
    transform: translateX(4px);
}

.legal-toc-list a::before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
}

/* Legal Content Body */
.legal-content-card {
    background-color: var(--card-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.legal-section {
    margin-bottom: 36px;
    scroll-margin-top: 100px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-darker);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--accent-green-light);
    color: var(--primary-green-dark);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.legal-text {
    font-size: 0.96rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-list {
    margin-left: 24px;
    margin-bottom: 16px;
    color: #334155;
    font-size: 0.96rem;
}

.legal-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-highlight-box {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-green);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px;
    margin: 20px 0;
}

.legal-highlight-box h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-darker);
    margin-bottom: 8px;
}

.legal-highlight-box p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* Legal Table */
.legal-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.legal-table th {
    background-color: var(--gray-darker);
    color: var(--pure-white);
    padding: 12px 16px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: #334155;
}

.legal-table tr:nth-child(even) td {
    background-color: #f8fafc;
}

.legal-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 992px) {
    .legal-layout-grid {
        grid-template-columns: 1fr;
    }
    .legal-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .legal-content-card {
        padding: 24px 18px;
    }
    .legal-hero-title {
        font-size: 1.7rem;
    }
    .legal-action-bar {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
}

