/* Import Events Styles */
@import url('./events.css');

/* Hero Section with Customer Images */
.hero {
    background-color: var(--color-background-dark);
    color: var(--color-text-secondary);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 81, 30, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/gallery/yoyo-beer-garden-evening-atmosphere-01.jpg?v=7');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) saturate(1.2);
    z-index: 0;
    animation: zoomEffect 30s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.05) translate(-1%, -1%);
    }
    100% {
        transform: scale(1.1) translate(1%, 1%);
    }
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-decoration::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 81, 30, 0.3) 0%, rgba(244, 81, 30, 0) 70%);
    animation: float 15s ease-in-out infinite alternate;
}

.hero-decoration::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.3) 0%, rgba(0, 188, 212, 0) 70%);
    animation: float 12s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(20px) scale(0.9);
        opacity: 0.5;
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
    padding: calc(var(--base-spacing) * 12) 0;
    max-width: 1000px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: calc(var(--base-spacing) * 3);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeInUp 1s ease-out forwards;
}

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

.hero-accent {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(244, 81, 30, 0.5);
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-accent);
    z-index: -1;
    animation: glowLine 3s infinite alternate;
}

@keyframes glowLine {
    0% {
        box-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
        height: 8px;
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 188, 212, 0.8);
        height: 10px;
    }
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: calc(var(--base-spacing) * 3);
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-branches {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: calc(var(--base-spacing) * 4);
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-branches span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-branches i {
    color: var(--color-primary);
}

.hero-branches strong {
    color: var(--color-accent);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: calc(var(--base-spacing) * 3);
    margin-bottom: calc(var(--base-spacing) * 5);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-buttons .btn {
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn-primary {
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.hero-buttons .btn-secondary {
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

/* New Social Links Style */
.hero-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: calc(var(--base-spacing) * 12);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.scroll-down a {
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    text-decoration: none;
}

/* Video Showcase Section */
.video-showcase {
    padding: calc(var(--base-spacing) * 8) 0;
    background: linear-gradient(135deg, var(--color-background-muted) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(244, 81, 30, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.video-showcase .container {
    position: relative;
    z-index: 1;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.video-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover::before {
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    aspect-ratio: 9 / 16;
    background: linear-gradient(45deg, #000000, #1a1a1a);
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    width: 100%;
    height: auto;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.video-container.playing video {
    filter: brightness(1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(244, 81, 30, 0.3) 50%,
        rgba(0, 188, 212, 0.2) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
    pointer-events: auto;
    cursor: pointer;
}

.video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 0.3;
    pointer-events: auto;
}

.video-container.playing:hover .video-overlay {
    opacity: 0.3;
    pointer-events: auto;
}

.video-overlay:hover {
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(244, 81, 30, 0.4) 50%,
        rgba(0, 188, 212, 0.3) 100%
    );
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(244, 81, 30, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: pulse 3s infinite;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.play-button:hover::before {
    opacity: 0.2;
}

.play-button i {
    margin-left: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(244, 81, 30, 0.4), 0 0 0 0 rgba(244, 81, 30, 0.7);
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(244, 81, 30, 0.4), 0 0 0 25px rgba(244, 81, 30, 0);
    }
    100% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(244, 81, 30, 0.4), 0 0 0 0 rgba(244, 81, 30, 0);
        transform: scale(1);
    }
}

.play-button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(244, 81, 30, 0.6);
}

.video-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-duration i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.video-container.playing .video-controls {
    opacity: 1;
    transform: translateY(0);
}

.video-container:hover .video-controls {
    opacity: 1;
    transform: translateY(0);
}

.video-container.playing:hover .video-controls {
    opacity: 1;
    transform: translateY(0);
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 2px;
}

.time-display {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    min-width: 80px;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-container.loading .loading-spinner {
    opacity: 1;
}

.video-error {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(244, 81, 30, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    backdrop-filter: blur(10px);
}

.error-content {
    text-align: center;
    color: white;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 300px;
}

.error-content i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.error-content h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.error-content p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.retry-btn, .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 5px;
}

.retry-btn:hover, .download-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 81, 30, 0.4);
}

.download-btn {
    background: var(--color-secondary);
}

.download-btn:hover {
    background: #388e3c;
}

.video-info {
    padding: 30px;
    text-align: left;
}

.video-info h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
}

.video-info p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

.video-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.video-stats i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

/* Responsive Design for Videos */
@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        max-width: 900px;
        margin: 60px auto 0;
    }
    
    .video-container {
        aspect-ratio: 9 / 16;
        max-height: 650px;
    }
    
    .video-info {
        padding: 35px;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .video-grid {
        max-width: 1000px;
    }
    
    .video-container {
        max-height: 700px;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .video-showcase {
        padding: calc(var(--base-spacing) * 6) 0;
    }
    
    .video-grid {
        gap: 30px;
        margin-top: 40px;
    }
    
    .video-item {
        border-radius: 20px;
    }
    
    .video-container {
        border-radius: 16px 16px 0 0;
        max-height: 500px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .video-info {
        padding: 25px 20px;
        text-align: center;
    }
    
    .video-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .video-controls {
        padding: 15px 10px 10px;
        gap: 10px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .time-display {
        font-size: 0.7rem;
        min-width: 70px;
    }
}

/* Customer Gallery */
.customer-gallery {
    padding: calc(var(--base-spacing) * 8) 0;
    background-color: var(--color-background-muted);
    position: relative;
}

/* Các class cũ không sử dụng nữa được giữ lại phòng khi cần
.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px;
}
*/

/* Bố cục gallery mới */
.gallery-modern {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "featured"
        "grid"
        "highlight";
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-featured {
    grid-area: featured;
}

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

.gallery-highlight {
    grid-area: highlight;
}

/* Gallery Item Styles */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

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

/* Gallery sizes */
.gallery-item.large {
    height: 500px;
}

.gallery-item.medium {
    height: 300px;
}

.gallery-item.small {
    height: 200px;
}

.gallery-item.panorama {
    height: 300px;
}

/* Overlay styles */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

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

.gallery-tag {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.gallery-btn {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    align-self: flex-end;
}

.gallery-btn:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

/* Gallery actions */
.gallery-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.gallery-share {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 600;
}

.gallery-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) rotate(5deg);
}

/* Responsive layout */
@media (min-width: 768px) {
    .gallery-modern {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "featured featured"
            "grid grid"
            "highlight highlight";
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-modern {
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
            "featured featured grid grid"
            "featured featured grid grid"
            "highlight highlight highlight highlight";
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

/* Animation delays for staggered entry */
[data-delay="0.2"] {
    animation-delay: 0.2s;
}

[data-delay="0.4"] {
    animation-delay: 0.4s;
}

[data-delay="0.6"] {
    animation-delay: 0.6s;
}

[data-delay="0.8"] {
    animation-delay: 0.8s;
}

[data-delay="1"] {
    animation-delay: 1s;
}

/* Quick Order Form */
.quick-order {
    padding: calc(var(--base-spacing) * 8) 0;
    background-color: var(--color-background-light);
    position: relative;
}

.quick-order::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFFFFF"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23FFFFFF"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FFFFFF"/></svg>');
    background-size: cover;
    background-position: center top;
    z-index: 1;
    transform: rotate(180deg);
}

.quick-order-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-form {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF8A65 100%);
    padding: calc(var(--base-spacing) * 5);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: var(--color-text-secondary);
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.order-form h3 {
    text-align: center;
    margin-bottom: calc(var(--base-spacing) * 4);
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.order-form-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--base-spacing) * 3);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: calc(var(--base-spacing));
    color: var(--color-text-secondary);
}

.form-group label i {
    margin-right: calc(var(--base-spacing));
}

.order-form input {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: all 0.3s;
    height: 46px;
    box-sizing: border-box;
}

.order-form textarea {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: all 0.3s;
}

.order-form select {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333333' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 35px;
    height: 46px; /* Đảm bảo chiều cao đồng nhất */
    box-sizing: border-box;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.order-form select:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333333' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}

.order-form .full-width {
    grid-column: 1 / -1;
}

.order-form button {
    background-color: var(--color-secondary);
    color: var(--color-text-secondary);
    border: none;
    border-radius: 9999px;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 25px auto 0;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
    height: 54px;
    grid-column: 1 / -1;
    letter-spacing: 0.5px;
}

.order-form button:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.5);
}

.order-form button i {
    transition: all 0.3s ease;
}

.order-form button:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-item {
        flex: 1 0 calc(50% - 10px);
    }
    
    .order-form-inner {
        grid-template-columns: 1fr;
    }
    
    .order-form button {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .form-group[data-fullwidth="true"] {
        grid-column: 1 / -1;
    }
    
    /* Đảm bảo input date và time hiển thị full width trên mobile */
    .form-group input[type="date"],
    .form-group input[type="time"] {
        width: 100%;
        box-sizing: border-box;
    }
} 

/* Heart animation */
.heart-animation {
    position: absolute;
    font-size: 1.5rem;
    color: var(--color-primary);
    opacity: 0;
    animation: floatHeart 1s forwards;
    pointer-events: none;
}

@keyframes floatHeart {
    0% {
        transform: scale(0) translateY(0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5) translateY(-40px);
        opacity: 0;
    }
} 

/* Features Section - Tại Sao Chọn YOYO */
.features {
    padding: calc(var(--base-spacing) * 10) 0;
    background-color: var(--color-background-light);
    position: relative;
    overflow: hidden;
}

.features-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(244, 81, 30, 0.1), rgba(244, 81, 30, 0.05));
    top: -150px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
    bottom: -100px;
    right: -50px;
}

.bg-dot-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.features-container {
    position: relative;
    z-index: 1;
    /* display: grid; */
    grid-template-columns: 1fr;
    grid-template-areas:
        "main"
        "grid"
        "testimonial";
    gap: 40px;
}

/* Main Feature Spotlight */
.features-main {
    grid-area: main;
}

.feature-spotlight {
    display: flex;
    flex-direction: column;
    background-color: var(--color-background-muted);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-spotlight-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-spotlight:hover .feature-spotlight-image img {
    transform: scale(1.05);
}

.feature-spotlight-content {
    padding: 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF8A65 100%);
    color: var(--color-text-secondary);
}

.feature-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-spotlight .feature-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-spotlight p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Features Grid */
.features-grid {
    grid-area: grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-primary);
    transition: height 0.3s ease;
    z-index: -1;
}

.feature-card[data-color="primary"]::after {
    background-color: var(--color-primary);
}

.feature-card[data-color="secondary"]::after {
    background-color: var(--color-secondary);
}

.feature-card[data-color="accent"]::after {
    background-color: var(--color-accent);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::after {
    height: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-background-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.feature-card[data-color="secondary"]:hover .feature-icon {
    background-color: var(--color-secondary);
}

.feature-card[data-color="accent"]:hover .feature-icon {
    background-color: var(--color-accent);
}

.feature-content {
    margin-bottom: 15px;
}

.feature-content .feature-title {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.feature-hover-info {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover-info {
    height: auto;
    opacity: 1;
    margin-top: 15px;
}

.feature-hover-info ul {
    list-style: none;
    padding: 0;
}

.feature-hover-info li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-hover-info li i {
    color: var(--color-primary);
}

.feature-card[data-color="secondary"] .feature-hover-info li i {
    color: var(--color-secondary);
}

.feature-card[data-color="accent"] .feature-hover-info li i {
    color: var(--color-accent);
}

/* Testimonial Slider */
.features-testimonial {
    grid-area: testimonial;
    background-color: var(--color-background-muted);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.features-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 0 0 0 100%;
}

.testimonial-slider-container {
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    flex: 0 0 100%;
    opacity: 0.3;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Slide Enter/Exit Animations */
.testimonial-slide:not(.active) .testimonial-content {
    transform: translateY(20px);
    opacity: 0.6;
    transition: all 0.6s ease 0.2s;
}

.testimonial-slide.active .testimonial-content {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease 0.3s;
}

.testimonial-slide:not(.active) .testimonial-author img {
    transform: scale(0.8);
    opacity: 0.7;
    transition: all 0.5s ease 0.1s;
}

.testimonial-slide.active .testimonial-author img {
    transform: scale(1);
    opacity: 1;
    transition: all 0.5s ease 0.4s;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 25px;
    color: #333;
    min-height: 3.2em;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author .testimonial-name {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Navigation Controls */
.testimonial-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-testimonial:hover .testimonial-navigation {
    opacity: 1;
}

.testimonial-prev,
.testimonial-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #FF8A65);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(244, 81, 30, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: auto;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.testimonial-prev::before,
.testimonial-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.testimonial-prev:hover::before,
.testimonial-next:hover::before {
    transform: translateX(0);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 35px rgba(244, 81, 30, 0.4);
    opacity: 1;
}

.testimonial-prev:active,
.testimonial-next:active {
    transform: scale(1.05) translateY(0);
    transition: all 0.1s ease;
}

.testimonial-prev {
    left: -28px;
}

.testimonial-next {
    right: -28px;
}

/* Navigation Icons Animation */
.testimonial-prev i,
.testimonial-next i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-prev:hover i {
    transform: translateX(-2px);
}

.testimonial-next:hover i {
    transform: translateX(2px);
}

/* Enhanced Dot Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 35px;
    z-index: 10;
    position: relative;
    padding: 15px 0;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(244, 81, 30, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    border: 2px solid transparent;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    opacity: 0;
}

.testimonial-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0;
    transition: all 0.3s ease;
    scale: 0;
}

.testimonial-dot:hover {
    background-color: rgba(244, 81, 30, 0.4);
    transform: scale(1.25);
    border-color: rgba(244, 81, 30, 0.3);
}

.testimonial-dot:hover::before {
    background: rgba(244, 81, 30, 0.1);
    opacity: 1;
}

.testimonial-dot.active {
    background-color: var(--color-primary);
    transform: scale(1.4);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(244, 81, 30, 0.3);
}

.testimonial-dot.active::after {
    opacity: 1;
    scale: 1;
}

.testimonial-dot.active::before {
    background: rgba(244, 81, 30, 0.15);
    opacity: 1;
    transform: scale(1.2);
}

/* Dot Progress Indicator */
.testimonial-dots::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.testimonial-dots.showing-progress::before {
    width: 60px;
}

/* Enhanced Mobile & Tablet Experience */
@media (max-width: 1024px) {
    .features-testimonial {
        position: relative;
        overflow: visible;
    }
    
    .testimonial-navigation {
        opacity: 1;
        pointer-events: auto;
    }
    
    .testimonial-prev,
    .testimonial-next {
        opacity: 0.9;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(244, 81, 30, 0.4);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .features-testimonial {
        padding: 20px 15px;
        margin: 0 -5px;
        border-radius: 12px;
    }
    
    .testimonial-slider-container {
        position: relative;
        padding: 0 10px;
    }
    
    .testimonial-content {
        text-align: center;
        padding: 0 5px;
    }
    
    .testimonial-content blockquote {
        font-size: 1.05rem;
        line-height: 1.5;
        min-height: auto;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .testimonial-author {
        gap: 12px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-author img {
        width: 60px;
        height: 60px;
        order: -1;
    }
    
    .testimonial-author div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-author .testimonial-name {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .testimonial-author p {
        font-size: 0.85rem;
        margin: 0;
    }
    
    /* Improved Mobile Navigation */
    .testimonial-prev,
    .testimonial-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
        box-shadow: 0 6px 20px rgba(244, 81, 30, 0.5);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonial-prev:active,
    .testimonial-next:active {
        transform: scale(0.9);
        background: linear-gradient(135deg, #e64a19, #FF7043);
    }
    
    .testimonial-prev {
        left: -22px;
    }
    
    .testimonial-next {
        right: -22px;
    }
    
    /* Enhanced Mobile Dots */
    .testimonial-dots {
        gap: 12px;
        margin-top: 30px;
        padding: 10px 0;
    }
    
    .testimonial-dot {
        width: 12px;
        height: 12px;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonial-dot:before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: transparent;
        transition: background 0.2s ease;
    }
    
    .testimonial-dot:active:before {
        background: rgba(244, 81, 30, 0.2);
    }
    
    .testimonial-dot::after {
        width: 6px;
        height: 6px;
    }
    
    .testimonial-dot.active {
        transform: scale(1.4);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .features-testimonial {
        padding: 15px 10px;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
        padding: 0 5px;
        line-height: 1.4;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-author p {
        font-size: 0.8rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-prev {
        left: -20px;
    }
    
    .testimonial-next {
        right: -20px;
    }
    
    .testimonial-dots {
        gap: 10px;
        margin-top: 25px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dot:before {
        width: 24px;
        height: 24px;
        top: -7px;
        left: -7px;
    }
}

/* Auto-play animation */
.testimonial-slider.auto-playing {
    animation: testimonialAutoSlide 60s infinite linear;
}

@keyframes testimonialAutoSlide {
    0% { transform: translateX(0); }
    10% { transform: translateX(-10%); }
    20% { transform: translateX(-20%); }
    30% { transform: translateX(-30%); }
    40% { transform: translateX(-40%); }
    50% { transform: translateX(-50%); }
    60% { transform: translateX(-60%); }
    70% { transform: translateX(-70%); }
    80% { transform: translateX(-80%); }
    90% { transform: translateX(-90%); }
    100% { transform: translateX(0); }
}

/* Responsive Styles */
@media (min-width: 768px) {
    .feature-spotlight {
        flex-direction: row;
        align-items: stretch;
        height: 400px;
    }
    
    .feature-spotlight-image {
        width: 50%;
        height: auto;
    }
    
    .feature-spotlight-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "main grid"
            "testimonial grid";
    }
    
    .features-main {
        grid-row: span 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-spotlight {
        height: 100%;
        flex-direction: column;
    }
    
    .feature-spotlight-image {
        width: 100%;
        height: 50%;
    }
    
    .feature-spotlight-content {
        width: 100%;
        height: 50%;
    }
} 

/* Fixed Contact Icons */
.fixed-contact-icons {
    position: fixed;
    right: 30px;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
    animation: shakeIcons 5s ease-in-out infinite;
}

@keyframes shakeIcons {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    2% { transform: translateY(-50%) rotate(3deg); }
    4% { transform: translateY(-50%) rotate(-3deg); }
    6% { transform: translateY(-50%) rotate(3deg); }
    8% { transform: translateY(-50%) rotate(-2deg); }
    10% { transform: translateY(-50%) rotate(0deg); }
    90% { transform: translateY(-50%) rotate(0deg); }
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1) translateX(-5px);
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.phone-icon {
    background-color: #4CAF50;
}

.booking-icon {
    background-color: var(--color-primary);
}

.zalo-icon {
    background-color: #0068FF;
}

.messenger-icon {
    background-color: #0084FF;
}

.icon-tooltip {
    position: absolute;
    right: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-icon:hover .icon-tooltip {
    opacity: 1;
    visibility: visible;
}


/* Hero Booking Widget */
.hero-booking-widget {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    max-width: 320px;
    width: 100%;
    animation: floatWidget 3s infinite alternate ease-in-out;
}

@keyframes floatWidget {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.widget-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.widget-header i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.widget-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.widget-form-group input:focus {
    outline: none;
    background-color: white;
}

.widget-form button {
    background-color: var(--color-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: flex-end;
    transition: all 0.3s;
    margin-top: 5px;
}

.widget-form button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for booking elements */
@media (max-width: 768px) {
    .hero-booking-widget {
        position: static;
        max-width: 100%;
        margin-top: 30px;
        animation: none;
    }
    
    .widget-content {
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* Full width for date/time inputs on mobile */
    .order-form-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Đảm bảo các trường input date và time hiển thị đầy đủ chiều rộng trên mobile */
    #date, #time {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Safari-specific fixes */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .order-form select {
            background-color: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.1);
            height: 46px; /* Đảm bảo chiều cao đồng nhất */
            box-sizing: border-box;
            font-size: 1rem;
            line-height: 1.5;
            padding-top: 10px;
            padding-bottom: 10px;
            text-indent: 3px; /* Điều chỉnh vị trí text */
        }
        
        .order-form select:focus {
            border-color: var(--color-primary);
        }
        
        /* Đảm bảo kích thước đồng nhất giữa input và select */
        .order-form input {
            height: 46px;
            box-sizing: border-box;
        }
        
        /* Điều chỉnh cụ thể cho Safari */
        #guests,
        #occasion {
            font-size: 1rem !important;
            padding-left: 12px !important;
            padding-right: 35px !important;
        }
    }
} 

/* Branches Section */
.branches {
    padding: calc(var(--base-spacing) * 8) 0;
    background-color: var(--color-background-light);
    position: relative;
}

.branches::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFFFFF"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23FFFFFF"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FFFFFF"/></svg>');
    background-size: cover;
    background-position: center top;
    z-index: 1;
    transform: rotate(180deg);
}

.branches-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.branch-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.branch-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.branch-card:hover .branch-image img {
    transform: scale(1.05);
}

.branch-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.branch-info {
    padding: 25px;
}

.branch-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.branch-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.branch-details li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
}

.branch-details i {
    color: var(--color-primary);
    margin-right: 10px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.branch-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-small i {
    font-size: 0.8rem;
}

.coming-soon-text {
    color: #ff9800;
    font-weight: 600;
}

@media (min-width: 768px) {
    .branches-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive styles for contact icons */
@media (max-width: 768px) {
    .fixed-contact-icons {
        flex-direction: row;
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        gap: 15px;
        animation: none;
    }
    
    .icon-tooltip {
        top: -40px;
        right: auto;
        bottom: auto;
    }
    
    @keyframes shakeIcons {
        0%, 100% { transform: translateX(50%) rotate(0deg); }
        2% { transform: translateX(50%) rotate(3deg); }
        4% { transform: translateX(50%) rotate(-3deg); }
        6% { transform: translateX(50%) rotate(3deg); }
        8% { transform: translateX(50%) rotate(-2deg); }
        10% { transform: translateX(50%) rotate(0deg); }
        90% { transform: translateX(50%) rotate(0deg); }
    }
} 

/* Mobile Menu Improvements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .gallery-item {
        min-height: 200px;
    }
    
    .order-form-inner {
        grid-template-columns: 1fr;
    }
    
    .fixed-contact-icons {
        bottom: 15px;
        right: 30px;
        flex-direction: column;
    }
    
    .icon-tooltip {
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Improved mobile header layout */
    /* .header-container {
        padding: 10px 15px;
    } */
    
    .logo {
        font-size: 1.4rem;
        max-width: 50%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Improved hamburger menu */
    .menu-toggle {
        position: relative;
        z-index: 100;
        width: 36px;
        height: 30px;
        margin-left: 10px;
        background: transparent;
        border: none;
        outline: none;
    }
    
    /* .menu-toggle span {
        height: 3px;
        margin: 3px 0;
        border-radius: 3px;
        background-color: var(--color-text-secondary);
        transition: all 0.3s ease;
        transform-origin: center;
    } */
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Mobile navigation improvements */
    /* nav.active {
        padding-top: 100px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    } */
    
    /* nav.active ul {
        width: 100%;
        padding: 0 20px;
    }
    
    nav.active ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 0;
    }
    
    nav.active ul li:last-child {
        border-bottom: none;
    }
    
    nav.active ul li a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 10px 0;
    } */
    
    /* Mobile CTA button */
    .cta-buttons {
        position: absolute;
        right: 60px;
        z-index: 5;
    }
    
    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        height: 38px;
        min-width: 130px;
    }
    
    /* Hero buttons on mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
} 

/* Additional Mobile UI/UX Improvements */
@media (max-width: 768px) {
    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Mobile menu animation */
    /* nav {
        transform: translateX(-100%);
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    } */
    
    /* nav.active {
        transform: translateX(0);
        opacity: 1;
    } */
    
    /* Improved spacing for mobile navigation items */
    /* nav.active ul li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.4s forwards;
    } */
    
    /* nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
    nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
    nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
    nav.active ul li:nth-child(5) { animation-delay: 0.5s; }
    nav.active ul li:nth-child(6) { animation-delay: 0.6s; } */
    
    /* Improved header layout */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    /* Ensure logo is visible */
    .logo {
        position: relative;
        z-index: 11;
    }
    
    /* Adjust hero section for mobile */
    .hero-container {
        padding: calc(var(--base-spacing) * 8) 0;
    }
    
    /* Adjust hero buttons for better mobile experience */
    .hero-buttons {
        margin-bottom: calc(var(--base-spacing) * 3);
    }
    
    /* Adjust social links for mobile */
    .hero-social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Adjust scroll down indicator for mobile */
    .scroll-down {
        bottom: 20px;
    }
}

/* Branch Info Section in Booking Form */
.branch-info-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.branch-info-section .branch-info-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.branch-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.branch-card-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.branch-card-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.branch-card-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.branch-card-info h3 i {
    font-size: 1.1rem;
}

.branch-card-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.branch-card-info p:last-child {
    margin-bottom: 0;
}

.branch-card-info p i {
    color: var(--color-primary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.branch-card-info a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.branch-card-info a:hover {
    color: var(--color-secondary);
}

.hotline-section {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF8A65 100%);
    border-radius: 12px;
    color: white;
}

/* Unified CTA Button Styles */
.btn-hotline,
.btn-hotline-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2196F3;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    border: 2px solid transparent;
}

.btn-hotline:hover,
.btn-hotline-main:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-hotline-main {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    grid-column: 1 / -1; /* Đảm bảo nút trải dài trên cả hai cột trong grid */
    box-sizing: border-box;
    display: flex;
}

/* Đảm bảo nút btn-hotline-main luôn full width trên mọi kích thước màn hình */
@media (min-width: 768px) {
    .btn-hotline-main {
        width: 100%;
        display: flex;
        justify-content: center;
        grid-column: 1 / -1;
    }
    
    .order-form-inner .btn-hotline-main {
        grid-column: 1 / -1;
        width: 100%;
    }
}


/* Responsive styles for branch info */
@media (min-width: 768px) {
    .branch-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .branch-info-section {
        margin-top: 30px;
        padding: 20px;
    }
    
    .branch-card-info {
        padding: 15px;
    }
    
    .branch-card-info h3 {
        font-size: 1.1rem;
    }
    
    .branch-card-info p {
        font-size: 0.9rem;
    }
    
    .hotline-section {
        padding: 15px;
    }
    
    .btn-hotline {
        font-size: 1rem;
        padding: 12px 20px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    
    .btn-hotline-main {
        font-size: 1rem;
        padding: 12px 20px;
        margin-top: 15px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

 