@charset "UTF-8";

:root {
    --primary: #134e4a;
    --accent: #2dd4bf;
    --heart: #e11d48;
    --bg-light: #fcfcfd;
    --text-main: #1f2937;
    --white: #ffffff;
    --badge-bg: #ccfbf1;
    --badge-text: #115e59;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    background-image: linear-gradient(to bottom left, #e6fffa 25%, #ffffff 100%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

h1, h2, h3, .logo {
    font-family: 'Lexend', sans-serif;
    color: var(--primary);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    line-height: 1.1;
}

.heart-icon {
    grid-row: 1 / 3;
    color: var(--accent);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
}

.heart-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: heart-beat-stable 2s ease-in-out infinite;
}

@keyframes heart-beat-stable {
    0% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(1); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
    100% { transform: scale(1); }
}

.logo strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.65rem;
    letter-spacing: -1px;
    font-weight: 700;
    display: block;
}

.logo em {
    grid-column: 2;
    grid-row: 2;
    display: block;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-main);
    opacity: 0.8;
    margin-top: 2px;
    font-weight: 400;
}

.logo strong span { color: var(--accent); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
    display: inline-block;
    letter-spacing: -0.5px;
}

.nav-menu a:not(.cta-nav)::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    background-color: var(--badge-bg);
    border-radius: 12px;
    z-index: -1;
    transition: width 0.4s ease;
}

.nav-menu a:not(.cta-nav):hover { color: var(--accent); }
.nav-menu a:not(.cta-nav):hover::before { width: 100%; }

.cta-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 10px !important;
    padding: 0.6rem 1.6rem !important;
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease !important;
}

.cta-nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    background-color: var(--accent);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.icon-cta {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transform: translateY(3.5px);
    transform-origin: center bottom;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
    margin-right: 5px;
}

.cta-nav:hover {
    transform: translateY(-3px);
    color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.4);
}

.cta-nav:hover::before { width: 100%; }

.cta-nav:hover .icon-cta {
    transform: translateY(1.5px) rotate(-12deg) scale(1.1);
    color: var(--primary);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle .bar:nth-child(2) {
    height: 3px;
    width: 50%;
    background-color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-container {
        flex-direction: row !important;
        justify-content: space-between;
        padding: 1.5rem 5% !important;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        gap: 2rem !important;
        transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.5rem !important;
    }
    
    .icon-cta {
        width: 24px;
        height: 24px;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

.hero {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--badge-bg);
    color: var(--badge-text);
    padding: 0.6rem 1.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero h1 span { color: var(--accent); }

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(10, 37, 64, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    background-color: var(--accent);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover {
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover::before { width: 100%; }

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    background-color: var(--badge-bg);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-6px);
}

.btn-secondary:hover::before { width: 100%; }

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.stat-item strong {
    display: block;
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1.5;
}

.svg-presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-heart-svg {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    transform-origin: center;
    filter: drop-shadow(0 10px 15px rgba(10, 37, 64, 0.1));
    animation: heart-pulse-main 3s ease-in-out infinite;
}

@keyframes heart-pulse-main {
    0% { transform: scale(1); }
    10% { transform: scale(1.06); }
    18% { transform: scale(1.02); }
    28% { transform: scale(1.08); }
    45% { transform: scale(1); }
    100% { transform: scale(1); }
}

.hero-image-box:hover .hero-heart-svg {
    animation-duration: 1.2s;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.heart-shape {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: heart-draw 2s ease-out forwards;
}

.ekg-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: ekg-flow 4s linear infinite;
}

.diag-point {
    opacity: 0;
    transform-origin: center;
    animation: point-pulse 3s ease-in-out infinite;
}

.diag-point.p1 { animation-delay: 0.5s; }
.diag-point.p2 { animation-delay: 1.5s; }
.diag-point.p3 { animation-delay: 2.5s; }

@keyframes heart-draw { to { stroke-dashoffset: 0; } }
@keyframes ekg-flow {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: -1000; }
}
@keyframes point-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-image-box:hover .ekg-line {
    animation-duration: 1.5s;
    stroke-width: 4px;
}

.hero-image-box:hover .diag-point {
    fill: var(--heart);
    filter: drop-shadow(0 0 8px var(--heart));
    transform: scale(1.3);
    transition: fill 0.4s ease, transform 0.3s ease, filter 0.4s ease;
}

.hero-image-box:hover .ekg-line {
    stroke: var(--heart);
    filter: drop-shadow(0 0 10px var(--heart));
    transition: stroke 0.4s ease, filter 0.4s ease;
}



.services {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.section-intro {
    padding: 3rem 0;
}

.section-intro h2 {
    font-size: 3.5rem;
    line-height: 3.5rem;
}

.section-intro p {
    font-size: 1.2rem;
    width: 60%;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-card .s-icon {
    width: 60px;
    height: 60px;
    background: var(--badge-bg);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.8;
    line-height: 1.6;
}

.service-card.urgent {
    border-left: 5px solid var(--heart);
}
.service-card.urgent .s-icon {
    background: #fff1f2;
}
.fast-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heart);
    background: #fff1f2;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-card.highlight {
    background: linear-gradient(145deg, #ffffff, var(--badge-bg));
    border: 1px solid var(--accent);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(19, 78, 74, 0.08);
    border-color: var(--accent);
}

.service-card:hover .s-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--accent);
    color: var(--white);
}

@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
}

