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

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    min-height: 100vh;
    color: #000000;
    line-height: 1.7;
    transition: padding-top 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 60px;
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.mobile-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mobile-header.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.header-logo:hover {
    opacity: 0.7;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.home-button:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body.tabs-sticky {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body.tabs-sticky {
        padding-top: 70px;
    }
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 12px;
    padding: 56px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.profile-image {
    margin-bottom: 20px;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1.5px solid #000000;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 2.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.profile-bio {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 0;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.profile-intro {
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    font-style: normal;
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0 20px;
}

.profile-intro p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
    font-style: normal;
}

.profile-subtitle {
    font-size: 0.95rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 500;
    font-style: italic;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #000000;
}

.location-badge i {
    font-size: 0.8rem;
}

.locations-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px auto 30px auto;
    max-width: 400px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.locations-badge:hover {
    background: #ffffff;
    color: #000000;
}

.locations-badge i {
    font-size: 1rem;
    color: inherit;
}

.locations-badge span {
    letter-spacing: 0.5px;
}

/* Province Tabs */
.province-tabs-wrapper {
    position: relative;
    margin: 0 auto 40px;
    width: 100%;
    overflow: visible;
    padding-top: 4px;
}

.province-tabs {
    display: flex;
    gap: 12px;
    margin: 0 auto 0 24px;
    padding: 0 24px 0 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    z-index: 100;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.province-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.province-tabs::before {
    content: '';
    flex-shrink: 0;
    width: 0;
}

.province-tabs::after {
    content: '';
    flex-shrink: 0;
    width: 24px;
}

.province-tabs-wrapper.sticky {
    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) !important;
    padding: 16px 0 16px 0 !important;
    margin: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    animation: slideDown 0.3s ease-out !important;
    z-index: 10000 !important;
    transform: translateZ(0) !important;
    overflow: visible !important;
}

.province-tabs-wrapper.sticky .province-tabs {
    margin: 0 0 0 24px !important;
    padding: 0 24px 0 0 !important;
    overflow-y: visible !important;
}

/* Additional override for any conflicting styles */
.maps-section .province-tabs-wrapper.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.tab-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tab-button.active:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tab-button i {
    font-size: 0.7rem;
}

.tab-button span {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #000000;
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 6px;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-button.active .tab-badge {
    background: #ffffff;
    color: #000000;
}

.tab-button:hover .tab-badge {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
}

.tab-button.active:hover .tab-badge {
    background: #ffffff;
    color: #000000;
}

/* Hidden class for tab content */
.maps-container.hidden {
    display: none !important;
}

/* Links Section */
.links-section {
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: none;
    letter-spacing: -0.01em;
}

/* Override section title color when inside profile section */
.profile-section .section-title {
    color: #000000;
    text-shadow: none;
}


.links-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    text-decoration: none;
    color: #000000;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.social-icon:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.link-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.link-button:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.link-button i {
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

/* Social Media Brand Colors - removed, using black/white only */

/* Featured Slider Section */
.featured-slider-section {
    margin-bottom: 60px;
    padding: 0 24px;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 40px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-track {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: center;
}

.slider-card {
    width: 85%;
    max-width: 400px;
    height: 500px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    scroll-snap-align: center;
    flex-shrink: 0;
    pointer-events: auto;
}

.slider-card.active {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    z-index: 3;
    color: #ffffff;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.card-subtitle {
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Pagination Dots */
.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 0 20px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.pagination-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: #000000;
    opacity: 1;
}

.pagination-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

.pagination-dot.active:hover {
    background: #000000;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .featured-slider-section {
        padding: 0 40px;
    }
    
    .slider-card {
        width: 70%;
        max-width: 450px;
        height: 550px;
    }
    
    .slider-track {
        padding: 0 40px;
    }
    
    .card-title {
        font-size: 1.75rem;
    }
    
    .card-subtitle {
        font-size: 1rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .featured-slider-section {
        padding: 0 24px;
        max-width: 1200px;
        margin: 0 auto 60px;
    }
    
    .slider-wrapper {
        padding: 30px 0 50px;
    }
    
    .slider-card {
        flex: 0 0 450px;
        max-width: 450px;
        height: 600px;
        border-radius: 28px;
    }
    
    .slider-track {
        gap: 24px;
        padding: 0 24px;
    }
    
    .card-content {
        padding: 40px 32px 32px;
    }
    
    .card-title {
        font-size: 2rem;
    }
    
    .card-subtitle {
        font-size: 1.125rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .featured-slider-section {
        padding: 0 0;
    }
    
    .slider-card {
        width: 90%;
        max-width: 400px;
        height: 450px;
        border-radius: 20px;
    }
    
    .slider-track {
        gap: 16px;
        padding: 0 20px;
    }
    
    .card-content {
        padding: 28px 20px 20px;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-subtitle {
        font-size: 0.8125rem;
    }
    
    .pagination-dot {
        width: 6px;
        height: 6px;
    }
    
    .pagination-dot.active {
        width: 20px;
        height: 6px;
    }
}

/* Maps Section */
.maps-section {
    margin-bottom: 60px;
}

.maps-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.map-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.map-card:hover::before {
    opacity: 1;
}

.map-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
    padding: 14px 20px 14px;
    text-align: left;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-transform: uppercase;
}

.location-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    background: #fafafa;
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-card:hover .location-image {
    transform: scale(1.03);
}

/* Map Overlay */
.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.business-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.business-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    text-decoration: none;
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.business-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.business-link i {
    font-size: 0.875rem;
}

.business-link span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.map-description {
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.875rem;
    text-align: left;
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 0;
    padding: 24px 28px 20px;
    letter-spacing: 0.01em;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.description-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    flex-wrap: wrap;
}

.description-item i {
    color: #000000;
    font-size: 0.875rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.description-item span {
    color: rgba(0, 0, 0, 0.65);
    flex: 1;
    display: inline-block;
    line-height: 1.6;
}

.description-item a {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
    font-weight: 400;
}

.description-item a:hover {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
}

.description-item a:active {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
}

.description-item a:visited {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
}

.description-item .metro-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
    width: fit-content;
}

.description-item .metro-badge i {
    font-size: 0.6875rem;
    opacity: 0.8;
}

.description-item .phone-link {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.description-item .phone-link:hover {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
}

.description-item .phone-link:active {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
}

.description-item .phone-link:visited {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
}

.map-actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 0;
    padding: 0 28px 28px;
    border-top: none;
}

.map-actions .business-link,
.map-actions .gallery-button {
    flex: 1;
    width: 50%;
    justify-content: center;
}

.gallery-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.08em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-transform: uppercase;
}

.gallery-button:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.gallery-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.gallery-button i {
    font-size: 0.875rem;
}

.gallery-button span {
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-image-container img[src=""] {
    opacity: 0;
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}

.lightbox-counter {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.lightbox-close,
.lightbox-download,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    z-index: 10001;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover,
.lightbox-download:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-download {
    top: 20px;
    right: 80px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Thumbnails */
.lightbox-thumbnails {
    display: flex;
    gap: 12px;
    padding: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.lightbox-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lightbox-thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.lightbox-thumbnail:hover img {
    transform: scale(1.1);
}

.lightbox-thumbnail.active {
    border-color: #ffffff;
    border-width: 3px;
}

.lightbox-thumbnail.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Footer */
.footer {
    margin-top: auto;
    text-align: center;
    padding: 48px 0 32px;
    color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer p {
    margin-bottom: 0;
    font-size: 0.8125rem;
    font-weight: 400;
}

.footer a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #000000;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000000;
    text-decoration: underline;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        max-width: 640px;
        padding: 60px 40px;
    }
    
    .profile-section {
        padding: 64px 48px;
    }
    
    .social-icons-row {
        gap: 20px;
    }
    
    .social-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 640px;
    }
}


@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .profile-section {
        padding: 40px 24px;
        margin-bottom: 48px;
    }
    
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 2.25rem;
    }
    
    .profile-bio {
        font-size: 0.9375rem; 
    }
    
    .profile-intro {
        padding: 0 10px;
    }
    
    .profile-intro p {
        font-size: 0.8125rem;
    }
    
    .social-icons-row {
        gap: 12px;
        margin-top: 28px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .map-card {
        margin-bottom: 24px;
        border-radius: 12px;
    }
    
    .map-card h3 {
        font-size: 1.125rem;
        padding: 24px 24px 20px;
        letter-spacing: -0.02em;
    }
    
    .location-image-container {
        height: 240px;
    }
    
    .map-description {
        padding: 20px 24px 16px;
        font-size: 0.8125rem;
        line-height: 1.7;
        gap: 10px;
    }
    
    .description-item {
        gap: 10px;
    }
    
    .description-item i {
        font-size: 0.8125rem;
        width: 14px;
    }
    
    .map-actions {
        padding: 0 24px 24px;
        gap: 10px;
    }
    
    .map-actions .business-link,
    .map-actions .gallery-button {
        flex: 1;
        width: 50%;
    }
    
    .gallery-button {
        padding: 11px 20px;
        font-size: 0.6875rem;
        border-radius: 12px;
    }
    
    .gallery-button i {
        font-size: 0.8125rem;
    }
    
    .business-link {
        padding: 11px 20px;
        font-size: 0.6875rem;
        border-radius: 12px;
    }
    
    .business-link i {
        font-size: 0.8125rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .section-description {
        font-size: 0.8125rem;
        margin-bottom: 32px;
    }
    
    .province-tabs-wrapper {
        margin-bottom: 32px;
        padding-top: 4px;
    }
    
    .province-tabs {
        gap: 8px;
        margin: 0 auto 0 24px;
        padding: 0 24px 0 0;
    }
    
    .province-tabs::after {
        width: 24px;
    }
    
    .tab-button {
        padding: 10px 12px;
        font-size: 0.8125rem;
        text-transform: uppercase; 
    }
    
    .tab-badge {
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        font-size: 0.6875rem;
        margin-left: 4px;
    }
    
    .province-tabs-wrapper.sticky {
        padding: 12px 0 12px 0 !important;
        overflow: visible !important;
    }
    
    .province-tabs-wrapper.sticky .province-tabs {
        margin: 0 0 0 24px !important;
        padding: 2px 24px 2px 0 !important;
        overflow-y: visible !important;
    }
    
    body.tabs-sticky {
        padding-top: 70px;
    }
    
    .map-actions {
        gap: 8px;
    }
    
    .business-link {
        padding: 10px 16px;
        font-size: 0.6875rem;
    }
    
    .gallery-button {
        padding: 10px 16px;
        font-size: 0.6875rem;
    }
    
    .map-description {
        font-size: 0.8125rem;
    }
    
    /* Lightbox mobile styles */
    .lightbox-content {
        width: 100%;
        height: 100vh;
        padding: 10px;
    }
    
    .lightbox-main {
        margin-bottom: 10px;
    }
    
    .lightbox-close,
    .lightbox-download {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-download {
        top: 10px;
        right: 60px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
        left: auto;
    }
    
    .lightbox-thumbnails {
        padding: 10px;
        gap: 8px;
    }
    
    .lightbox-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .lightbox-counter {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* About Us Page Styles - Modern Design */
.about-hero {
    text-align: center;
    padding: 120px 24px 100px;
    margin-bottom: 100px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.about-text {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

/* Timeline Section - Modern Design */
.timeline-section {
    padding: 0 24px 80px;
    margin-bottom: 100px;
    position: relative;
}

.timeline-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.timeline-subtitle {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
    display: grid;
    gap: 40px;
}

.timeline-item {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

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

.timeline-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
}

.timeline-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.timeline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover .timeline-image::after {
    opacity: 0.3;
}

.timeline-content:hover .timeline-image img {
    transform: scale(1.1);
}

.timeline-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-location {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
}

.timeline-address {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-top: 8px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: block;
}

.timeline-phone {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #000000 !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px !important;
    margin-bottom: 0;
    width: fit-content;
    clear: both;
    visibility: visible !important;
    opacity: 1 !important;
}

.timeline-phone i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.timeline-phone:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.timeline-phone:hover i {
    transform: scale(1.1);
}

.timeline-phone:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.metro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0;
}

.metro-badge i {
    font-size: 0.75rem;
    opacity: 0.8;
}

.timeline-story {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 60px 50px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.story-text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: left;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* Looking Ahead Section - Modern Design */
.looking-ahead-section {
    padding: 100px 24px 80px;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
}

.looking-ahead-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.looking-ahead-text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.9;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.looking-ahead-text:last-child {
    margin-bottom: 0;
}

/* Onwards Section - Modern Design */
.onwards-section {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 24px;
}

.onwards-marker {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.onwards-box {
    border: 2px solid #000000;
    border-radius: 24px;
    padding: 60px 50px;
    margin-bottom: 32px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.onwards-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.onwards-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
    transition: transform 0.4s ease;
}

.onwards-box:hover .onwards-logo {
    transform: scale(1.05);
}

.onwards-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.onwards-subtext {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* Back Home Link - Modern Design */
.back-home {
    text-align: center;
    padding: 60px 24px 40px;
    margin-bottom: 40px;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #000000;
    letter-spacing: -0.01em;
}

.back-home-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.back-home-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.back-home-link:hover i {
    transform: translateX(-4px);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 24px 60px;
        margin-bottom: 80px;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-text {
        font-size: 1.0625rem;
    }
    
    .timeline-title {
        font-size: 2.5rem;
    }
    
    .timeline-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .timeline-image {
        border-radius: 24px 24px 0 0;
        min-height: 300px;
    }
    
    .timeline-info {
        padding: 32px 24px;
    }
    
    .timeline-location {
        font-size: 1.5rem;
    }
    
    .timeline-story {
        padding: 40px 32px;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .looking-ahead-text {
        font-size: 1rem;
    }
    
    .onwards-box {
        padding: 50px 32px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 20px 50px;
        margin-bottom: 60px;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 32px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .timeline-section {
        padding: 0 20px 60px;
        margin-bottom: 60px;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
    
    .timeline-subtitle {
        margin-bottom: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        border-radius: 16px;
    }
    
    .timeline-image {
        min-height: 250px;
        border-radius: 16px 16px 0 0;
    }
    
    .timeline-info {
        padding: 24px 20px;
    }
    
    .timeline-date {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .timeline-location {
        font-size: 1.25rem;
    }
    
    .timeline-address {
        font-size: 0.9375rem;
    }
    
    .timeline-phone {
        font-size: 0.875rem;
        padding: 8px 14px;
    }
    
    .timeline-story {
        padding: 32px 24px;
        border-radius: 16px;
        margin-top: 60px;
    }
    
    .story-text {
        font-size: 0.9375rem;
    }
    
    .looking-ahead-section {
        padding: 60px 20px 50px;
        border-radius: 16px;
    }
    
    .looking-ahead-text {
        font-size: 0.9375rem;
    }
    
    .onwards-section {
        padding: 50px 20px;
    }
    
    .onwards-box {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .onwards-logo {
        max-width: 160px;
    }
    
    .onwards-text {
        font-size: 1rem;
    }
    
    .onwards-subtext {
        font-size: 0.9375rem;
    }
}

