/* ==========================================================================
   Self-hosted Google Fonts — Latin & Latin-ext only
   Montserrat | Lora
   ========================================================================== */

/* ---------- Montserrat — Normal ---------- */
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/montserrat-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/montserrat-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Lora — Normal ---------- */
/* latin-ext */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/lora-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/lora-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Lora — Italic ---------- */
/* latin-ext */
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lora-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lora-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary: #03744e;
    --primary-dark: #005943;
    --primary-light: #028a68;
    --accent: #dc143c;
    --accent-dark: #b91c1c;
    --accent-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: none;
    --shadow-card: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--gray-800);
    background: #ffffff;
    min-height: 100vh;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

p {
    font-family: 'Lora', Georgia, serif;
}

/* 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;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    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-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.95);
    box-shadow: none;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: none;
    border-bottom: 1px solid var(--gray-300);
}

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

.navbar.scrolled .nav-container {
    padding: 1rem 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--gray-900);
    text-decoration: none;
    transition: font-size 0.3s ease;
}

.navbar.scrolled .logo {
    font-size: 1.35rem;
}

.logo-icon {
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-icon img {
    width: 34px;
    height: 34px;
    display: block;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-icon img {
    width: 24px;
    height: 24px;
}

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

.logo-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-icon svg {
    width: 24px;
    height: 24px;
}

.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: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 8px 16px;
    border-radius: 2px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    box-shadow: none;
    margin-right: 0 !important;
}

.nav-cta:hover {
    background: var(--accent-dark);
    color: white !important;
    transform: none;
    box-shadow: none;
}

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

.nav-links > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
    opacity: 1;
}

.nav-social {
    display: none;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transform-origin: center center;
}

/* Hero Gallery Section */
.hero-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    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 1s 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 Caption Overlay */
.gallery-caption {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    max-width: 700px;
    width: fit-content;
    z-index: 2;
    opacity: 0;
    text-align: left;
    transition: opacity 0.6s ease 0.25s;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 2.5rem;
    border-radius: 4px;
}

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

.gallery-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
    font-family: 'Lora', Georgia, serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.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: background-color 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10;
    background: rgba(74, 74, 74, 0.6);
    border: none;
}

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

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(41, 41, 41, 0.6);
}

.btn {
    padding: 10px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    box-shadow: none;
}

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

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    border-color: transparent;
    box-shadow: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff;
    box-shadow: none;
    transform: none;
}

.btn-email {
    background: #dc2626;
    color: #ffffff;
    border-color: transparent;
    box-shadow: none;
}

.btn-email:hover {
    background: #b91c1c;
    color: #ffffff;
    box-shadow: none;
    transform: none;
}

.btn-phone {
    background: #1e3a8a;
    color: #ffffff;
    border-color: transparent;
    box-shadow: none;
}

.btn-phone:hover {
    background: #10204b;
    color: #ffffff;
    box-shadow: none;
    transform: none;
}

.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: var(--primary);
    background: #ffffff;
    padding: 3rem 2.25rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: none;
    border: 1px solid var(--gray-200);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.standard-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--primary);
    background: var(--gray-50);
}

.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: 2px;
    background: rgba(30, 58, 138, 0.1);
    box-shadow: none;
}

.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: 4px;
    box-shadow: none;
    border: 1px solid var(--gray-200);
}

.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: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: none;
    background: var(--accent);
    color: white;
}

.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--cutting {
    --card-accent-color: rgba(220, 38, 38, 0.45);
}

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


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

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

/* 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: 500;
    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: 500;
    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);
    color: white;
}

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

.hours-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    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.15);
    border-radius: 2px;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.time {
    font-size: 1.1rem;
}

.emergency-info {
    background: #ffffff;
    color: var(--gray-900);
    padding: 2.8rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: none;
    border: 1px solid var(--gray-200);
}

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

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

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: var(--gray-50, #f9fafb);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-rating {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.reviews-stars {
    color: #f59e0b;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.reviews-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.reviews-max {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.reviews-source {
    font-size: 1rem;
    color: var(--gray-500);
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary, #1e3a8a);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.reviews-link:hover {
    text-decoration: underline;
}

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

.review-card {
    background: #ffffff;
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 4px;
    padding: 1.75rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-700, #374151);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.review-author {
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.9rem;
    font-style: normal;
}

/* 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: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    gap: 1.5rem;
    box-shadow: none;
    border: 1px solid var(--gray-200);
}

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

.info-card:nth-child(1) .info-icon {
    border: none;
    background: #dc143c;
    color: white;
}

.info-card:nth-child(2) .info-icon {
    border: none;
    background: #1e3a8a;
    color: white;
}

.info-card:nth-child(3) .info-icon {
    border: none;
    background: #d97706;
    color: white;
}

.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-text h3 {
    font-size: 1.2rem;
    font-weight: 500;
    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: 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-directions-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--primary, #1e3a8a);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 1;
    transition: background 0.2s;
}

.map-directions-btn:hover {
    background: var(--primary-dark, #152e6e);
}

/* 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 .contact-method-icon {
    background: rgba(30, 58, 138, 0.16);
    color: #1e3a8a;
}

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

.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;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    padding: 12px;
    background: rgba(74, 74, 74, 0.6);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease, background-color 0.3s ease;
    z-index: 998;
    user-select: none;
}

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

.scroll-to-top:hover {
    background: rgba(41, 41, 41, 0.6);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* 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 p a {
    display: inline;
    margin-bottom: 0;
}

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

.footer-social {
    display: flex;
    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;
    text-align: left;
}

.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;
}

.footer-credit {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-600, #666);
    margin-top: 2rem;
}

.footer-credit a {
    color: var(--gray-500, #777);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit 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-container {
        padding: 0 1.5rem;
        justify-content: flex-end;
    }

    .top-bar-item:first-child {
        display: none;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

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

    .nav-links {
        position: fixed;
        top: var(--navbar-height, 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: flex;
        gap: 1rem;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .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: translateY(8px) rotate(45deg);
    }

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

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

    .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;
    }

    .gallery-caption {
        left: 60px;
        max-width: calc(100% - 120px);
        padding: 1.5rem 1.75rem;
    }

    .gallery-title {
        font-size: 1.75rem;
    }

    .gallery-description {
        font-size: 1rem;
    }

    .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: left;
    }

    .footer-info {
        text-align: left;
    }

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

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

    .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;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}
