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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

/* Logo Watermark */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vh;
    background-image: url('../images/sigla%20CHIRMA%201.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.02;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: -1;
    pointer-events: none;
    animation: watermarkFloat 20s ease-in-out infinite;
}

/* Global Clinic Background Images */
body::after {
    content: '';
    position: fixed;
    top: 20%;
    right: 5%;
    width: 25%;
    height: 32%;
    background: url('../images/clinicoutside1.jpg') center/cover;
    opacity: 0.5;
    transform: rotate(6deg);
    z-index: -2;
    animation: clinicFloat1 20s ease-in-out infinite;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    pointer-events: none;
}

/* Additional clinic background element */
.clinic-bg-secondary {
    position: fixed;
    bottom: 25%;
    left: 3%;
    width: 22%;
    height: 30%;
    background: url('../images/clinicoutside2.jpg') center/cover;
    opacity: 0.45;
    transform: rotate(-4deg);
    z-index: -2;
    animation: clinicFloat2 25s ease-in-out infinite;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    pointer-events: none;
}

/* Third clinic background element for more coverage */
.clinic-bg-tertiary {
    position: fixed;
    top: 65%;
    right: 12%;
    width: 20%;
    height: 26%;
    background: url('../images/Brumar%20Ancuta%20-%20Nurse.jpg') center/cover;
    opacity: 0.4;
    transform: rotate(10deg);
    z-index: -2;
    animation: clinicFloat3 30s ease-in-out infinite;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
    pointer-events: none;
}

@keyframes watermarkFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
    }
    50% {
        transform: translate(-52%, -48%) rotate(-12deg) scale(1.05);
    }
}

@keyframes clinicFloat1 {
    0%, 100% {
        transform: rotate(6deg) translateY(0px) translateX(0px);
        opacity: 0.5;
    }
    33% {
        transform: rotate(8deg) translateY(-15px) translateX(8px);
        opacity: 0.55;
    }
    66% {
        transform: rotate(4deg) translateY(12px) translateX(-6px);
        opacity: 0.45;
    }
}

@keyframes clinicFloat2 {
    0%, 100% {
        transform: rotate(-4deg) translateY(0px) translateX(0px);
        opacity: 0.45;
    }
    40% {
        transform: rotate(-2deg) translateY(10px) translateX(-6px);
        opacity: 0.5;
    }
    80% {
        transform: rotate(-6deg) translateY(-8px) translateX(10px);
        opacity: 0.4;
    }
}

@keyframes clinicFloat3 {
    0%, 100% {
        transform: rotate(10deg) translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    50% {
        transform: rotate(12deg) translateY(-8px) translateX(6px);
        opacity: 0.45;
    }
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px;
}

.language-switcher a {
    display: inline-block;
    padding: 8px 15px;
    text-decoration: none;
    color: #666;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.language-switcher a.active,
.language-switcher a:hover {
    background: #0078d4;
    color: white;
}

/* Logo Section with Facebook */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    color: #0078d4;
    text-decoration: none;
}

.logo:hover img {
    transform: scale(1.05);
}

.facebook-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(24, 119, 242, 0.3);
    transition: all 0.3s ease;
}

.facebook-icon:hover {
    background: linear-gradient(135deg, #166fe5, #1976d2);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 18px rgba(24, 119, 242, 0.4);
    color: white;
}

.facebook-icon svg {
    transition: transform 0.3s ease;
}

.facebook-icon:hover svg {
    transform: scale(1.1);
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


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

.nav-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #4a6fa5;
}

/* Background Image Slider */
.bg-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-slide.active {
    opacity: 0.85;
    animation: imageZoom 6s ease-in-out;
}

@keyframes imageZoom {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    90% {
        opacity: 0.85;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.bg-slide:nth-child(1) { animation-delay: 0s; }
.bg-slide:nth-child(2) { animation-delay: 6s; }
.bg-slide:nth-child(3) { animation-delay: 12s; }
.bg-slide:nth-child(4) { animation-delay: 18s; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);
    color: #333;
    padding: 120px 0 80px;
    text-align: left;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZDEiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPgogICAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdHlsZT0ic3RvcC1jb2xvcjojN2ZiM2QzO3N0b3Atb3BhY2l0eTowLjEiIC8+CiAgICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdHlsZT0ic3RvcC1jb2xvcjojNGE2ZmE1O3N0b3Atb3BhY2l0eTowLjA4IiAvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM5YjU5YjY7c3RvcC1vcGFjaXR5OjAuMDUiIC8+CiAgICA8L2xpbmVhckdyYWRpZW50PgogIDwvZGVmcz4KICA8ZWxsaXBzZSBjeD0iNjAwIiBjeT0iMzAwIiByeD0iNDAwIiByeT0iMzAwIiBmaWxsPSJ1cmwoI2dyYWQxKSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1IDYwMCAzMDApIiAvPgo8L3N2Zz4=') no-repeat center;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #323130;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #605e5c;
    max-width: 600px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.6s forwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.9s forwards;
}

.btn {
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
    text-transform: none;
}

.btn-primary {
    background: #0078d4;
    color: white;
    border-color: #0078d4;
}

.btn-primary:hover {
    background: #106ebe;
    border-color: #106ebe;
}

.btn-secondary {
    background: white;
    color: #0078d4;
    border: 2px solid #0078d4;
}

.btn-secondary:hover {
    background: #f3f9fd;
    color: #106ebe;
    border-color: #106ebe;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #323130;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #605e5c;
    line-height: 1.6;
}

.concept-quote {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-left: 4px solid #7fb3d3;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Team Section */
.team {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4a6fa5;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }
.team-member:nth-child(5) { animation-delay: 0.5s; }
.team-member:nth-child(6) { animation-delay: 0.6s; }

/* Special styling for nurse team member */
.team-member:last-child {
    border: 2px solid rgba(116, 185, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 248, 255, 0.95) 100%);
}

.team-member:last-child::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #74b9ff, #4a6fa5);
    border-radius: 50%;
    opacity: 0.4;
    animation: nurseIcon 3s ease-in-out infinite;
}

.team-member:last-child::after {
    content: '+';
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    z-index: 1;
}

@keyframes nurseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    object-position: center top;
    border: 4px solid #0078d4;
    transition: transform 0.3s ease;
}

