/* Modern CSS Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

body {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap; /* Optimize font loading */
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
    overflow-y:auto;
    width: 100%;
    touch-action: pan-y;
}

/* Scroll animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Layout Container */
.container {

    background-color: transparent;
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);*/
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
    background-color: white;
}

/* Modern Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    box-shadow: 0 8px 32px rgba(217, 119, 6, 0.1);
    backdrop-filter: none;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    gap: 2rem;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: #92400e;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, #fbbf24, transparent);
}

/* Modern Section Styling - Orange sections (odd) */
.section {
    margin: 2rem auto;
    padding: 4rem 10%;
    display: flex;
    align-items: flex-start;
    gap: 10%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    border: 1px solid rgba(217, 119, 6, 0.2);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1);
    transition: all 0.3s ease;
    max-width: 70%;
    position: relative;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(217, 119, 6, 0.15);
}

.section2 {
    padding: 4rem 10%;
    margin: 2rem auto;
    display: flex;
    align-items: flex-start;
    gap: 10%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    color: #92400e;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1);
    transition: all 0.3s ease;
    max-width: 70%;
    position: relative;
}

.section2:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(217, 119, 6, 0.15);
}

.section2 img {
    width: 45%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.2);
    transition: transform 0.3s ease;
}

.section2 img:hover {
    transform: scale(1.05);
}

.section2 .text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    width: 100%;
    max-width: 100%;
}

.section img {
    width: 45%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.2);
    transition: transform 0.3s ease;
}

.section img:hover {
    transform: scale(1.05);
}

.section .text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    width: 100%;
    max-width: 100%;
}

/* Modern Footer Styling */
.footer {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    padding: 4rem 10%;
    gap: 3rem;
    border-radius: 24px 24px 0 0;
    margin-top: 4rem;
    border: 1px solid rgba(217, 119, 6, 0.2);
    transition: none;
}

.footer:hover {
    transform: none;
}

.footer-divider {
    width: 2px;
    height: 300px;
    background: linear-gradient(to bottom, transparent, rgba(217, 119, 6, 0.8), transparent);
    margin: 0 1.5rem;
    opacity: 0.8;
    align-self: center;
    flex-shrink: 0;
}

.footer-hours {
    flex: 1;
    min-width: 250px;
}

.footer-hours h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.footer-hours ul {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.footer-hours a {
    color: inherit;
    text-decoration: none;
}

.footer-hours a:hover {
    text-decoration: underline;
}

/* Modern Button Styling - Matching Nav Menu */
.btn {
    background: rgba(255, 255, 255, 0.95);
    color: #92400e;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: block;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.1);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: auto;
    box-sizing: border-box;
    /* Touch-friendly */
    -webkit-tap-highlight-color: rgba(217, 119, 6, 0.2);
    touch-action: manipulation;
}

.btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

/* Modern Phone Icon */
.phone-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Alternative phone icon using CSS only */
.phone-icon-css::before {
    content: "📞";
    margin-right: 8px;
    vertical-align: middle;
}

/* Modern Web Form Icon */
.form-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10,9 9,9 8,9'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10,9 9,9 8,9'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Alternative form icon using CSS only */
.form-icon-css::before {
    content: "📝";
    margin-right: 8px;
    vertical-align: middle;
}

/* Modern Web Meeting/Video Call Icon */
.meeting-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 7l-7 5 7 5V7z'/%3E%3Crect x='1' y='5' width='15' height='14' rx='2' ry='2'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 7l-7 5 7 5V7z'/%3E%3Crect x='1' y='5' width='15' height='14' rx='2' ry='2'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Alternative meeting icon using CSS only */
.meeting-icon-css::before {
    content: "📹";
    margin-right: 8px;
    vertical-align: middle;
}

/* Modern Person/User Icon */
.person-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Alternative person icon using CSS only */
.person-icon-css::before {
    content: "👤";
    margin-right: 8px;
    vertical-align: middle;
}

/* Modern Email/Mail Icon */
.email-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Alternative email icon using CSS only */
.email-icon-css::before {
    content: "✉️";
    margin-right: 8px;
    vertical-align: middle;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 25px;
    color: #000000;
}

.appointment-details {
    margin-bottom: 25px;
}

.detail-item {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(217, 119, 6, 0.05);
    border-radius: 8px;
    border-left: 4px solid #d97706;
    color: #000000;
}

.detail-item strong {
    color: #92400e;
    display: block;
    margin-bottom: 10px;
}

.hours-table {
    margin: 15px 0;
}

.hours-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.hours-table th {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
}

.hours-table td {
    padding: 8px;
    text-align: center;
    border: none;
    background: #f8f9fa;
    color: #000000;
    font-weight: 500;
}

.hours-table tr:nth-child(even) td {
    background: #ffffff;
}

.hours-table tr:not(:last-child) td {
    border-bottom: 1px solid #e9ecef;
}

.hours-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}


