/* ==========================================
   JM Autoglass - Professional Landing Page
   Design: Automotive Industry Standard
   ========================================== */

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100001;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

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

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    /* Brand Colors */
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #ef4444;
    --black: #000000;
    --dark-gray: #111111;
    --medium-gray: #1f1f1f;
    --light-gray: #374151;
    --text-light: #9ca3af;
    --white: #ffffff;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.3);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Grand Opening Bar */
.grand-opening-bar {
    background: var(--white);
    color: var(--dark-gray);
    padding: 12px 0;
    border-bottom: 3px solid var(--primary-red);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.grand-opening-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.opening-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.new-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.opening-text {
    font-size: 1rem;
    font-weight: 600;
}

.opening-text i {
    color: var(--primary-red);
    margin: 0 5px;
}

.location-link {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s;
}

.location-link:hover {
    color: var(--light-red);
}

.btn-directions {
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-directions:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

/* Emergency Bar */
.emergency-bar {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.emergency-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-bar i {
    color: yellow;
    animation: pulse 1.5s infinite;
}

.emergency-call {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s;
}

.emergency-call:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* Header */
.main-header {
    background: var(--black);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.main-header.scrolled {
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--primary-red);
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-gray);
    z-index: 9999;
    transition: left 0.3s ease;
    padding-top: 80px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.mobile-menu a:hover {
    background: var(--primary-red);
    padding-left: 40px;
}

.mobile-call-btn {
    background: var(--primary-red);
    margin: 20px;
    text-align: center;
    border-radius: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--dark-gray);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-large,
.btn-call-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn-call-large {
    background: var(--dark-gray);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-call-large:hover {
    background: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    border-top: 3px solid var(--primary-red);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px 0;
}

.hero-title {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.text-accent {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature-badge i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.insurance-partners {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Services Section - Premium Redesign */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(220,38,38,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Premium Services Grid */
.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Premium Service Cards */
.premium-service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220,38,38,0.15);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.premium-service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-service-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.premium-service-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

/* Price Section */
.price-section {
    padding: 20px 30px;
    background: linear-gradient(135deg, #fef3f3 0%, #fff 100%);
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-tag .from {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.price-tag .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.price-tag .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.discount-badge {
    background: var(--primary-red);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Service Content */
.service-content {
    padding: 30px;
}

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

.service-icon-premium {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.tint-icon {
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Premium Features Grid */
.features-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Service Stats */
.service-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9, #fff);
    border-radius: 15px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Tint Options */
.tint-options {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.tint-options h4 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.tint-levels {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.tint-level {
    text-align: center;
    flex: 1;
}

.tint-sample {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin-bottom: 5px;
}

.tint-level span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.tint-level.popular {
    position: relative;
}

.tint-level.popular small {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-red);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
}

/* Service Card CTA Buttons - Fixed naming conflict */
.service-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-premium {
    flex: 1;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-whatsapp-premium {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    border: none;
}

.btn-whatsapp-premium i {
    font-size: 1.2rem;
}

.btn-whatsapp-premium span {
    font-weight: 600;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn-secondary-premium {
    background: white;
    color: var(--primary-red) !important;
    border: 2px solid var(--primary-red);
    font-weight: 600;
}

.btn-secondary-premium:hover {
    background: var(--primary-red);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220,38,38,0.3);
}

/* Secondary Services */
.secondary-services {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 3px solid #f0f0f0;
}

.secondary-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.secondary-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 25px;
}

.secondary-service-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.secondary-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-mini-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-info h4 {
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.mini-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.mini-cta:hover {
    gap: 10px;
    color: var(--dark-red);
}

/* Keep old services grid for backward compatibility */
.services-grid {
    display: none;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
}

.service-image {
    width: 100%;
    height: 200px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--light-gray);
}

.service-features i {
    color: var(--primary-red);
    margin-right: 10px;
}

.btn-service {
    background: var(--primary-red);
    color: var(--white);
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--dark-red);
    transform: translateX(5px);
}

.btn-service i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-service:hover i {
    transform: translateX(5px);
}

.btn-service-simple {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-service-simple:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Location Section */
.location-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red), var(--primary-red));
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.grand-opening-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
}

.address-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.address-details h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.address-details address {
    font-style: normal;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.loc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.loc-feature i {
    color: var(--primary-red);
}

.hours-card {
    background: var(--dark-gray);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.hours-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-card h3 i {
    color: var(--primary-red);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.hours-list span {
    color: rgba(255,255,255,0.7);
}

.hours-list strong {
    color: var(--white);
}

.emergency-hours {
    background: rgba(220, 38, 38, 0.2);
    margin-top: 10px;
    padding: 10px !important;
    border-radius: 5px;
    border: 1px solid var(--primary-red) !important;
}

.emergency-hours strong {
    color: var(--primary-red);
}

.location-cta {
    display: flex;
    gap: 20px;
}

.location-cta .btn {
    flex: 1;
    text-align: center;
}

.location-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    border-radius: 10px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-interact-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.map-interact-btn:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

/* Why Choose Us */
.why-us {
    padding: var(--section-padding);
    background: var(--dark-gray);
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header p {
    color: rgba(255,255,255,0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 40px;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.benefit:hover .benefit-icon {
    transform: rotateY(360deg);
    background: var(--light-red);
}

.benefit h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    z-index: 0;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step h3 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: #f9f9f9;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial .stars {
    margin-bottom: 15px;
}

.testimonial p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--primary-red);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    padding: 8px 0;
    color: rgba(255,255,255,0.7);
}

.footer-column ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: var(--primary-red);
}

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

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

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.contact-info p {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-red);
    width: 20px;
}

.contact-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Footer Bottom Content */
.footer-bottom-content {
    text-align: center;
    margin-bottom: 10px;
}

.footer-bottom-content p {
    margin: 0;
}

.developer {
    margin-top: 10px;
}

.developer a {
    color: var(--primary-red);
    text-decoration: none;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
}

.fab-whatsapp,
.fab-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.fab-whatsapp {
    background: var(--whatsapp);
}

.fab-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.fab-call {
    background: var(--primary-red);
    animation: ringring 2s infinite;
}

.fab-call:hover {
    background: var(--dark-red);
    transform: scale(1.1);
    animation: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes ringring {
    0%, 100% { transform: rotate(0deg); }
    10%, 20% { transform: rotate(-10deg); }
    15%, 25% { transform: rotate(10deg); }
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .secondary-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Grand Opening Bar */
    .grand-opening-bar {
        padding: 10px 5px;
    }

    .opening-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }

    .opening-text {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.4;
    }

    .new-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .btn-directions {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    /* Emergency Bar Mobile */
    .emergency-bar {
        font-size: 0.8rem;
        padding: 8px 5px;
    }

    .emergency-bar .container {
        gap: 10px;
    }

    .emergency-call {
        font-size: 0.85rem;
        padding: 3px 10px;
    }

    /* Header Mobile */
    .main-header {
        padding: 0 10px;
    }

    .header-content {
        padding: 12px 0;
    }

    .logo img {
        height: 45px;
    }

    /* Mobile Navigation */
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Adjustments */
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .feature-badge {
        width: 100%;
    }

    /* Premium Services Mobile */
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .premium-service-card {
        border-radius: 15px;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .price-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .features-premium {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-stats {
        padding: 15px;
    }

    .stat strong {
        font-size: 1.5rem;
    }

    .tint-levels {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .secondary-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .secondary-service-card {
        padding: 20px;
    }

    /* Location Section */
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .location-cta {
        flex-direction: column;
    }

    .location-cta .btn {
        width: 100%;
    }

    .location-map {
        height: 350px;
    }

    .location-map iframe {
        height: 350px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Process */
    .process-steps::before {
        display: none;
    }

    .process-steps {
        flex-direction: column;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }


    /* Floating Buttons */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .fab-whatsapp,
    .fab-call {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .back-to-top {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Typography Adjustments */
    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    h3 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    p, span {
        font-size: 0.95rem;
    }

    /* Container padding for small screens */
    .container {
        padding: 0 12px;
    }

    /* Section padding reduction */
    section {
        padding: 50px 0;
    }

    /* Grand Opening Bar Small */
    .grand-opening-bar {
        padding: 8px 3px;
    }

    .opening-text {
        font-size: 0.75rem;
    }

    /* Emergency Bar Small */
    .emergency-bar {
        font-size: 0.75rem;
        padding: 6px 3px;
    }

    /* Header Small */
    .logo img {
        height: 40px;
    }

    /* Hero Section Small */
    .hero {
        min-height: 500px;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-features {
        gap: 10px;
    }

    .feature-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .hero-cta {
        gap: 12px;
    }

    .hero-cta .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Premium Services Small Mobile */
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .premium-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .price-tag .price {
        font-size: 2rem;
    }

    .btn-premium {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .service-cta-buttons {
        flex-direction: column;
    }

    .btn-premium,
    .btn-secondary-premium {
        width: 100%;
    }

    .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Showcase Gallery Section */
.showcase-gallery {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.showcase-gallery .section-header h2 {
    color: var(--white);
}

.showcase-gallery .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s;
    background: #000; /* Fondo negro para mantener coherencia visual */
}

.showcase-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.showcase-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantiene proporción cuadrada perfecta */
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Usa 'cover' para llenar todo el espacio */
    object-position: center center;
    transition: transform 0.5s;
}

/* Clase especial para imágenes que necesitan mostrarse completas */
.showcase-image-contain img {
    object-fit: contain; /* Muestra la imagen completa sin cortar */
    background: #000; /* Fondo negro para espacios vacíos */
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

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

.showcase-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.3s 0.1s;
}

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

.btn-showcase {
    background: var(--whatsapp);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.3s 0.2s;
}

.showcase-item:hover .btn-showcase {
    transform: translateY(0);
}

.btn-showcase:hover {
    background: var(--whatsapp-dark);
}

.showcase-cta {
    text-align: center;
    padding: 40px 20px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
    border: 2px solid var(--primary-red);
}

.showcase-cta p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.showcase-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Showcase Gallery */
@media (max-width: 768px) {
    .showcase-gallery {
        padding: 60px 0;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .showcase-item {
        border-radius: 12px;
    }

    .showcase-image {
        aspect-ratio: 1 / 1; /* Mantiene cuadrado en móvil */
    }

    .showcase-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 100%);
        padding: 25px;
    }

    .showcase-overlay h3,
    .showcase-overlay p,
    .btn-showcase {
        transform: translateY(0);
    }

    .showcase-overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .showcase-overlay p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .btn-showcase {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .showcase-cta {
        padding: 30px 15px;
    }

    .showcase-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .showcase-cta .cta-buttons {
        flex-direction: column;
    }

    .showcase-cta .btn {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .showcase-gallery {
        padding: 40px 0;
    }

    .showcase-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .showcase-item {
        border-radius: 10px;
    }

    .showcase-image {
        aspect-ratio: 1 / 1; /* Mantiene cuadrado en móviles pequeños */
    }

    .showcase-overlay {
        padding: 20px;
    }

    .showcase-overlay h3 {
        font-size: 1.2rem;
    }

    .showcase-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .btn-showcase {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .showcase-cta {
        padding: 25px 12px;
        border-radius: 8px;
    }

    .showcase-cta p {
        font-size: 0.9rem;
    }
}

/* Location Popup Styles */
.location-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.location-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.location-popup {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 25px;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid var(--primary-red);
}

.location-popup-overlay.active .location-popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: var(--primary-red);
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 30px 20px;
    text-align: center;
    border-radius: 22px 22px 0 0;
}

.popup-badge {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.popup-badge i {
    font-size: 0.7rem;
    margin: 0 5px;
    color: gold;
}

.popup-header h2 {
    color: white;
    font-size: 2.2rem;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.popup-content {
    padding: 40px 30px;
    text-align: center;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: bounce 2s infinite;
}

.popup-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.popup-content h3 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.popup-content address {
    font-style: normal;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.popup-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.3s;
}

.popup-feature:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.popup-feature i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 25px;
}

.popup-feature span {
    color: var(--dark-gray);
    font-size: 0.95rem;
    text-align: left;
}

.popup-hours {
    background: linear-gradient(135deg, #fef3f3 0%, #fff 100%);
    border: 2px solid #fdd;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.popup-hours p {
    color: var(--dark-gray);
    margin: 5px 0;
    line-height: 1.8;
}

.popup-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-popup-primary,
.btn-popup-secondary {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.btn-popup-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-popup-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-popup-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-popup-secondary:hover {
    background: var(--primary-red);
    color: white;
}

.popup-footer {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

/* Responsive Popup */
@media (max-width: 768px) {
    .location-popup {
        max-width: 95%;
        margin: 20px;
    }

    .popup-header h2 {
        font-size: 1.8rem;
    }

    .popup-features {
        grid-template-columns: 1fr;
    }

    .popup-cta {
        flex-direction: column;
    }

    .btn-popup-primary,
    .btn-popup-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 30px 20px;
    }

    .popup-header {
        padding: 25px 15px;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .popup-content h3 {
        font-size: 1.4rem;
    }
}

/* Very Small Devices (320px) */
@media (max-width: 360px) {
    /* Ultra-small device optimizations */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }

    .container {
        padding: 0 8px;
    }

    /* Buttons */
    .btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    /* Hero */
    .hero {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    /* Service Cards */
    .premium-service-card {
        border-radius: 10px;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .price-tag .price {
        font-size: 1.8rem;
    }

    /* Showcase Gallery */
    .showcase-grid {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    /* Footer */
    .footer-column {
        padding: 0 10px;
    }

    /* Floating buttons smaller */
    .fab-whatsapp,
    .fab-call {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}


/* Hero Social Media Links */
.hero-social {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
}

.hero-social span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.hero-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
}

.hero-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220,38,38,0.4);
}

/* Instagram Section */
.instagram-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-section .section-header {
    position: relative;
    z-index: 1;
}

.instagram-section h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.instagram-section h2 i {
    margin-right: 10px;
}

.instagram-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.instagram-handle {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}

.instagram-handle:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.instagram-cta {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.instagram-cta p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-instagram {
    background: white;
    color: #E1306C;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* Location Social Links */
.location-social {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.location-social h4 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.location-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-badge:hover {
    border-color: var(--primary-red);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-badge i {
    font-size: 1.1rem;
    color: var(--primary-red);
}

/* Review Platforms Links */
.review-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.review-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.review-link i {
    font-size: 1.1rem;
}

/* CTA Social Media */
.cta-social {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.cta-social span {
    display: block;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-size: 1rem;
}

.cta-social a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 8px;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-social a:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive for Social Media Elements */
@media (max-width: 768px) {
    .hero-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .instagram-section {
        padding: 60px 0;
    }

    .instagram-handle {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .btn-instagram {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .location-social-links {
        justify-content: center;
    }

    .review-platforms {
        flex-direction: column;
        align-items: center;
    }

    .review-link {
        width: 200px;
        justify-content: center;
    }

    .cta-social {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-social {
        gap: 10px;
        padding-top: 15px;
        margin-top: 15px;
    }

    .hero-social span {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .instagram-section h2 {
        font-size: 1.5rem;
    }

    .instagram-section p {
        font-size: 1rem;
    }

    .location-social {
        padding: 20px;
    }

    .social-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Print Styles */
@media print {
    .emergency-bar,
    .floating-buttons,
    .back-to-top,
    .mobile-menu-toggle,
    .location-popup-overlay {
        display: none;
    }
}