/* ========================================
   Praxis Dr. Wildmoser-Buser - Original Design
   ======================================== */

/* Original Farben */
:root {
    --blue: #354d92;
    --purple: #4f6dcd;
    --teal: #43d5cb;
    --teal-light: #4fc9c4;
    --teal-bg: #d3f7f3;
    --gray-bg: #e9edf0;
    --footer-bg: #2a303b;
    --footer-text: #c7c7c7;
    --text-dark: #222222;
    --text-gray: #6e6e6e;
    --white: #ffffff;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    background: #f0f2f5;
}

.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1440px) {
    .page-wrapper {
        max-width: 100%;
        box-shadow: none;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Barrierefreiheit / Accessibility
   ======================================== */

/* Skip-to-Content Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

/* Verbesserte Fokus-Zustände */
*:focus {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduzierte Bewegung für Nutzer mit Bewegungsempfindlichkeit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================
   Header / Navigation
   ======================================== */
.header {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 1440px) {
    .header {
        max-width: 100%;
    }
}

.header-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.logo-names {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.3px;
}

.logo-amp {
    color: var(--teal);
    font-weight: 400;
    padding: 0 2px;
}

.logo-bag {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 2px;
    margin-top: 1px;
}

.logo:hover .logo-names {
    color: var(--purple);
}

.logo:hover .logo-amp {
    color: var(--teal-light);
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-menu a {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: var(--teal);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    min-height: 550px;
    margin-top: 70px;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 24, 45, 0.6);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
    color: var(--white);
}

.slide-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-slider {
    display: inline-block;
    background: var(--teal);
    color: var(--text-dark);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.5s both;
}

.btn-slider:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-prev, .slider-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--teal);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active, .dot:hover {
    background: var(--teal);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========================================
   Service Boxes (3 farbige Boxen)
   ======================================== */
.service-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-boxes-two {
    grid-template-columns: 1fr 2fr;
}

.service-box {
    padding: 50px 53px;
    text-align: center;
    color: var(--white);
}

.box-blue {
    background: var(--blue);
}

.box-purple {
    background: var(--purple);
}

.box-teal {
    background: var(--teal);
    color: var(--text-dark);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    fill: currentColor;
}

.service-box h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.phone-number {
    font-size: 22px !important;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    opacity: 1 !important;
}

.phone-number a {
    color: inherit;
    text-decoration: none;
}

.phone-number a:hover {
    text-decoration: underline;
}

.email-link {
    font-size: 16px;
    margin-top: 10px;
}

.email-link a {
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
}

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

.address-link {
    font-size: 15px;
    margin-top: 12px;
    line-height: 1.5;
}

.address-link a {
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
}

.address-link a:hover {
    text-decoration: underline;
    opacity: 1;
}

.service-hours {
    text-align: left;
}

.service-hours p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 2px;
    opacity: 1;
}

/* Schedule Calendar */
.service-box-wide {
    padding: 35px 25px;
}

.schedule-calendar {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.schedule-header {
    background: rgba(0, 0, 0, 0.15);
}

.schedule-header .schedule-day,
.schedule-header .schedule-time {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 8px;
    color: var(--text-dark);
    opacity: 0.8;
}

.schedule-day,
.schedule-time {
    padding: 12px 10px;
    font-size: 14px;
    text-align: center;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
}

.schedule-row:not(.schedule-header):hover .schedule-day,
.schedule-row:not(.schedule-header):hover .schedule-time {
    background: rgba(255, 255, 255, 0.7);
}

.schedule-day {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.day-full {
    display: none;
}

.schedule-time {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.schedule-time:last-child {
    border-right: none;
}

.schedule-closed {
    color: rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.schedule-note {
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
    opacity: 0.85;
    color: var(--text-dark);
}

@media (min-width: 500px) {
    .day-abbr {
        display: none;
    }

    .day-full {
        display: inline;
    }
}

@media (max-width: 768px) {
    .schedule-header .schedule-day,
    .schedule-header .schedule-time {
        font-size: 10px;
        padding: 8px 5px;
    }

    .schedule-day,
    .schedule-time {
        padding: 10px 6px;
        font-size: 12px;
    }
}

/* ========================================
   Features / Leistungen Section
   ======================================== */
.features-section {
    background: var(--gray-bg);
    padding: 80px 0;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.feature-item h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* More Services Accordion */
.more-services {
    margin-top: 40px;
}

.more-services summary {
    cursor: pointer;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    background: var(--blue);
    border-radius: 30px;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
    margin: 0 auto;
    display: flex;
    max-width: 300px;
}

.more-services summary::-webkit-details-marker {
    display: none;
}

.more-services summary::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.more-services[open] summary::after {
    transform: rotate(180deg);
}

.more-services summary:hover {
    background: var(--purple);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-detail-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--teal);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.service-detail-content {
    flex: 1;
}

.service-detail-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.service-detail-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

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

/* ========================================
   Team Section (Dunkler Hintergrund)
   ======================================== */
.team-section {
    background: linear-gradient(135deg, var(--blue) 0%, #1a2a5e 100%);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--teal);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-member h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-details {
    margin-top: 10px;
}

.team-details summary {
    cursor: pointer;
    color: var(--teal);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.team-details summary::-webkit-details-marker {
    display: none;
}

.team-details summary::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.team-details[open] summary::after {
    transform: rotate(180deg);
}

.team-details summary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* CV Timeline */
.cv-timeline {
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
}

.cv-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 35px;
    bottom: 35px;
    width: 2px;
    background: linear-gradient(180deg, var(--teal) 0%, var(--purple) 100%);
    opacity: 0.5;
}

.cv-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 5px;
}

.cv-item:last-child {
    margin-bottom: 0;
}

.cv-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cv-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.cv-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--teal);
    transition: all 0.3s ease;
}

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

.cv-date {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    background: rgba(67, 213, 203, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cv-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.cv-item.cv-highlight .cv-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #2dd4bf 100%);
}

.cv-item.cv-highlight .cv-content {
    border-left-color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.cv-item.cv-highlight .cv-date {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
}

@media (max-width: 768px) {
    .cv-timeline::before {
        left: 20px;
    }

    .cv-item {
        padding-left: 0;
    }

    .cv-icon {
        width: 28px;
        height: 28px;
    }

    .cv-icon svg {
        width: 14px;
        height: 14px;
    }

    .cv-content {
        padding: 10px 12px;
    }

    .cv-date {
        font-size: 10px;
    }

    .cv-content p {
        font-size: 12px;
    }
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    background: var(--gray-bg);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 25px;
}

/* Logo im Kontaktbereich */
.contact-logo {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--teal);
}

.contact-logo .logo-names {
    font-size: 22px;
}

.contact-logo .logo-subtitle {
    font-size: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.contact-item a {
    color: var(--blue);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--teal);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-map iframe {
    display: block;
}

/* ========================================
   Footer (Dunkler Footer)
   ======================================== */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    font-size: 15px;
    color: var(--footer-text);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-slider {
        min-height: 450px;
    }

    .slide {
        min-height: 450px;
    }

    .slide-content {
        padding: 80px 20px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .service-boxes,
    .service-boxes-two {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 40px 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid var(--gray-bg);
    }

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

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

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

    .hero-slider {
        min-height: 400px;
        margin-top: 60px;
    }

    .slide {
        min-height: 400px;
    }

    .slide-content {
        padding: 60px 15px;
    }

    .slide-content h1 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .features-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-photo {
        width: 180px;
        height: 180px;
    }

    .hours-table-wrapper {
        padding: 25px 15px;
    }

    .hours-table td {
        padding: 12px 5px;
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .logo-names {
        font-size: 15px;
    }

    .logo-bag {
        font-size: 9px;
    }

    .slide-content h1 {
        font-size: 22px;
    }

    .btn-slider {
        padding: 12px 25px;
        font-size: 14px;
    }

    .service-box {
        padding: 30px 20px;
    }

    .service-box h3 {
        font-size: 18px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .hours-table .day {
        width: 30%;
    }
}
