/* =========================================
   CSS Variables & Tokens
   ========================================= */
:root {
    /* Colores Corporativos — Notaría Única de Arauca */
    --primary-color: #3D3D3D;      /* Gris oscuro del texto del logotipo */
    --primary-light: #5A5A5A;
    --secondary-color: #78BE20;    /* Verde corporativo del logotipo */
    --secondary-hover: #8FD130;
    --accent-green: #78BE20;
    --accent-green-dark: #5A9116;

    --bg-color: #F5F7F2;
    --bg-light: #FFFFFF;
    --text-main: #2D3748;
    --text-muted: #718096;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(120, 190, 32, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(78, 120, 20, 0.08);

    --danger: #E53E3E;
    --warning-bg: #F0FAD9;
    --warning-text: #3D6B0A;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

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

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

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

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(120, 190, 32, 0.3);
}

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

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary-outline {
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--secondary-color);
}

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

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* legacy fallback */
.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
}

.logo-text small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-link:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-link:hover:not(.btn-primary-outline)::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 61, 61, 0.8) 0%, rgba(61, 61, 61, 0.5) 100%);
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    margin-top: 60px; /* Offset for navbar */
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Slide Dots */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

/* =========================================
   Biosecurity Notice
   ========================================= */
.notice-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

.notice-card {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
}

.notice-icon {
    font-size: 2.5rem;
    background: var(--warning-bg);
    padding: 15px;
    border-radius: 50%;
}

.notice-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.notice-text p {
    margin: 0;
    color: var(--text-muted);
}

/* =========================================
   Services Grid
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Info Section
   ========================================= */
.bg-light {
    background-color: var(--bg-light);
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.status-alert {
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: left;
}

.status-alert.warning {
    background-color: var(--warning-bg);
    color: var(--warning-text);
    border-left: 4px solid var(--secondary-color);
}

.status-alert h4 {
    color: var(--warning-text);
    margin-bottom: 0.5rem;
}

/* =========================================
   Transparencia Links
   ========================================= */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.link-card:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    color: white;
}

.link-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

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

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

.footer-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--secondary-color);
}

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

/* =========================================
   Animations & Utilities
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-4 { margin-top: 2rem; }

/* =========================================
   Service Images
   ========================================= */
.service-image {
    width: calc(100% + 60px);
    height: 180px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    margin: -30px -30px 20px -30px;
}

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

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

/* =========================================
   Institucional Page
   ========================================= */
.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-color) 0%, #e2e8f0 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow);
}

.profile-image-placeholder .icon {
    font-size: 5rem;
    color: var(--text-muted);
}

.profile-info .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.profile-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.profile-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.profile-highlights {
    list-style: none;
    margin-top: 2rem;
}

.profile-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.profile-highlights .icon {
    color: var(--secondary-color);
    font-weight: bold;
}

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

.mv-card {
    text-align: left;
    padding: 40px;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* =========================================
   WhatsApp Floating Button
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* =========================================
   Contact & PQRS Page
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.info-card, .form-card {
    text-align: left;
    padding: 40px;
    height: 100%;
}

.location-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.map-container {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-details-list {
    list-style: none;
}

.contact-details-list li {
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-details-list strong {
    color: var(--primary-color);
}

/* Form Styles */
.contact-form {
    margin-top: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group .required {
    color: var(--danger);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: var(--bg-color);
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.terms input {
    width: auto;
    margin-top: 4px;
}

.form-group.terms label {
    font-weight: 400;
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* =========================================
   Simulator Page
   ========================================= */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.calc-card, .result-card {
    padding: 40px;
}

.hidden {
    display: none !important;
}

.result-box {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.result-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 20px 0;
}

.result-item.total {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.result-value {
    font-weight: 600;
}

/* =========================================
   FAQ Page
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition-fast);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--text-main);
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 15px;
}

.faq-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

/* =========================================
   Glossary Page
   ========================================= */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.glossary-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.glossary-item:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.glossary-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.glossary-item p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

/* =========================================
   Media Queries
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .notice-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-highlights li {
        justify-content: center;
    }

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

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

/* =========================================
   Institucional - Notary Profile
   ========================================= */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.profile-image-container {
    position: relative;
}

.profile-image-placeholder {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid white;
    background: #f0f0f0;
}

.profile-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.profile-image-placeholder:hover img {
    transform: scale(1.05);
}

.profile-info .subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.profile-highlights {
    list-style: none;
    margin-top: 2rem;
}

.profile-highlights li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.profile-highlights .icon {
    width: 40px;
    height: 40px;
    background: rgba(120, 190, 32, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-highlights li {
        justify-content: center;
    }
}

/* =========================================
   Map Illustration - Contact Page
   ========================================= */
.map-illustration {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.location-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) brightness(0.9);
}

.map-overlay-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--secondary-color);
    animation: float 3s ease-in-out infinite;
}

.pin-icon {
    font-size: 1.5rem;
}

.pin-text {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}
