@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary: #00bcd4;
    --secondary: #0097a7;
    --accent: #26c6da;
    --success: #4dd0e1;
    --danger: #e91e63;
    --dark: #263238;
    --white: #ffffff;
    --light-bg: #f8fafb;
    --cas-color: #2e7d32;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #00bcd4, #0097a7, #26c6da, #4dd0e1);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
.header {
    background: rgba(248, 250, 251, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 800;
    margin-bottom: 25px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-text p {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    line-height: 1.6;
}

.cas-info {
    background: linear-gradient(135deg, #ff0000, #ea4343);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.cas-info-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.cas-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cas-text h3 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: 5px;
}

.cas-text p {
    font-size: clamp(12px, 1.5vw, 14px);
    opacity: 0.95;
    margin: 0;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: clamp(14px, 2vw, 18px) clamp(24px, 4vw, 40px);
    border: none;
    border-radius: 50px;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
    white-space: nowrap;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    min-width: auto;
    flex: 1;
    width: auto;
    padding: clamp(14px, 2vw, 18px) clamp(20px, 3vw, 30px);
}

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: levitate 4s ease-in-out infinite;
}

.hero-image-animated { 
    position: relative; 
    animation: levitate 4s ease-in-out infinite; 
    filter: drop-shadow(0 20px 40px rgba(139, 26, 26, 0.4)); 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
} 

.hero-image-pulse { 
    animation: heartbeat 1.2s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
} 

@keyframes levitate {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes heartbeat { 
    0%, 70% { transform: scale(1); } 
    10% { transform: scale(1.05); } 
    20% { transform: scale(1.1); } 
    30% { transform: scale(1.05); } 
    40% { transform: scale(1.02); } 
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #ffffff;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.3);
}

.stat-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    color: white;
    opacity: 0.95;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    margin: 0 60px;
    border-radius: 20px;
}

.services h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.services-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-image {
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--success));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    font-size: clamp(14px, 1.5vw, 16px);
}

.service-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
    font-size: 14px;
    cursor: pointer;
    background: none;
}

.service-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
}

/* Locations Section */
.locations {
    padding: 120px 0;
    background: var(--light-bg);
    border-radius: 50px 50px 0 0;
    margin-top: 100px;
}

.locations h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.locations-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 80px;
    color: #666;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.location-card {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(38, 198, 218, 0.1));
    border-radius: 30px;
    padding: 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 188, 212, 0.2);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.location-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 188, 212, 0);
    }
}

.location-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--primary);
}

.location-address {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-phone {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.staff-list {
    list-style: none;
}

.staff-member {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
    transition: all 0.3s ease;
}

.staff-member:hover {
    padding-left: 10px;
    color: var(--primary);
}

.staff-name {
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 5px;
}

.staff-role {
    font-size: clamp(12px, 1.2vw, 14px);
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

/* Clinic Selector */
.clinic-selector-section {
    background: linear-gradient(135deg, #263238, #37474f);
    border-radius: 25px;
    padding: 35px;
    color: white;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-top: 3px solid var(--primary);
}

.clinic-selector-section h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.clinic-selector {
    margin-bottom: 25px;
}

.clinic-option {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.clinic-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.clinic-option.selected {
    background: rgba(0, 188, 212, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
    transform: translateY(-2px);
}

.clinic-option input[type="radio"] {
    display: none;
}

.clinic-option label {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    font-size: clamp(12px, 1.5vw, 14px);
}

.clinic-details {
    display: none;
    animation: slideIn 0.5s ease;
}

.clinic-details.active {
    display: block;
}

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

.detail-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(3px);
}

.detail-item h4 {
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 10px;
    opacity: 0.9;
    color: var(--primary);
    font-weight: 600;
}

.detail-item p {
    font-size: clamp(12px, 1.2vw, 14px);
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.equipment-btn-mini {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    text-decoration: none;
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.equipment-btn-mini:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.4);
}

.maps-container {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

.maps-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
}

/* Equipment Section */
.equipment-section-mini {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.02), rgba(38, 198, 218, 0.05));
}

.equipment-section-mini h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.equipment-card-mini {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.equipment-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.05), transparent);
    transition: left 0.5s;
}

.equipment-card-mini:hover::before {
    left: 100%;
}

.equipment-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.15);
    border-color: var(--primary);
}

