:root {
    --primary-red: #dc2626;
    --secondary-red: #ef4444;
    --light-red: #fca5a5;
    --dark-red: #b91c1c;
    --darker-red: #991b1b;
    --bg-red: #fef2f2;
    --text-red: #7f1d1d;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --gray-light: #f7fafc;
    --gray-medium: #e2e8f0;
    --gray-dark: #4a5568;
    --success: #16a34a;
    --warning: #ea580c;
    --shadow-soft: 0 10px 25px rgba(220, 38, 38, 0.1);
    --shadow-medium: 0 15px 35px rgba(220, 38, 38, 0.15);
    --shadow-hard: 0 20px 40px rgba(220, 38, 38, 0.2);
    --border-radius: 7px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================================================
   NAVIGATION - MOBILE FIRST DESIGN
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.1;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.2rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.nav-bottom-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-button {
    background: var(--primary-red);
    color: white;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    text-align: center;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-medium);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-dropdown.show {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

.mobile-dropdown a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.mobile-dropdown a:hover {
    background: var(--bg-red);
    color: var(--primary-red);
    padding-left: 2rem;
}

.mobile-dropdown a:last-child {
    border-bottom: none;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 96vh;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 170px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    animation: float 30s infinite linear;
}

@keyframes float {
    0% { transform: translateX(-100px) translateY(-100px) rotate(0deg); }
    100% { transform: translateX(100px) translateY(100px) rotate(360deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content .highlight {
    color: var(--light-red);
    display: block;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-red);
    color: white;
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hard);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    padding: 4rem 0;
    background: var(--gray-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.service-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
}

.service-image {
    width: 100%;
    height: auto;
    max-height: 159px;
    object-fit: contain;
    object-position: center;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    background-color: var(--gray-light);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-red);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-red);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
}

.stat-label {
    font-weight: 600;
    color: var(--text-red);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* ================================================
   MAP SECTION
   ================================================ */
.map-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 2rem;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
    padding: 4rem 0;
    background: var(--text-dark);
    color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-red);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

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

.location-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.floating-phone {
    background: var(--primary-red);
    animation: pulse 2s infinite;
}

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

/* ================================================
   WHATSAPP MODAL
   ================================================ */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.whatsapp-modal.show {
    display: flex;
}

.modal-content {
    background: #2a2a2a;
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    color: white;
    position: relative;
    box-shadow: var(--shadow-hard);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .whatsapp-icon {
    background: #25d366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-subtitle {
    color: #ccc;
    font-size: 0.9rem;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.option-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.option-icon.emergency {
    background: var(--secondary-red);
}

.option-icon.appointment {
    background: #4f46e5;
}

.option-icon.bath {
    background: #06b6d4;
}

.option-text h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.option-text p {
    font-size: 0.8rem;
    color: #ccc;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ================================================
   LOCATION MODAL
   ================================================ */
.location-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.location-modal.show {
    display: flex;
}

.modal-header .location-icon {
    background: var(--primary-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.location-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.location-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* ================================================
   EMERGENCY MODAL - COMPLETAMENTE NUEVO
   ================================================ */
.emergency-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1003;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.emergency-modal.show {
    display: flex;
}

.emergency-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: emergencyModalSlideIn 0.3s ease;
}

@keyframes emergencyModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.emergency-modal-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.emergency-modal-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.emergency-modal-header p {
    opacity: 0.9;
    font-size: 14px;
}

.emergency-form-container {
    padding: 25px;
}

.emergency-form-section {
    margin-bottom: 25px;
}

.emergency-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

.emergency-form-group {
    margin-bottom: 15px;
}

.emergency-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #34495e;
    font-size: 14px;
}

.emergency-form-group input,
.emergency-form-group select,
.emergency-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.emergency-form-group input:focus,
.emergency-form-group select:focus,
.emergency-form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.emergency-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.emergency-checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.emergency-checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.emergency-checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.emergency-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.emergency-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.emergency-submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.emergency-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: emergencySpin 1s linear infinite;
    margin-right: 10px;
}

@keyframes emergencySpin {
    to { transform: rotate(360deg); }
}

.emergency-status-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

.emergency-status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.emergency-status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ================================================
   FORM LOADING AND STATUS MESSAGES
   ================================================ */
.form-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-red);
}

.form-loading.show {
    display: flex;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-top: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-success, .form-error {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-weight: 600;
    display: none;
}

.form-success {
    background: rgba(22, 163, 74, 0.2);
    color: #16a34a;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.form-error {
    background: rgba(239, 68, 68, 0.2);
    color: var(--secondary-red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

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

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

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ================================================
   DESKTOP RESPONSIVE STYLES
   ================================================ */
@media (min-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
        min-height: 70px;
    }

    .nav-container {
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: space-between;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        grid-template-areas: "logo menu cta";
    }

    .nav-top-row {
        grid-area: logo;
        justify-self: start;
        display: flex;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
        gap: 0.5rem;
    }

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

    .mobile-dropdown {
        display: none !important;
    }

    .nav-menu {
        grid-area: menu;
        justify-self: center;
        display: flex;
        list-style: none;
        gap: 2.5rem;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .nav-bottom-row {
        grid-area: cta;
        justify-self: end;
        display: flex;
        align-items: center;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: auto;
        white-space: nowrap;
    }

    .hero {
        min-height: 92.16vh;
        padding-top: 122px;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
    }

    .btn-primary, .btn-secondary {
        width: auto;
        max-width: none;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-image img {
        max-width: none;
        transform: perspective(1000px) rotateY(-15deg);
    }

    .hero-image:hover img {
        transform: perspective(1000px) rotateY(-5deg) scale(1.02);
    }

    .services {
        padding: 6rem 0;
    }

    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

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

    .service-content {
        padding: 2.5rem;
    }

    .about {
        padding: 6rem 0;
    }

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

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .map-section {
        padding: 6rem 0;
    }

    .map-container {
        height: 500px;
    }

    .contact {
        padding: 6rem 0;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .floating-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .emergency-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .emergency-form-container {
        padding: 20px;
    }
}

/* ================================================
   MOBILE RESPONSIVE FOR EMERGENCY MODAL
   ================================================ */
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .emergency-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .emergency-form-container {
        padding: 20px;
    }
}