/**
 * ============================================================================
 * BYMICO AS - WEBSITE STYLES
 * ============================================================================
 *
 * COLOR SCHEME:
 * -------------
 * Primary Blue (Brand):    #2c3e6e (dark), #3d5291 (light)
 * Accent Blue:             #4a90d9 (main), #6ba3e3 (light) - used for CTAs, links, highlights
 *
 * Neutrals (Light to Dark):
 *   - White:      #ffffff - backgrounds, cards
 *   - Cream:      #f8f9fc - subtle backgrounds
 *   - Gray-100:   #f1f3f8 - light backgrounds
 *   - Gray-200:   #e2e6ef - borders, dividers
 *   - Gray-300:   #c8cdd9 - disabled states
 *   - Gray-400:   #9aa2b5 - placeholder text
 *   - Gray-500:   #6b7489 - secondary text
 *   - Gray-600:   #4a5264 - body text
 *   - Gray-700:   #2d3342 - dark text, footer bg
 *   - Gray-800:   #1a1f2c - headings, footer
 *
 * Feedback Colors:
 *   - Success:    #22c55e (green)
 *   - Error:      #ef4444 (red)
 *   - Warning:    #f59e0b (orange)
 *
 * TYPOGRAPHY:
 * -----------
 * Headings:  'Playfair Display' (serif) - elegant, professional
 * Body:      'Inter' (sans-serif) - clean, readable
 *
 * BREAKPOINTS:
 * ------------
 * Mobile:    max-width: 48em (768px)
 * Tablet:    max-width: 64em (1024px)
 * Desktop:   min-width: 75em (1200px)
 *
 * ============================================================================
 */

/* ====== CSS VARIABLES ====== */

:root {
    /* PRIMARY COLORS - Brand palette */
    --primary: #2c3e6e;
    --primary-dark: #1e2a4a;
    --primary-light: #3d5291;
    --accent: #4a90d9;
    --accent-light: #6ba3e3;

    /* NEUTRALS - Gray scale */
    --white: #ffffff;
    --cream: #f8f9fc;
    --gray-100: #f1f3f8;
    --gray-200: #e2e6ef;
    --gray-300: #c8cdd9;
    --gray-400: #9aa2b5;
    --gray-500: #6b7489;
    --gray-600: #4a5264;
    --gray-700: #2d3342;
    --gray-800: #1a1f2c;

    /* FEEDBACK - Status colors */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;

    /* SHADOWS - Elevation levels */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* TRANSITIONS - Animation speeds */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ====== BASE STYLES ====== */

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

html {
    scroll-behavior: smooth;
    /* keep the scrollbar gutter reserved so overlays that lock body
       scroll never shift the fixed header */
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
}

/* ====== SCROLL REVEAL ====== */

.reveal {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ====== GO TO TOP BUTTON ====== */

#go_top {
    display: none;
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    z-index: 99;
    border: none;
    outline: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 3.125rem;
    height: 3.125rem;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

#go_top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.arrow {
    border: solid white;
    border-width: 0 0.1875rem 0.1875rem 0;
    display: inline-block;
    padding: 0.3125rem;
    transition: transform var(--transition-normal);
}

.up {
    transform: rotate(-135deg);
}

.arrow.flip {
    transform: rotate(45deg);
}

/* ====== TOP CONTACT BAR ====== */

#header_contact_info {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 0.75rem 5%;
}

#header_contact_info a {
    color: var(--white);
    transition: opacity var(--transition-fast);
}

#header_contact_info a:hover {
    opacity: 0.8;
    color: var(--white);
}

#list_contact_info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

#list_contact_info > li {
    white-space: nowrap;
    font-size: 0.875rem;
}

#list_contact_info > li > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#list_contact_info > li > a > .fa {
    font-size: 1rem;
}

/* ====== NAVBAR ====== */

.nav-desktop {
    display: flex;
    align-items: center;
    padding: 1rem 3rem;
    background: var(--white);
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-mobile {
    display: none;
}

#navbar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#logo {
    height: clamp(4rem, 6vw, 7rem);
    width: auto;
    transition: transform var(--transition-normal);
}