/* Individual face positioning for better centering */
.team-member:nth-child(1) img {
    object-position: center 20%; /* Dr. Fanan Sorina */
}

.team-member:nth-child(2) img {
    object-position: center 25%; /* Dr. Fanan Ashish */
}

.team-member:nth-child(3) img {
    object-position: center 30%; /* Bene Alexandru */
}

.team-member:nth-child(4) img {
    object-position: center 20%; /* Dr. Tanase Bianca */
}

.team-member:nth-child(5) img {
    object-position: center 25%; /* Dr. Razvan Andreea */
}

.team-member:nth-child(6) img {
    object-position: center 15%; /* Brumar Ancuta - Nurse */
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    color: #4a6fa5;
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: #7fb3d3;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #323130;
    font-weight: 600;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #7fb3d3;
}

.service-card h3 {
    color: #4a6fa5;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(240, 248, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    color: #333;
    position: relative;
    overflow: hidden;
}

/* Contact section backgrounds removed - now using global backgrounds */

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4a6fa5;
}

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

/* Contact Info Grid Layout */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Enhanced Contact Info Card */
.contact-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(116, 185, 255, 0.05) 0%, 
        rgba(74, 111, 165, 0.02) 100%);
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Removed care team highlight section */

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(116, 185, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(116, 185, 255, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.8);
    border-color: rgba(74, 111, 165, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #4a6fa5;
    background: linear-gradient(135deg, #74b9ff, #4a6fa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 3s ease-in-out infinite;
}

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

/* Enhanced Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    color: #333;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-grid-full {
    grid-column: 1 / -1;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Brumar%20Ancuta%20-%20Nurse.jpg') center/cover;
    opacity: 0.03;
    z-index: 0;
    animation: nurseFloat 12s ease-in-out infinite;
}

@keyframes nurseFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.03;
    }
    50% {
        transform: scale(1.05) rotate(1deg);
        opacity: 0.05;
    }
}

.booking-form > * {
    position: relative;
    z-index: 1;
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.booking-form h3 {
    color: #4a6fa5;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(224, 224, 224, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(96, 94, 92, 0.6);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #74b9ff;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.05),
        0 0 0 4px rgba(116, 185, 255, 0.15);
    transform: translateY(-2px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(96, 94, 92, 0.4);
    transform: translateY(-2px);
}

.notification-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.notification-btn {
    flex: 1;
    padding: 15px 10px;
    border: 2px solid rgba(224, 224, 224, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.notification-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(116, 185, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.notification-btn:hover::before {
    left: 100%;
}

.notification-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(116, 185, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.notification-btn.active {
    border-color: #7fb3d3;
    background: #f0f8ff;
    color: #0078d4;
}

/* Footer */
footer {
    background: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Map UI Styles */
.location-item {
    grid-column: span 2;
}

.location-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.location-text {
    flex: 1;
}

.mini-map {
    width: 120px;
    flex-shrink: 0;
}

.map-container {
    position: relative;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    border: 2px solid rgba(33, 150, 243, 0.3);
    overflow: hidden;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    border-color: rgba(33, 150, 243, 0.6);
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(33, 150, 243, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 150, 243, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(15px, 15px); }
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pinBounce 2s ease-in-out infinite;
}

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

.map-label {
    position: absolute;
    bottom: 4px;
    right: 6px;
    font-size: 10px;
    font-weight: bold;
    color: rgba(33, 150, 243, 0.8);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 10px;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.map-btn {
    width: 100%;
    padding: 6px 8px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.map-btn:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .language-switcher {
        top: 70px;
        right: 10px;
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .facebook-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-section {
        gap: 10px;
    }
    
    /* Mobile responsive for new grid layouts */
    .contact-info-grid,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Adjust global clinic background visibility on mobile */
    body::after,
    .clinic-bg-secondary,
    .clinic-bg-tertiary {
        opacity: 0.3 !important;
        width: 35%;
        height: 45%;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}