/* ===== CSS VARIABLES (Màu sc mới lạ) ===== */
:root {
    --orange: #FF6B35;
    --orange-light: #FFB88C;
    --orange-dark: #E85A2A;
    --pink: #FF5CA1;
    --pink-light: #FFB3D9;
    --green: #00D9A3;
    --green-light: #7FFFD4;
    --purple: #9B59B6;
    --purple-light: #C39BD3;
    --blue: #3498DB;
    --blue-light: #AED6F1;
    
    --dark: #1A1A2E;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --cream: #FFF9F0;
    
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Dancing Script', cursive;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
}

.section-head {
    margin-bottom: 60px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-desc {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
}

.btn-primary-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-primary-outline:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-text {
    background: transparent;
    color: var(--orange);
    padding: 0;
}

.btn-text:hover {
    gap: 12px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-order {
    padding: 10px 24px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-order:hover {
    background: var(--orange-dark);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.top-bar {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    padding: 8px 0;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 0.875rem;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-actions a {
    color: var(--white);
}

.lang-switch {
    display: flex;
    gap: 4px;
}

.lang-btn {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--white);
    color: var(--orange);
}

/* Main Header */
.main-header {
    padding: 16px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */
.brand a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    border-radius: var(--radius-full);
    transition: width 0.3s;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--orange);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.icon-btn:hover {
    background: var(--gray-light);
}

.cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--pink);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.mobile-btn span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.mobile-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFE8D6 100%);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--orange-light), transparent);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--green-light), transparent);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-small {
    display: block;
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--orange);
    font-weight: 400;
}

.title-big {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
}

.title-big.highlight {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--gray);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 1s ease both;
}

.card-1 {
    top: 0;
    left: 0;
    width: 200px;
    animation-delay: 0.5s;
}

.card-2 {
    top: 50%;
    right: 0;
    width: 220px;
    animation-delay: 0.7s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    animation-delay: 0.9s;
}

.card-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--orange-light), var(--pink-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.visual-emoji {
    font-size: 4rem;
}

.card-info h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.card-info span {
    font-size: 0.875rem;
    color: var(--orange);
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.feature-icon.orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
}

.feature-icon.pink {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: var(--white);
}

.feature-icon.green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
}

.feature-icon.purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 0;
    background: var(--cream);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 24px;
    background: var(--white);
    color: var(--gray);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
}

.tab:hover,
.tab.active {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--orange-light), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.product-info {
    padding: 24px;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.product-btn:hover {
    transform: scale(1.1);
}

/* ===== SPECIAL ===== */
.special {
    padding: 100px 0;
    background: var(--white);
}

.special-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.special-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.special-emoji {
    font-size: 12rem;
    position: relative;
    z-index: 2;
}

.special-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.badge-text {
    font-weight: 700;
    color: var(--orange);
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    font-size: 1.25rem;
}

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

.special-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.special-features {
    margin-bottom: 32px;
}

.special-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray);
}

.special-features svg {
    color: var(--green);
    flex-shrink: 0;
}

.special-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 1rem;
    color: var(--gray);
}

.special-cta {
    display: flex;
    gap: 16px;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.timeline-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--gray);
}

.about-img-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.about-img.img-1 {
    grid-row: 1 / 3;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    min-height: 200px;
}

.img-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 12px;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 6px solid var(--cream);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-top: 8px;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
    animation-delay: var(--delay);
}

.gallery-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-emoji {
    font-size: 5rem;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-emoji {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--white);
}

.gallery-cat {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== LOCATIONS ===== */
.locations {
    padding: 100px 0;
    background: var(--cream);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.location-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    border-radius: var(--radius-md);
}

.location-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
}

.location-address {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.location-time {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    transition: var(--transition);
}

.location-btn:hover {
    gap: 12px;
}
/* ===== MAP SECTION ===== */
.map-section {
    padding: 100px 0;
    background: var(--cream);
}

.map-wrapper {
    width: 100%;
    margin-top: 48px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.map-wrapper iframe {
    display: block;
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-wrapper {
        margin-top: 32px;
    }
    
    .map-wrapper iframe {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 40px 0;
    }
    
    .map-wrapper iframe {
        height: 250px !important;
    }
}
/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--white);
}

.contact-icon.orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.contact-icon.pink {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
}

.contact-icon.green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form input:not(.form-row input) {
    margin-bottom: 16px;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

#formMessage {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: none;
}

#formMessage.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

#formMessage.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}
/* Contact Form - thêm vào phần CONTACT */
.contact-form-wrapper {
    background: var(--gray-light);
    padding: 40px;
    border-radius: var(--radius-xl);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

#formMessage {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: none;
}

#formMessage.success {
    background: #d4edda;
    color: #155724;
    display: block;
    animation: slideIn 0.3s ease;
}

#formMessage.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-logo p {
    font-size: 0.875rem;
    color: var(--gray);
}

.footer-desc {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
}

.footer-col h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--orange);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.scroll-top.show {
    display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .special-wrapper,
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 92px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 92px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .mobile-btn {
        display: flex;
    }
    
    .btn-order {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .title-big {
        font-size: 3.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-tabs {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-badge {
        position: static;
        margin: 20px auto 0;
    }
}

@media (max-width: 480px) {
    .container-fluid {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .title-big {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .visual-card {
        width: 160px !important;
    }
    
    .visual-emoji {
        font-size: 3rem;
    }
}


