/* ==========================================
   EV CLINIC SLOVENIA - FUTURISTIC STYLE
   ========================================== */

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

:root {
    --primary-blue: #00b4d8;
    --dark-blue: #0077b6;
    --light-blue: #48cae4;
    --electric-glow: #00ffff;
    --text-dark: #0a0a0a;
    --text-gray: #666666;
    --background-light: #f0f4f8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    min-height: 450px;
    background: linear-gradient(135deg, #001219 0%, #005f73 50%, #0a9396 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
    animation: fadeIn 0.8s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(72, 202, 228, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 18, 25, 0.85) 0%, rgba(0, 95, 115, 0.75) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: transparent !important;
}

.main-logo {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    background: transparent !important;
    display: block;
    transition: filter 0.3s ease;
}

.main-logo:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.6))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3),
                 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3),
                0 0 20px rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 180, 216, 0.5),
                0 0 30px rgba(0, 255, 255, 0.4);
}

/* ==========================================
   MAP SECTION
   ========================================== */

.map-section {
    padding: 50px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    animation: fadeIn 0.8s ease-in-out 0.2s both;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-glow));
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.interactive-map {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
                0 0 20px rgba(0, 180, 216, 0.1);
    overflow: hidden;
    border: 2px solid rgba(0, 180, 216, 0.2);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    padding: 50px 20px;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    animation: fadeIn 0.8s ease-in-out 0.4s both;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.7;
}

.partner-banner {
    background: linear-gradient(135deg, 
                rgba(0, 180, 216, 0.9) 0%, 
                rgba(72, 202, 228, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3),
                0 0 20px rgba(0, 255, 255, 0.2);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.partner-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.partner-banner h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.partner-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--white);
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.partner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white), #f0f4f8);
    border-color: var(--electric-glow);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 20px 20px;
    border-top: 2px solid rgba(0, 180, 216, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                var(--electric-glow) 50%, 
                transparent 100%);
    box-shadow: 0 0 10px var(--electric-glow);
}

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

.footer-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.footer-links h4 {
    color: var(--electric-glow);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--electric-glow);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .main-logo { max-width: 180px; }
    .section-title { font-size: 1.5rem; }
    .interactive-map { height: 350px; }
    .partner-banner { padding: 30px 25px; }
    .partner-banner h3 { font-size: 1.3rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .cta-button { padding: 10px 24px; font-size: 0.95rem; }
    .partner-banner h3 { font-size: 1.2rem; }
}
