/* ================================================
   LONG MY TRAVEL - ELEMENTOR WIDGETS (Scoped)
   Không chứa body/html/reset/loader/header.
   CSS variables được scope vào .lmtv-section-shell
   ================================================ */

/* ---------- CSS VARIABLES (scoped, không ảnh hưởng editor) ---------- */
.lmtv-section-shell,
.lmtv-section-shell [data-theme="gold"],
.elementor-widget-LMTV_EL_Widget_Hero .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_About .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_Services .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_Destinations .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_Testimonials .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_Cuisine .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_Culture .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_Gallery .lmtv-section-shell,
.elementor-widget-LMTV_EL_Widget_Contact .lmtv-section-shell {
    --primary: #D4AF37;
    --primary-rgb: 212, 175, 55;
    --primary-dark: #B8960F;
    --primary-light: #E8C84A;
    --primary-glow: rgba(212, 175, 55, 0.15);
    --gradient: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 150, 15, 0.05) 100%);
    /* light mode default for editor */
    --bg-body: #FAFAFA;
    --bg-section: #FFFFFF;
    --bg-section-alt: #F4F4F5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F9FAFB;
    --bg-input: #F4F4F5;
    --bg-header: rgba(255,255,255,0.9);
    --text-primary: #09090B;
    --text-secondary: #52525B;
    --text-tertiary: #A1A1AA;
    --border-color: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.15);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.12);
    --overlay-dark: rgba(0,0,0,0.5);
}

/* Dark mode khi trang có data-mode="dark" trên html/body */
[data-mode="dark"] .lmtv-section-shell {
    --bg-body: #050505;
    --bg-section: #0A0A0A;
    --bg-section-alt: #080808;
    --bg-card: #111111;
    --bg-card-hover: #181818;
    --bg-input: #0F0F0F;
    --bg-header: rgba(5,5,5,0.85);
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-tertiary: #71717A;
    --border-color: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.5);
    --overlay-dark: rgba(0,0,0,0.7);
}

/* ================================================
   BUTTONS
   ================================================ */
/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: #000;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 14px;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

.btn-cta {
    font-size: 12px;
    padding: 10px 20px;
}

.text-accent {
    color: var(--primary);
    transition: color 0.5s ease;
}


/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
    /* Fallback tối khi chưa set ảnh nền — đảm bảo text trắng luôn đọc được */
    background-color: #0A0A0A;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.1)
    }
}

/* ---------- Detail Body Layout ---------- */
.detail-body {
    padding: 48px 0 96px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-block {
    animation: fadeUp 0.6s ease forwards;
}

.detail-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.detail-heading i {
    color: var(--primary);
    font-size: 18px;
}

.detail-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.detail-text p {
    margin-bottom: 12px;
}

/* ---------- Highlights ---------- */
.detail-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.highlight-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.highlight-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---------- Detail Gallery ---------- */
.detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.detail-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

.detail-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.detail-gallery-item:hover img {
    transform: scale(1.06);
}

.detail-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.detail-gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* ---------- Itinerary ---------- */
.detail-itinerary {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.detail-itinerary::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border-color);
}

.itinerary-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 24px;
}

.itinerary-item:last-child {
    padding-bottom: 0;
}

.itinerary-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    z-index: 1;
}

.itinerary-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.itinerary-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 72px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    transition: color 0.3s;
}

.hero-scroll a:hover {
    color: var(--primary);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}


/* ================================================
   SECTIONS COMMON
   ================================================ */
.section {
    padding: 96px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}


/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-3 {
    transition-delay: 0.3s;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.15s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.3s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.45s;
}

.animate-fade-up.delay-4 {
    animation-delay: 0.6s;
}

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


/* ================================================
   ABOUT
   ================================================ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.about-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.4s;
}

.about-card:hover .about-card-icon {
    background: var(--gradient);
    color: #000;
    transform: scale(1.1);
}

.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-card-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

/* ================================================
   SERVICES
   ================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--primary);
    transition: all 0.4s;
}

.service-card:hover .service-card-icon {
    background: var(--gradient);
    color: #000;
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

/* ================================================
   DESTINATIONS
   ================================================ */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
}

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/2;
}

.dest-lg {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all 0.4s;
}

.dest-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.dest-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.dest-lg .dest-overlay h3 {
    font-size: 32px;
}

.dest-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-tertiary);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.testimonial-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ================================================
   CUISINE
   ================================================ */
.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cuisine-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s;
}

.cuisine-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.cuisine-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.cuisine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.cuisine-card:hover .cuisine-img img {
    transform: scale(1.08);
}

.cuisine-info {
    padding: 24px;
}

.cuisine-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.cuisine-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cuisine-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   CULTURE
   ================================================ */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.culture-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5/7;
    cursor: pointer;
}

.culture-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.culture-card:hover img {
    transform: scale(1.06);
}

.culture-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: all 0.4s;
}

.culture-card:hover .culture-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.culture-card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.culture-card-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
}

.culture-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    background: var(--primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
}

/* ================================================
   GALLERY MASONRY
   ================================================ */
.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 24px;
    color: #fff;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary);
    font-size: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-success {
    display: none;
    padding: 16px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    font-size: 14px;
    text-align: center;
    align-items: center;
    gap: 8px;
}

.form-success.show {
    display: flex;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

.contact-info-item>i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
}



/* ================================================
   LIGHTBOX
   ================================================ */
/* ================================================
   LIGHTBOX (FIX #5: Thêm class chuẩn vào global)
   ================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: fadeUp 0.3s ease;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
}
