/* ========================================
   LEMUS GARAGE DOOR SERVICES - MAIN STYLESHEET
   Red & Blue Professional Theme
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Red */
    --red-primary: #E53935;
    --red-light: #FF5722;
    --red-dark: #C62828;
    --red-gradient: linear-gradient(135deg, #E53935 0%, #FF5722 50%, #C62828 100%);

    /* Secondary Colors - Blue */
    --blue-primary: #1565C0;
    --blue-light: #2196F3;
    --blue-dark: #0D47A1;
    --blue-gradient: linear-gradient(135deg, #1565C0 0%, #2196F3 50%, #0D47A1 100%);

    /* Dark Colors */
    --bg-dark: #0a0a12;
    --bg-secondary: #12141c;
    --bg-card: #1a1c28;
    --bg-card-hover: #22242e;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;

    /* Accent Colors */
    --accent-red: rgba(229, 57, 53, 0.1);
    --accent-red-border: rgba(229, 57, 53, 0.3);
    --accent-blue: rgba(21, 101, 192, 0.1);
    --accent-blue-border: rgba(21, 101, 192, 0.3);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1400px;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-red: 0 0 30px rgba(229, 57, 53, 0.3);
    --shadow-blue: 0 0 30px rgba(21, 101, 192, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--red-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--red-light);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.text-gold,
.text-red {
    color: var(--red-primary);
}

.text-gradient {
    background: linear-gradient(135deg, #E53935 0%, #FF5722 50%, #1565C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-red {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--red-gradient);
    color: #fff;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(229, 57, 53, 0.5);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
    background: var(--blue-primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img,
.logo-img {
    height: 110px; /* 2x bigger for desktop */
    width: auto;
    max-width: 400px; /* Increased max-width to accommodate larger logo */
    object-fit: contain;
    transition: height 0.3s ease; /* Smooth transition for scrolling effects */
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-gradient);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--red-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--red-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: var(--accent-red);
    border: 1px solid var(--accent-red-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--red-primary);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--red-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(15px); }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-red);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red-border);
    box-shadow: var(--shadow-red);
}

.service-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
}