.about-overlap {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    position: relative;
}

.overlap-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.overlap-visual {
    position: relative;
}

.main-photo-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(19, 78, 74, 0.15);
}

.main-photo {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.main-photo-wrapper:hover .main-photo {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    width: 260px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(19, 78, 74, 0.3);
    z-index: 5;
    padding: 0 10px 10px 10px;
}

.experience-badge strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 5px;
}

.experience-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.2;
}

.decorative-blob {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: var(--badge-bg);
    border-radius: 47% 53% 61% 39% / 45% 51% 49% 55%;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.6;
}

.overlap-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.overlap-text h2 span {
    color: var(--heart);
}

.description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.mini-team-row {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateX(15px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(19, 78, 74, 0.05);
}

.mini-img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-details strong {
    display: block;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.mini-details span {
    font-size: 0.9rem;
    color: var(--badge-text);
}

@media (max-width: 968px) {
    .overlap-container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .overlap-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .experience-badge {
        right: 0;
        padding: 1.5rem;
    }
    .overlap-text {
        text-align: center;
    }
    .mini-details {
        text-align: left!important;
    }
    .mini-card:hover {
        transform: translateY(-5px);
    }
}

.section-header-center {
    text-align: center;
    margin-bottom: 7rem;
}

.main-title {
    font-size: 3.5rem;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.8rem;
    }
    .section-header-center {
        margin-bottom: 3rem;
    }
}




.news-section {
    max-width: 1200px;
    margin: 10rem auto;
    padding: 0 2rem;
}

.section-header-left {
    margin-bottom: 4rem;
}

.section-header-left h2 {
    font-size: 3.5rem;
    line-height: 3rem;
}

.news-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.news-date {
    background: var(--badge-bg);
    color: var(--badge-text);
    min-width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.news-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Lexend', sans-serif;
}

.news-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.news-body {
    flex-grow: 1;
}

.news-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

.news-body h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.news-body p {
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.8;
    line-height: 1.5;
}

.news-item.alert {
    border-left: 4px solid var(--heart);
}

.news-item.alert .news-date {
    background: #fff1f2;
    color: var(--heart);
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(19, 78, 74, 0.05);
    border-color: var(--accent);
}

@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .news-date {
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 10px;
        gap: 10px;
        margin-right: 0;
    }
}





.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 78, 74, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.custom-alert-overlay.show {
    display: flex;
    opacity: 1;
}