#logo:hover {
    transform: scale(1.02);
}

#list_navigation {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

#list_navigation > li > a {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

#list_navigation > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width var(--transition-normal);
}

#list_navigation > li > a:hover {
    color: var(--primary);
}

#list_navigation > li > a:hover::after {
    width: 100%;
}

#burger_menu {
    display: none;
}

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

#hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 42, 74, 0.9) 0%,
        rgba(44, 62, 110, 0.8) 50%,
        rgba(74, 144, 217, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 50rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 3.125rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    transition: all var(--transition-normal);
    box-shadow: 0 0.25rem 0.9375rem rgba(74, 144, 217, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.5);
    color: var(--white);
}

/* ====== HIGHLIGHTS SECTION ====== */

#section_highlights {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 5rem 5%;
    gap: 2rem;
}

.article_highlights {
    text-align: center;
    flex: 1 1 17.5rem;
    max-width: 21.875rem;
    padding: 2rem;
}

.article_highlights i {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    display: block;
}

.article_highlights .highlight-title,
.article_highlights h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.article_highlights .highlight-description,
.article_highlights p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ====== SERVICES SECTION ====== */

#section_services {
    padding: 5rem 5%;
    background: transparent;
}

#grid_title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

#section_services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 87.5rem;
    margin: 0 auto;
}

.article_services {
    flex: 1 1 18.75rem;
    max-width: 25rem;
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.article_services:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
}

.article_services .service-title,
.article_services h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.article_services .service-description,
.article_services p {
    color: var(--gray-500);
    line-height: 1.7;
}

.article_services.spacer {
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    border: none;
}

/* ====== REFERENCES/REVIEWS SECTION ====== */

.reviews-container {
    background: var(--white);
    margin: 0;
    overflow: hidden;
    position: relative;
}

.reviews-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}

.reviews-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--accent-light);
}

.reviews-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.average-rating {
    font-size: 2.5rem;
    font-weight: 700;
}

.review-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Slider */
.slider-container {
    position: relative;
    padding: 4rem 5%;
    max-width: 62.5rem;
    margin: 0 auto;
    min-height: 25rem;
}

.slider-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.review-slide {
    min-width: 100%;
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.quote-icon {
    font-size: 3rem;
    color: var(--gray-200);
    font-family: Georgia, serif;
}

.quote-icon.right {
    text-align: right;
    line-height: 0.5;
}

.review-content {
    padding: 1rem 2rem;
}

.review-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.avatar-letter {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.reviewer-name {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.review-rating {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Slider navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.nav-btn.prev {
    left: calc(50% - 50vw + 1.5rem);
}

.nav-btn.next {
    right: calc(50% - 50vw + 1.5rem);
}

.nav-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Slider dots */
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot:hover {
    background: var(--gray-400);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Stars */
.stars {
    --rating: 0;
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0.125rem;
    background: linear-gradient(90deg, #fbbf24 var(--percent), var(--gray-300) var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reviews-header .stars {
    font-size: 1.75rem;
}

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

#section_about_us {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

#section_about_us h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

#section_about_us p {
    max-width: 50rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ====== CONTACT SECTION ====== */

#section_contact_us {
    padding: 5rem 5%;
    background: var(--cream);
}

#section_contact_us h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 0.75rem;
}

#section_contact_us > p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 3rem;
}

#address_contact_us {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

dardanialabs-mailform {
    flex: 1 1 25rem;
    --dardanialabs-accent: var(--primary);
    --dardanialabs-text: var(--gray-700);
    --dardanialabs-bg: var(--white);
    --dardanialabs-input-bg: var(--white);
    --dardanialabs-border: var(--gray-200);
    --dardanialabs-radius: 0.75rem;
    --dardanialabs-error: var(--error);
    --dardanialabs-success: var(--success);
}

#iframe_google_maps {
    flex: 1 1 25rem;
    min-height: 25rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

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

#footer_main {
    background: var(--gray-800);
    padding: 5rem 4rem 2rem;
    border-top: 1px solid var(--gray-700);
    margin: 0;
}

.footer-container {
    max-width: 87.5rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 18.75rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 3.35rem;
    width: auto;
    object-fit: contain;
    margin-left: -1rem;
}

.footer-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 1.5rem 0;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin: 0;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-400);
}

.contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 1.5;
    color: var(--accent-light);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.contact-item-address {
    align-items: flex-start;
}

.contact-item-address svg {
    margin-top: 0.2rem;
}

.contact-item-address a {
    line-height: 1.8;
    text-align: left;
}

.contact-heading {
    padding-left: 2rem;
}

/* Hours Items */
.hours-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-400);
}

.hours-day {
    color: var(--gray-400);
}

.hours-time {
    color: var(--gray-300);
}

.hours-closed {
    color: var(--accent-light);
}

#footer_copyright {
    background: var(--gray-800);
    border-top: 1px solid var(--gray-700);
    padding: 1.5rem 4rem;
    margin: 0;
}

/* ====== LOADING PLACEHOLDERS ====== */

.placeholder-shimmer {
    background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.placeholder-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gray-200);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.placeholder-title {
    height: 1.5rem;
    background: var(--gray-200);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    width: 70%;
}

.placeholder-text {
    height: 1rem;
    background: var(--gray-200);
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    width: 90%;
}

.placeholder-rating {
    height: 3.75rem;
    background: var(--gray-200);
    border-radius: 0.75rem;
    width: 100%;
}

/* Error messages */
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.error-message i {
    color: var(--warning);
}

.error-message h2 {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.error-message p {
    color: var(--gray-500);
}

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

@media (max-width: 64em) {
    /* Contact bar */
    #list_contact_info {
        justify-content: center;
        gap: 1.5rem;
    }

    #list_contact_info > li > a > span {
        display: none;
    }

    /* Navigation */
    .nav-desktop {
        padding: 1rem 5%;
    }

    #logo {
        height: clamp(3rem, 10vw, 5rem);
    }

    #list_navigation {
        display: none;
    }

    #burger_menu {
        display: flex;
        flex-direction: column;
        z-index: 102;
    }

    #burger_menu > a {
        z-index: 103;
        position: relative;
    }

    #burger_menu > a > i {
        font-size: 2.25rem;
        color: var(--gray-700);
        cursor: pointer;
        transition: color var(--transition-fast);
    }

    #burger_menu.menu-open > a > i {
        color: var(--gray-700);
    }

    #burger_menu_list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 18.75rem;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 10rem 2rem 2rem;
        transition: right var(--transition-normal);
        list-style: none;
        z-index: 101;
    }

    #burger_menu_list.open {
        right: 0;
    }

    #burger_menu_list > li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-200);
    }

    #burger_menu_list > li:last-child {
        border-bottom: none;
    }

    #burger_menu_list > li > a {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--gray-700);
    }

    #burger_menu_list > li > a > i {
        color: var(--primary);
        width: 1.5rem;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 99;
    }

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

    /* Hero */
    #hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    /* Sections */
    #section_highlights,
    #section_services,
    #section_about_us,
    #section_contact_us {
        padding: 3rem 5%;
    }

    .article_services {
        padding: 2rem;
    }

    /* Reviews slider */
    .slider-container {
        padding: 2rem 1rem;
    }

    .nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .nav-btn.prev {
        left: calc(50% - 50vw + 0.5rem);
    }

    .nav-btn.next {
        right: calc(50% - 50vw + 0.5rem);
    }

    .review-slide {
        padding: 1.5rem;
    }

    .review-content {
        padding: 1rem 0;
    }
}

@media (max-width: 64em) {
    #footer_main {
        padding: 4rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 25rem;
        margin: 0 auto;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo img {
        margin-left: 0;
    }

    .contact-heading {
        padding-left: 0;
    }

    .contact-items {
        align-items: center;
    }

    .hours-items {
        align-items: center;
    }

    .hours-item {
        justify-content: center;
    }
}

@media (min-width: 75em) {
    .slider-container {
        max-width: 62.5rem;
    }
}

/* Focus states for accessibility */
:where(a, button, [role="button"], .slider-dot, input, textarea):focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
