:root {
    --primary-blue: #dc2626;
    --primary-blue-dark: #991b1b;
    --primary-blue-light: #ef4444;
    --slate-25: #f6f7fb;
    --slate-50: #eef2f8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 12px 40px rgba(17, 24, 39, 0.12);
    --shadow-card: 0 16px 50px rgba(15, 23, 42, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: var(--gray-800);
    background: radial-gradient(circle at 15% 20%, rgba(59, 89, 152, 0.08), transparent 30%),
                radial-gradient(circle at 80% 0%, rgba(30, 58, 138, 0.1), transparent 30%),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: 0;
    left: -9999px;
    background: #1e3a8a;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

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

/* Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid #1e3a8a;
    outline-offset: 2px;
}

/* Visually Hidden for Screen Readers Only */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.top-bar-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-bar-icon i {
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.top-bar-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.top-bar-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.top-bar-text span {
    display: block;
    line-height: 1.3;
}

.top-bar-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.top-bar-item a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-icon {
    color: var(--primary-blue);
    display: flex;
    align-items: center;
}

.logo-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.logo-icon i {
    display: inline-block;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links > a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    margin-right: 1.75rem;
    position: relative;
}

.nav-links > a:last-of-type:not(.nav-cta) {
    margin-right: 8px;
}

.nav-links > a:hover {
    color: #1e3a8a;
}

.nav-cta {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    margin-right: 0 !important;
}

.nav-cta:hover {
    background: var(--primary-blue-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-links > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3a8a, #3b5998);
    transition: width 0.25s ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
    width: 100%;
}

.nav-social {
    display: none;
    gap: 1rem;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--gray-300);
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--gray-700);
    transition: all 0.3s;
}

.nav-social a:hover {
    transform: translateY(-2px);
}

.nav-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: white;
}

.nav-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.nav-social a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
}

/* Hero Gallery Section */
.hero-gallery {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 0;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    isolation: isolate;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    overflow: hidden;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(1.05);
}

/* Gallery overlay removed for cleaner image display */

.scroll-indicator {
    display: none;
}

.scroll-indicator:hover,
.scroll-indicator:focus-visible {
    transform: translateX(-50%) translateY(4px);
    background: rgba(30, 58, 138, 0.55);
    box-shadow: 0 20px 45px rgba(30, 58, 138, 0.28);
}

.scroll-indicator-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: scrollBounce 2.4s ease-in-out infinite;
}

.scroll-indicator-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* Navigation arrows */
.gallery-prev,
.gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10;
    background: rgba(17, 24, 39, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.gallery-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.btn {
    padding: 0.95rem 2.4rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.18);
}

.btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.btn img {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.28);
}

.btn-blue {
    background: #1e3a8a;
    color: white;
    border-color: transparent;
}

.btn-blue:hover {
    background: #10204b;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 32px rgba(30, 58, 138, 0.28);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.32);
    transform: translateY(-2px) scale(1.01);
}

.btn-email {
    background: #dc2626;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.22);
}

.btn-email:hover {
    background: #b91c1c;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(220, 38, 38, 0.32);
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Container */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2.2rem;
}

section {
    position: relative;
    overflow: hidden;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.standard-card {
    --card-accent-color: rgba(59, 89, 152, 0.45);
    --card-hover-shadow: var(--shadow-card);
    background: linear-gradient(145deg, #ffffff 0%, #f4f6fb 100%);
    padding: 3rem 2.25rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.standard-card:hover {
    transform: translateY(-10px) scale(1.005);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-accent-color);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

.contact-method-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 89, 152, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-method-icon i {
    display: inline-block;
}

.contact-method-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.75;
}


.services .contact-methods {
    justify-items: start;
    align-items: stretch;
}

.core-service-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.core-service-card h3 {
    margin: 0 0 0.35rem;
}

.core-service-card p {
    margin: 0;
    color: var(--gray-600);
}

.core-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.core-service-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.core-service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.core-service-card--tools {
    --card-accent-color: rgba(30, 58, 138, 0.45);
}

.core-service-card--tools .core-service-icon {
    background: rgba(30, 58, 138, 0.12);
    color: #1e3a8a;
}

.core-service-card--cutting {
    --card-accent-color: rgba(220, 38, 38, 0.45);
}

.core-service-card--cutting .core-service-icon {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
}

.core-service-card--keys {
    --card-accent-color: rgba(249, 115, 22, 0.5);
}

.core-service-card--keys .core-service-icon {
    background: rgba(249, 115, 22, 0.15);
    color: #b45309;
}


.standard-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.standard-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.about-image {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-card);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    mix-blend-mode: screen;
}

.image-placeholder {
    font-size: 6rem;
    color: white;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--slate-50) 0%, #ffffff 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    padding: 2.6rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.06);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f6fb 100%);
    padding: 2.75rem;
    border-radius: 16px;
    border-left: 5px solid #1e3a8a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-card);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Hours Section */
.hours {
    padding: 4rem 0;
    background: var(--primary-blue);
    color: white;
}

.hours-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hours-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.day {
    font-weight: 600;
    font-size: 1.1rem;
}

.time {
    font-size: 1.1rem;
}

.emergency-info {
    background: linear-gradient(160deg, #ffffff 0%, #eef2f8 100%);
    color: var(--gray-900);
    padding: 2.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.emergency-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.emergency-info p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Location Section */
.location {
    padding: 4rem 0;
    background: #ffffff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(140deg, #ffffff 0%, #f5f7fb 100%);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 58, 138, 0.08);
}

.info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.info-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.info-icon i {
    display: inline-block;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.info-card:nth-child(1) .info-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.18));
    color: #dc2626;
}

.info-card:nth-child(2) .info-icon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(59, 89, 152, 0.18));
    color: #1e3a8a;
}

