:root {
    --primary-color: #333333;
    --bg-color: #f5f5f7;
    --text-color: #1d1d1f;
    --text-muted: #86868b;
    --card-bg: #ffffff;
    --radius: 18px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    /* flex: 1; Removed to bring footer closer */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}



.footer {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.2rem;
    color: #000;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 32px;
}

.card h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.card h2 i.fa-location-dot {
    color: #ea4335;
}

.card h2 i.fa-address-book {
    color: #4285f4;
}

.address-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.current-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    padding: 15px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.old-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    white-space: nowrap;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

@media (min-width: 480px) {
    .map-actions {
        flex-direction: row;
    }
}

.btn-google {
    background-color: #fff;
    color: #1f1f1f;
    border: 1px solid #dadce0;
}

.btn-google i {
    color: #ea4335;
}

.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #4285f4;
    color: #4285f4;
}

.btn-apple {
    background-color: #fff;
    color: #1f1f1f;
    border: 1px solid #dadce0;
}

.btn-apple i {
    color: #000;
}

.btn-apple:hover {
    background-color: #f8f9fa;
    border-color: #000;
}

.btn-primary {
    background: #000;
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

.gallery-trigger {
    text-align: center;
    margin-top: 10px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-radius: 12px;
    background-color: #fafafa;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
    border: 1px solid transparent;
}

.contact-item:hover {
    background-color: #f0f0f0;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--text-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

a[href^="tel"] .icon {
    color: #34c759 !important;
    border-color: #34c759;
}

a[href^="tel"]:hover .icon {
    background-color: #34c759;
    color: white !important;
}

a[href*="facebook"] .icon {
    color: #1877f2 !important;
    border-color: #1877f2;
}

a[href*="facebook"]:hover .icon {
    background-color: #1877f2;
    color: white !important;
}

.contact-item .text {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-item .value {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
}

.footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
    width: 100%;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 0.4s ease;
}

.slide.active {
    display: flex;
}

.lightbox-image-container {
    max-width: 80vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.img-caption {
    color: #333;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    background: #f0f0f0;
    padding: 10px 20px;
    border-radius: 20px;
}

.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2010;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background: #f5f5f7;
    border-color: #d1d1d1;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #333;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2020;
    transition: all 0.2s;
}

.lightbox-close:hover {
    color: #000;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: fadeIn 0.8s ease-out forwards;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .lightbox-image-container {
        max-height: 75vh;
        width: 95%;
    }

    .lightbox-img {
        max-height: 60vh;
    }

    .nav-btn {
        top: auto;
        bottom: 20px;
        transform: none;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    .img-caption {
        font-size: 0.9rem;
        padding: 8px 15px;
        margin-top: 10px;
    }
}