.custom-alert-content {
    background: var(--white);
    max-width: 550px;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: center;
    border: 1px solid var(--badge-bg);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.custom-alert-overlay.show .custom-alert-content {
    transform: translateY(0);
}

.alert-icon {
    width: 60px;
    height: 60px;
    background: var(--badge-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.alert-icon svg {
    width: 30px;
    height: 30px;
}

.alert-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.alert-text p {
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.alert-close-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 12px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alert-close-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 212, 191, 0.4);
}

@media (max-width: 480px) {
    .custom-alert-content {
        padding: 1.5rem;
    }
}







.hours-section {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.hours-table-card {
    background: var(--primary);
    color: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(19, 78, 74, 0.15);
}

.table-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.table-header h3 { font-size: 1.5rem; color: white; }

.main-hours-list { list-style: none; }

.main-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-hours-list li strong { color: var(--accent); }
.main-hours-list li.weekend { opacity: 0.5; border-bottom: none; }

.admin-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.instructions-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.instruction-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    display: flex;
    gap: 1.5rem;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.instruction-card.highlight {
    border: 1px solid var(--accent);
    background: var(--badge-bg);
}

.ins-icon {
    font-size: 2rem;
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ins-text h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.ins-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.ins-text a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hours-grid { grid-template-columns: 1fr; }
}






.main-footer {
    background: var(--primary);
    color: var(--white);
    margin-top: 10rem;
    position: relative;
    overflow: hidden;
}

.footer-full-map {
    width: 100%;
    height: 500px;
    line-height: 0;
    filter: grayscale(0.2) contrast(1.1);
    border-bottom: 8px solid var(--accent);
    transition: filter 0.5s ease;
}

.footer-full-map:hover {
    filter: grayscale(0);
}

.footer-full-map iframe {
    width: 100%;
    height: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 10rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: 'Lexend', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-logo { margin-bottom: 2rem; }
.footer-logo strong, .footer-logo em { color: var(--white) !important; }

.footer-address {
    font-style: normal;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 0.9rem;
}

.contact-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-link:hover .contact-icon {
    transform: rotate(-10deg) scale(1.1);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.hours-list { list-style: none; }

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.hours-list li span { opacity: 0.7; }
.hours-list li strong { color: var(--accent); }
.hours-list li.closed strong { color: var(--white); }

.footer-bottom {
    background: rgba(0,0,0,0.15);
    padding: 1.6rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 700;
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-container {
        padding: 4rem 5%;
        grid-template-columns: 1fr 1fr;
        gap: 3rem 1.5rem;
    }

    .footer-column.info {
        grid-column: 1 / span 2;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }

    .footer-logo {
        display: grid;
        grid-template-columns: min-content min-content;
        justify-content: center;
        align-items: center;
        column-gap: 12px;
        margin-bottom: 1.5rem;
    }

    .footer-logo strong {
        text-align: left;
        width: 100%;
    }
    
    .footer-logo em {
        grid-column: 2;
        grid-row: 2;
        display: block;
        white-space: nowrap;
        font-size: 0.8rem;
        text-align: left;
    }
    
    .contact-links {
        align-items: center;
    }

    .footer-column h3 {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .footer-column h3::after {
        left: 0;
        transform: none;
    }

    .footer-nav, .hours-list {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        border-bottom: none;
        padding: 0.4rem 0;
    }

    .hours-list li span {
        font-size: 0.75rem;
        text-transform: uppercase;
        opacity: 0.6;
    }

    .hours-list li strong {
        font-size: 0.85rem;
    }

    .footer-full-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column.info {
        grid-column: span 1;
    }
    .footer-column h3 {
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-nav, .hours-list {
        align-items: center;
    }
    .hours-list li {
        align-items: center;
    }
}





.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  border-top: 1px solid #f1f5f9;
  font-family: 'Inter', sans-serif;
}

.cookie-banner.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  max-width: 1200px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cookie-buttons button.secondary {
  background: var(--badge-bg);
  color: var(--badge-text);
}

.cookie-buttons button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 212, 191, 0.3);
}

@media (max-width: 1024px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-content p {
        width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}






.premium-services {
    padding-top: 3rem;
}

.premium-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
}

.premium-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    flex: 1 1 350px;
    transition: 0.3s ease;
}

.premium-card.wide {
    flex: 2 1 600px;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.premium-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.premium-title-group h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.premium-price-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Lexend', sans-serif;
}

.premium-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.premium-list li {
    font-size: 14px;
    color: #64748b;
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.premium-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.premium-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-note {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    font-size: 13px;
    border-left: 4px solid var(--primary);
    color: #475569;
}

.premium-icon {
    min-width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-icon svg { width: 26px; height: 26px; }

@media (max-width: 768px) {
    .premium-list { grid-template-columns: 1fr; }
    .premium-header { flex-direction: column; }
}








@media (max-width: 1400px) {
    .nav-container, .hero, .services, .about-overlap, .news-section, .hours-section, .footer-container {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 2rem 5%;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .cta-nav {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
        gap: 3rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }

    .stat-item strong {
        font-size: 1.8rem;
    }

    .svg-presentation {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-intro h2, .section-header-left h2, .overlap-text h2 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .section-intro p {
        width: 100%;
        margin-top: 1.5rem;
    }

    .services {
        margin: 4rem auto;
    }

    .news-section {
        margin: 5rem auto;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 4rem 5%;
        gap: 3rem;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .experience-badge {
        width: 200px;
        height: 140px;
    }

    .experience-badge strong {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .footer-full-map {
        height: 350px;
    }
}