.info-card:nth-child(3) .info-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.18));
    color: #d97706;
}

.info-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--gray-600);
    line-height: 1.7;
}

.info-text a {
    color: #1e3a8a;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 18px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('assets/map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    background: rgba(249, 250, 251, 0.5);
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.map-placeholder-icon {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-icon img {
    width: 64px;
    height: 64px;
    display: block;
}

.map-placeholder-icon i {
    display: inline-block;
}

.map-placeholder-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

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

.map-placeholder-content h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                 0 0 30px rgba(255, 255, 255, 0.9),
                 0 0 45px rgba(255, 255, 255, 0.8),
                 0 2px 4px rgba(255, 255, 255, 0.9);
}

.map-placeholder-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 12px rgba(255, 255, 255, 1),
                 0 0 24px rgba(255, 255, 255, 0.9),
                 0 0 36px rgba(255, 255, 255, 0.8),
                 0 2px 4px rgba(255, 255, 255, 0.9);
}

.map-disclaimer {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 1rem;
    font-style: italic;
    text-shadow: 0 0 12px rgba(255, 255, 255, 1),
                 0 0 24px rgba(255, 255, 255, 0.9),
                 0 0 36px rgba(255, 255, 255, 0.8),
                 0 2px 4px rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border-color: rgba(30, 58, 138, 0.08);
}

.contact-card--phone {
    --card-accent-color: rgba(30, 58, 138, 0.45);
    background: #ffffff;
    border-color: rgba(30, 58, 138, 0.2);
}

.contact-card--phone .contact-method-icon {
    background: rgba(30, 58, 138, 0.16);
    color: #1e3a8a;
}

.contact-card--whatsapp {
    --card-accent-color: rgba(37, 211, 102, 0.55);
    background: #ffffff;
    border-color: rgba(37, 211, 102, 0.25);
}

.contact-card--whatsapp .contact-method-icon {
    background: rgba(37, 211, 102, 0.18);
    color: #128c7e;
}

.contact-card--email {
    --card-accent-color: rgba(220, 38, 38, 0.45);
    background: #ffffff;
    border-color: rgba(220, 38, 38, 0.25);
}

.contact-card--email .contact-method-icon {
    background: rgba(220, 38, 38, 0.15);
    color: #991b1b;
}

.standard-card .btn {
    width: 100%;
    max-width: 250px;
}

.contact-method-card .btn {
    width: 100%;
    max-width: 250px;
}

/* Footer */
.footer {
    background: radial-gradient(circle at 15% 20%, rgba(30, 58, 138, 0.08), transparent 25%),
                linear-gradient(180deg, #0b1224 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ef4444;
}

.footer-social {
    display: none;
    gap: 1rem;
    margin-top: 1rem;
}

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

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: white;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.footer-social a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    flex: 1;
}

.footer-info p {
    color: var(--gray-400);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

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

    .hero-gallery {
        height: calc(70vh - 60px);
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 61px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 1rem;
    }

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

    .nav-links > a {
        margin-right: 0;
        margin-bottom: 0;
    }

    .nav-links > a:last-of-type:not(.nav-cta) {
        margin-right: 0;
        margin-bottom: 0;
    }

    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.85rem 2rem;
        width: 100%;
    }

    .nav-social {
        border-left: none;
        border-top: 1px solid var(--gray-300);
        padding-left: 0;
        padding-top: 1rem;
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

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

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

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

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }

    .hero-gallery {
        height: 400px;
        min-height: 400px;
    }

    .gallery-prev,
    .gallery-next {
        font-size: 18px;
        padding: 12px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .map-container {
        height: 400px;
    }

    .map-placeholder-icon svg {
        width: 48px;
        height: 48px;
    }

    .map-placeholder-icon {
        margin-bottom: 0.75rem;
    }

    .map-placeholder-content {
        padding: 1.5rem;
    }

    .map-placeholder-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .map-placeholder-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .map-disclaimer {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }

    .info-text a {
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .hours-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.2rem 1.4rem;
    }

    .day {
        font-size: 1rem;
    }

    .time {
        font-size: 0.95rem;
        padding-left: 0;
    }

    .emergency-info {
        padding: 2rem 1.5rem;
    }

    .emergency-info h3 {
        font-size: 1.3rem;
    }

    .emergency-info .btn-whatsapp svg {
        width: 24px !important;
        height: 24px !important;
    }
}