.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-actions .btn {
    min-width: 140px;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: calc(100vh - 40px);
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 20px;
    }


    .hours-table table {
        font-size: 0.9rem;
    }

    .hours-table th {
        padding: 10px 6px;
        font-size: 0.9rem;
    }

    .hours-table td {
        padding: 6px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

/* Button variants */
.btn-primary {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #92400e;
}

.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: #92400e;
}

.btn-white:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
}

/* Content and Button Layout */
.content {
    flex: 1;
    margin-bottom: 1rem;
}

/* Ensure lists have same padding as text in sections */
.section .content ul,
.section2 .content ul {
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    list-style-position: inside;
    list-style-type: disc;
}

.section .content li,
.section2 .content li {
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0.5em;
    text-indent: 0;
}

.content-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d97706, transparent);
    margin: 1.5rem 0;
    opacity: 0.6;
}

.content-divider-white {
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    opacity: 0.8;
}

.centered-text {
    text-align: center;
}

.button-group {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}

.button-group .btn {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    flex: 0 0 auto;
    box-sizing: border-box;
}

/* Mobile Navigation - Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    /* Touch-friendly */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #92400e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: white;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Modern Responsive Styles */
@media (max-width: 768px) {
    /* Full screen on mobile - remove padding */
    html, body {
        padding: 0 !important;
        margin: 0 !important;
        overflow-y:auto;
    }
    
    body {
        padding-top: 0 !important;
        min-height: auto; /* Allow content to determine height */
    }

    /* Hero image fits horizontally on mobile - only takes space it needs */
    .hero-image {
        height: auto !important;
        position: relative !important;
        width: 100% !important;
        object-fit: contain !important;
        object-position: center top !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        vertical-align: top;
        line-height: 0;
        top: auto !important;
        left: auto !important;
        z-index: auto !important;
    }
    
    /* Ensure nav doesn't create space */
    nav {
        margin-bottom: 0 !important;
    }

    /* Navigation - Mobile Hamburger Menu */
    nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        z-index: 999 !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%) !important;
        transition: none !important;
        display: block !important;
        border-bottom: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    nav.active {
        transition: transform 0.3s ease !important;
    }

    /* Override fade-in animation on mobile - keep menu hidden */
    nav.fade-in {
        opacity: 1 !important;
        transform: translateY(-100%) !important;
    }

    nav.fade-in.visible {
        opacity: 1 !important;
        transform: translateY(-100%) !important;
    }

    /* Menu open state */
    nav.active {
        transform: translateY(0) !important;
    }

    nav.fade-in.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    nav.fade-in.visible.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 80px 1rem 2rem 1rem;
        max-height: calc(100vh - 80px);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(217, 119, 6, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .section img.slide-in-right {
        display: none !important;
    }

    /* Disable all scroll-triggered animations on mobile to prevent scroll sticking */
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: left;
        border-radius: 0;
        /* Touch-friendly */
        -webkit-tap-highlight-color: rgba(217, 119, 6, 0.2);
        touch-action: manipulation;
    }

    .nav-divider {
        display: none;
    }

    /* Sections - Full width on mobile */
    .section,
    .section2 {
        flex-direction: column;
        text-align: left;
        padding: 2rem 1.5rem;
        margin: 0 !important;
        gap: 1.5rem;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .section img,
    .section2 img {
        width: 100%;
        max-width: 100%;
        order: -1; /* Images first on mobile */
    }

    .section .text,
    .section2 .text {
        padding-top: 0;
        font-size: 1rem;
        min-height: auto;
    }

    .content {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Buttons - Full width and optimized */
    .btn {
        font-size: 0.95rem;
        padding: 1rem;
        line-height: 1.5;
    }

    .button-group {
        gap: 0.75rem;
        align-items: center;
        width: 100%;
    }
    
    .button-group .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Footer - Full width */
    .footer,
    .footer-white {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }

    .footer-divider {
        display: none;
    }

    .footer-hours {
        width: 100%;
        text-align: center;
    }

    .footer-hours ul {
        font-size: 1rem;
    }

    .footer-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .brush-container {
        margin: 1rem 0;
        padding: 2rem 1rem;
    }

    .section-white-brush {
        margin: 1rem 0;
        padding: 2rem 1.5rem;
    }

    /* Expand button positioning for mobile */
    .expand-btn {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    /* Extra small phones */
    body {
        padding-top: 0;
        min-height: auto; /* Allow content to determine height */
        overflow-y:auto;
    }

    /* Disable all scroll-triggered animations on extra small mobile */
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-image {
        height: auto;
        width: 100%;
        object-fit: contain;
        object-position: center top;
    }

    .section,
    .section2 {
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .nav-menu {
        padding: 70px 1rem 1.5rem 1rem;
    }

    .nav-menu a {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.875rem;
    }

    .content {
        font-size: 0.9rem;
    }

    .footer,
    .footer-white {
        padding: 1.5rem 1rem;
    }

    .footer-image {
        height: 200px;
    }

    .mobile-menu-toggle {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }
}

.footer-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.2);
    transition: transform 0.3s ease;
}

.footer-image:hover {
    transform: scale(1.05);
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.brush-container {
    background-image: url(brush.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3rem 2rem;
    margin: 3rem auto;
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    text-align: center;
    background-color: transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.brush-container:hover {
    transform: translateY(-3px);
}

/* Modern White Brushstroke Section */
.section-white-brush {
    background-color: transparent;
    padding: 4rem 10%;
    margin: 3rem auto;
    color: #92400e;
    font-weight: 700;
    font-size: 1.35rem;
    text-align: center;
    position: relative;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.section-white-brush:hover {
    transform: translateY(-5px);
}

.section-white-brush::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(brush.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    z-index: -1;
    border-radius: 24px;
}

.hero {
    position: relative;
    top: 0;
    left: 0;
    height: 400px;
    z-index: 1;
}

.segment-divider {
    height: 20px;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.05);
    margin: 4rem 0;
    border-radius: 10px;
}

.footer-white {
    display: flex;
    flex-wrap: wrap;
    color: #92400e;
    padding: 4rem 10%;
    gap: 3rem;
    border-radius: 24px 24px 0 0;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(217, 119, 6, 0.2);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1);
    transition: none;
}

.footer-white:hover {
    transform: none;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1);
}

/* Expand Button Styling */
.expand-btn {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orange sections (section class) - white button */
.section .expand-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #92400e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section .expand-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.section .expand-btn.expanded {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
    transform: rotate(45deg);
}

.section .expand-btn.expanded:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #92400e;
}

/* White sections (section2 class) - orange button */
.section2 .expand-btn {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.section2 .expand-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #92400e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.section2 .expand-btn.expanded {
    background: rgba(255, 255, 255, 0.95);
    color: #92400e;
    transform: rotate(45deg);
}

.section2 .expand-btn.expanded:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
}

.expand-btn:active {
    transform: scale(0.95);
}

/* Expandable Content Styling */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    margin-top: 1rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
}

.expandable-content.expanded {
    max-height: 1000px;
}

.expandable-content p {
    margin: 0 0 1rem 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
}

.expandable-content ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.expandable-content li {
    margin-bottom: 0.5rem;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
}

/* Section positioning for expand button - no longer needed with flex layout */