.equipment-icon-mini {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.equipment-card-mini h3 {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 15px;
    min-height: 60px;
    justify-content: center;
}

.features-mini span {
    color: #555;
    font-size: clamp(10px, 1.2vw, 11px);
    font-weight: 500;
    padding: 3px 8px;
    background: rgba(0, 188, 212, 0.08);
    border-radius: 8px;
    border-left: 2px solid var(--primary);
    transition: all 0.2s ease;
}

.features-mini span:hover {
    background: rgba(0, 188, 212, 0.12);
    transform: translateX(2px);
}

.equipment-badge-mini {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: clamp(9px, 1vw, 10px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.equipment-cta-mini {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.equipment-cta-mini strong {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: clamp(16px, 2vw, 20px);
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    gap: 20px;
}

.contact-item {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(38, 198, 218, 0.1));
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.1);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Cookie Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #263238, #37474f);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid #00bcd4;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #00bcd4;
}

.cookie-text p {
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00bcd4, #26c6da);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

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

.cookie-btn-deny:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.cookie-btn-info {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.cookie-btn-info:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

/* COOKIE INFO MODAL */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #ffffff, #f8fafb);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

.cookie-modal-header {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
    padding: 25px 30px;
    position: relative;
}

.cookie-modal-header h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.cookie-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.2);
}

.cookie-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: 60vh;
    background: white;
}

.cookie-section {
    margin-bottom: 25px;
}

.cookie-section h4 {
    color: #00bcd4;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 5px;
    line-height: 1.3;
}

.cookie-section p {
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.cookie-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.cookie-section li {
    font-size: clamp(14px, 2vw, 15px);
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.cookie-section li strong {
    color: #00bcd4;
    font-weight: 600;
}

.cookie-highlight {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(38, 198, 218, 0.1));
    border-left: 4px solid #00bcd4;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.cookie-highlight h4 {
    color: #00bcd4;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.cookie-highlight p {
    font-size: clamp(14px, 2vw, 15px);
    margin: 0;
    color: #333;
}

.cookie-modal-footer {
    background: linear-gradient(135deg, #00bcd4, #26c6da);
    color: white;
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-modal-footer .cookie-btn {
    min-width: 140px;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8fafb);
    margin: auto;
    padding: 0;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from { 
        transform: scale(0.7) translateY(-50px); 
        opacity: 0; 
    }
    to { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.modal-header .service-icon {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.close {
    position: absolute;
    right: 25px;
    top: 25px;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.2);
}

.close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: 60vh;
}

.modal-body h3 {
    color: var(--primary);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    margin: 0 0 20px 0;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.modal-body p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.modal-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.modal-body li {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.modal-highlight {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(38, 198, 218, 0.1));
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 25px 0;
    border-radius: 10px;
}

.modal-highlight h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: clamp(16px, 2.5vw, 20px);
}

.modal-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.modal-cta h4 {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-cta p {
    font-size: clamp(12px, 2vw, 16px);
    margin-bottom: 20px;
    opacity: 0.95;
}

.modal-btn {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(38, 198, 218, 0.1));
    border: 2px dashed var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin: 25px 0;
    color: var(--primary);
    font-size: clamp(32px, 6vw, 48px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark), #37474f);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: clamp(12px, 1.5vw, 14px);
    color: rgba(255,255,255,0.7);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

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

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

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(248, 250, 251, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 60px;
        gap: 40px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 188, 212, 0.2);
    }

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

    .nav-menu a {
        font-size: 20px;
        padding: 15px 30px;
        border-radius: 10px;
        width: 80%;
        text-align: center;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        border-color: var(--primary);
        background: rgba(0, 188, 212, 0.1);
    }

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

    .contact-btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    /* Hero Section - Mobile Fix */
    .hero {
        padding: 120px 0 40px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        justify-items: center;
    }

    .hero-text {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .hero-image {
        order: 1;
        justify-content: center;
        width: 100%;
    }

    .hero-image-animated {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 250px;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        flex: none;
    }

    .cas-info {
        padding: 18px 20px;
        margin-bottom: 25px;
        width: 100%;
        max-width: 350px;
    }

    .cas-info-content {
        gap: 12px;
        text-align: center;
        justify-content: center;
    }

    /* Stats */
    .stats {
        margin: 40px 0;
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Services */
    .services {
        margin: 0 15px;
        padding: 60px 0;
    }

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

    /* Locations */
    .locations {
        padding: 80px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-card {
        padding: 30px 20px;
    }

    .location-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Equipment */
    .equipment-grid-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .equipment-cta-mini {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .clinic-selector-section {
        max-width: 100%;
        padding: 25px 20px;
    }

    .maps-container {
        height: 200px;
    }

    /* Modals - Mobile Fix */
    .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 10px;
    }

    .modal-header {
        padding: 25px 20px;
    }

    .modal-body {
        padding: 25px 20px;
        max-height: 50vh;
    }

    .close {
        right: 20px;
        top: 20px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }

    .cookie-banner {
        padding: 15px;
    }

    .cookie-text {
        text-align: center;
        min-width: auto;
    }

    /* Cookie Modal - Mobile Fix */
    .cookie-modal-content {
        width: 95%;
        max-width: 95vw;
        max-height: 90vh;
        margin: 10px;
    }

    .cookie-modal-header {
        padding: 20px 15px;
    }

    .cookie-modal-header h3 {
        font-size: 18px;
        line-height: 1.2;
        padding-right: 40px;
    }

    .cookie-modal-body {
        padding: 20px 15px;
        max-height: 65vh;
    }

    .cookie-section {
        margin-bottom: 20px;
    }

    .cookie-section h4 {
        font-size: 16px;
        line-height: 1.2;
    }

    .cookie-section p,
    .cookie-section li {
        font-size: 14px;
        line-height: 1.5;
    }

    .cookie-highlight {
        padding: 15px;
        margin: 15px 0;
    }

    .cookie-modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding-top: 100px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-grid-mini {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .equipment-section-mini {
        padding: 40px 0;
    }

    .equipment-card-mini {
        padding: 15px;
    }

    .modal-content {
        width: 98%;
        margin: 5px;
        border-radius: 15px;
    }

    .modal-header {
        padding: 20px 15px;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ANPC Badge Styles */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.anpc-badge {
    flex-shrink: 0;
}

.anpc-logo {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.anpc-logo:hover {
    opacity: 0.8;
}

/* Mobile optimization for ANPC badge */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .anpc-logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .anpc-logo {
        height: 30px;
    }
}