/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #5A87B3;
    --dark-blue: #4A75A3;
    --light-blue: #6B99C8;
    --bg-blue: #E8F0F7;
    --primary-green: #7BC77D;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --text-gray: #6C757D;
    --border-color: #E0E0E0;
    --red: #DC3545;

}

/* SVG Icon Base Class - Using inline SVGs for maximum browser compatibility */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Dark icons (for light backgrounds) */
.icon-menu { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E"); }
.icon-close { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E"); }

/* Blue icons (for service cards) */
.service-icon .icon-visibility { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E"); }

/* White icons (for dark/blue backgrounds in hero, contact, footer) */
.hero .icon-place,
.contact .icon-place,
.btn-directions .icon-place { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); }

.hero .icon-phone,
.contact .icon-phone,
.floating-call-btn .icon-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E"); }

.back-to-top-btn .icon-arrow-up { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E"); }

.notification-banner .icon-event-busy { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E"); }

/* Default fallback icons (dark) */
.icon-place { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); }
.icon-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E"); }
.icon-visibility { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E"); }
.icon-arrow-up { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3E%3Cpath d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E"); }
.icon-event-busy { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3E%3Cpath d='M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E"); }

.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 40px; height: 40px; }

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

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

/* Header */
.header {
    background-color: var(--text-light);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #3B6BA8;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    padding: 8px 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    background-color: var(--text-light);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 44px;
    min-width: 44px;
}

.btn-secondary:hover {
    background-color: var(--bg-blue);
}

.btn-primary {
    background-color: var(--primary-green);
    border: none;
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary:hover {
    background-color: #6AB66C;
}

.btn-large {
    padding: 14px 80px;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

/* Hero fade-in animation */
.hero-fade-in {
    animation: fadeIn 1s ease forwards;
}

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

.hero-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
}

.opening-hours {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.opening-hours h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hour-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    text-align: left;
}

.time {
    font-weight: 400;
    text-align: right;
}

.contact-info {
    margin: 40px 0;
}

.address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.transport {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Hero Map Card */
.hero-map-card {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-map-card iframe {
    border-radius: 8px;
    overflow: hidden;
}

/* Map Placeholder for Lazy Loading */
.map-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background-image: url('map-preview.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.map-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.05);
}

.map-placeholder:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

.map-loading {
    pointer-events: none;
    opacity: 0.7;
}

.map-placeholder-text {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-directions {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    min-height: 44px;
}

.btn-directions:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 30px;
}

.phone,
.email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.email a {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px;
    display: inline-block;
    min-height: 44px;
    line-height: 28px;
}

.email a:hover {
    text-decoration: underline;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--text-light);
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

.service-card {
    background-color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s, opacity 0.6s ease, transform 0.6s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    min-height: 44px;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon .icon {
    color: var(--text-light);
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.service-description {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.services-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-list ul {
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.services-list li::marker {
    content: '• ';
    color: var(--primary-blue);
}

/* Important Information */
.important-info {
    padding: 80px 0;
    background-color: var(--text-light);
}

.section-title.red {
    color: var(--red);
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.info-content p {
    margin-bottom: 20px;
}

.info-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.info-content li {
    margin-bottom: 10px;
}

/* Professional Background */
.background {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.qualification {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    padding: 15px 0;
    padding-left: 30px;
    border-left: 2px solid var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

.timeline-item.timeline-visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 20px;
}

.timeline-item p {
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon {
    width: 32px;
    height: 32px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
}

.schedule-box {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-box h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.schedule-note {
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    padding: 40px 50px;
}

.footer-hours {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-payment {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.footer-divider {
    height: 1px;
    background-color: #999;
    margin: 30px 0;
}

.footer-address {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.footer-phone {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
}

.footer-contact-links {
    text-align: center;
    font-size: 17px;
}

.footer-contact-links a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.footer-separator {
    color: #333;
    margin: 0 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle .icon {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .nav {
        position: fixed;
        top: 68px; /* HEADER_HEIGHT - must match script.js constant */
        left: -100%;
        width: 280px; /* MOBILE_MENU_WIDTH - must match script.js constant */
        height: calc(100vh - 68px); /* 100vh minus HEADER_HEIGHT */
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        padding: 18px 30px;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        font-size: 16px;
    }

    .header-buttons {
        gap: 10px;
    }

    .btn-secondary,
    .btn-primary {
        padding: 12px 18px;
        font-size: 14px;
        min-height: 44px;
        min-width: 44px;
    }

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

    .contact-grid {
        flex-direction: column;
        gap: 25px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .hero-map-card {
        max-width: 100%;
        margin: 15px auto;
    }

    .hero-map-card iframe {
        height: 220px;
    }

    .btn-directions {
        padding: 14px 24px;
        min-height: 48px;
        font-size: 16px;
    }

    .services,
    .additional-services,
    .important-info,
    .background,
    .contact {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .btn-secondary {
        padding: 10px 14px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 16px;
    }

    .opening-hours,
    .schedule-box {
        padding: 24px 18px;
    }

    .btn-large {
        padding: 16px 40px;
        min-height: 52px;
        font-size: 17px;
    }

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

    .footer-hours {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-payment {
        font-size: 15px;
    }

    .footer-address,
    .footer-phone,
    .footer-contact-links {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-title {
        font-size: 20px;
    }

    .service-card {
        padding: 25px 18px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .contact-value {
        font-size: 16px;
    }

    .container {
        padding: 0 14px;
    }
}

/* Phone Link Styling */
.phone-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

/* White phone link in contact section */
.contact .phone-link {
    color: var(--text-light);
}

.contact .phone-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact .phone-link::after {
    background: var(--text-light);
}

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

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

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(123, 199, 125, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    background: #6AB66C;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(123, 199, 125, 0.5);
}

.floating-call-btn .icon {
    color: white;
    width: 28px;
    height: 28px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(123, 199, 125, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(123, 199, 125, 0.7);
    }
}

/* Hide floating button on desktop, show on tablet/mobile */
@media (min-width: 1024px) {
    .floating-call-btn {
        display: none;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(90, 135, 179, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(90, 135, 179, 0.4);
}

.back-to-top-btn .icon {
    color: white;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .floating-call-btn .icon {
        width: 24px;
        height: 24px;
    }

    .back-to-top-btn {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .back-to-top-btn .icon {
        width: 22px;
        height: 22px;
    }
}

/* Notification Banner */
.notification-banner {
    background-color: #FFB74D;
    /* Warm amber/orange for friendly notifications */
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(255, 183, 77, 0.3);
    display: none;

    /* Full width appearance */
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.notification-banner.info {
    background-color: #42a5f5;
    /* Blue for info */
    box-shadow: 0 4px 12px rgba(66, 165, 245, 0.3);
}

.notification-banner.warning {
    background-color: #FFB74D;
    /* Amber for warning/closed */
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.notification-banner .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.banner-messages {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.banner-messages p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .notification-banner {
        margin: 0;
        border-radius: 0;
        width: 100%;
    }
}

/* Specialties grid: 8 cards in 3 cols — center the last 2 */
.services-grid--specialties {
    grid-template-columns: repeat(6, 1fr);
}

.services-grid--specialties .service-card {
    grid-column: span 2;
}

.services-grid--specialties .service-card:nth-last-child(2) {
    grid-column: 2 / 4;
}

.services-grid--specialties .service-card:last-child {
    grid-column: 4 / 6;
}

@media (max-width: 1024px) {
    .services-grid--specialties {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid--specialties .service-card,
    .services-grid--specialties .service-card:nth-last-child(2),
    .services-grid--specialties .service-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .services-grid--specialties {
        grid-template-columns: 1fr;
    }

    .services-grid--specialties .service-card,
    .services-grid--specialties .service-card:nth-last-child(2),
    .services-grid--specialties .service-card:last-child {
        grid-column: span 1;
    }
}