.service-card-content {
    padding: 30px;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-icon i {
    font-size: 1.5rem;
    color: var(--red-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.service-card-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
    transform: translateY(-50%);
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border-radius: 20px;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.why-card:hover {
    border-color: var(--accent-red-border);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-red);
}

.why-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.why-card h4 {
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i.fa-expand {
    font-size: 3rem;
    color: var(--red-primary);
    margin-top: 20px;
    transform: scale(0.5);
    transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay i.fa-expand {
    transform: scale(1);
}

/* Project Info Overlay */
.project-info {
    width: 100%;
    text-align: left;
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: var(--red-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.project-location i {
    color: var(--red-primary);
    font-size: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--accent-red-border);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: var(--accent-red);
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--red-primary);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--red-primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== SERVICE AREAS SECTION ===== */
.areas-section {
    background: var(--bg-secondary);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.area-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.area-item i {
    color: var(--red-primary);
    font-size: 1.2rem;
}

.area-item span {
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--accent-red-border);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
}

.footer-brand {
    text-align: center;
}

.footer-brand .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.footer-brand p {
    margin: 20px auto;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--accent-blue);
    border: 1px solid rgba(21, 101, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
}

.footer-social a i {
    color: var(--blue-primary);
    font-size: 1.1rem;
}

.footer-social a:hover i {
    color: #fff;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--red-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--red-primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--red-primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-item span {
    color: var(--text-secondary);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--red-primary);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--accent-red-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px var(--accent-red);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 200px 0 120px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.9) 0%, rgba(18, 20, 28, 0.85) 50%, rgba(10, 10, 18, 0.9) 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(21, 101, 192, 0.08) 0%, transparent 40%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.page-header .float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.page-header .float-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.page-header .float-icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.page-header .float-icon-2 { top: 30%; right: 12%; animation-delay: 1s; }
.page-header .float-icon-3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.page-header .float-icon-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-15px); opacity: 0.9; }
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb span {
    color: var(--red-primary);
}

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    width: 70px;
    height: 70px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: var(--transition-medium);
    border: none;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button i {
    font-size: 1.8rem;
    color: var(--bg-dark);
}

.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: var(--red-gradient);
    padding: 25px;
    color: var(--bg-dark);
}

.chat-header h4 {
    margin-bottom: 5px;
    color: var(--bg-dark);
}

.chat-header p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.chat-body {
    padding: 25px;
}

.chat-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-action {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    width: 100%;
    text-align: left;
}

.chat-action:hover {
    background: var(--accent-red);
}

.chat-action i {
    width: 40px;
    height: 40px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.chat-action span {
    font-weight: 500;
    color: var(--text-primary);
}

/* ===== FINANCING BANNER ===== */
.financing-banner {
    background: var(--red-gradient);
    padding: 30px 0;
}

.financing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.financing-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.financing-text i {
    font-size: 2.5rem;
    color: var(--bg-dark);
}

.financing-text h4 {
    color: var(--bg-dark);
    margin-bottom: 5px;
}

.financing-text p {
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.financing-banner .btn {
    background: var(--bg-dark);
    color: var(--red-primary);
}

.financing-banner .btn:hover {
    background: var(--bg-secondary);
}

/* =============================================
   PROMOTIONAL SECTION STYLES
   ============================================= */

.promo-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promo-badge {
    background: linear-gradient(135deg, var(--red-primary), #b91c1c);
    animation: pulse 2s ease-in-out infinite;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.promo-card:hover::before {
    transform: scaleX(1);
}

.promo-card.featured {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
    transform: scale(1.02);
}

.promo-card.featured::before {
    background: linear-gradient(90deg, var(--red-primary), #ef4444);
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.promo-card.featured:hover {
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

.promo-badge-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.promo-badge-corner.hot {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.promo-badge-corner.popular {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.promo-badge-corner.premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.promo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--blue-primary), #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.promo-card.featured .promo-icon {
    background: linear-gradient(135deg, var(--red-primary), #991b1b);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.promo-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
    z-index: -1;
    opacity: 0.3;
    animation: rotate 3s linear infinite;
}

.promo-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-price {
    margin: 25px 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--red-primary);
    margin-top: 10px;
}

.price-amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--red-primary), #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 55px;
    font-weight: 600;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
    flex-grow: 1;
}

.promo-features li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-features li:last-child {
    border-bottom: none;
}

.promo-features i {
    color: var(--blue-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.promo-card.featured .promo-features i {
    color: var(--red-primary);
}

.btn-promo,
.btn-promo-secondary {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-promo {
    background: linear-gradient(135deg, var(--red-primary), #b91c1c);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #ef4444, var(--red-primary));
}

.btn-promo-secondary {
    background: linear-gradient(135deg, var(--blue-primary), #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-promo-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6, var(--blue-primary));
}

.promo-disclaimer {
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Trust Bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.trust-item i {
    font-size: 24px;
    color: var(--red-primary);
}

.trust-item span {
    font-size: 15px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =============================================
   FAQ SECTION STYLES
   ============================================= */

.faq-section {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
}

.faq-item.active {
    border-color: var(--blue-primary);
    box-shadow: 0 5px 25px rgba(37, 99, 235, 0.2);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--blue-light);
}

.faq-question i {
    color: var(--blue-primary);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--red-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* =============================================
   REVIEWS & MAP SECTION STYLES
   ============================================= */

.reviews-map-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0d0d0d 100%);
}

.reviews-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Reviews Column */
.reviews-column .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.google-reviews-widget {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.review-stats {
    text-align: center;
    margin-bottom: 30px;
}

.review-score {
    display: inline-block;
}

.score-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red-primary), #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.score-stars {
    margin-bottom: 10px;
}

.score-stars i {
    color: #fbbf24;
    font-size: 24px;
    margin: 0 3px;
}

.review-stats p {
    color: var(--text-muted);
    font-size: 14px;
}

.review-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-review,
.btn-review-secondary {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-review {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
}

.btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

.btn-review-secondary {
    background: linear-gradient(135deg, var(--red-primary), #b91c1c);
    color: white;
}

.btn-review-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.review-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.review-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.review-highlight-item i {
    color: #10b981;
    font-size: 18px;
}

/* Map Column */
.map-column .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.google-map-widget {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.google-map-widget iframe {
    width: 100%;
    margin-bottom: 25px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-item i {
    color: var(--red-primary);
    font-size: 20px;
    margin-top: 3px;
}

.location-item strong {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
}

.location-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.location-item a {
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: var(--blue-primary);
}

.btn-directions {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-primary), #1d4ed8);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3b82f6, var(--blue-primary));
}
