/* Font Face Declarations */
@font-face {
    font-family: 'MTD Valky';
    src: url('../assets/fonts/MTD Valky Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MTD Valky';
    src: url('../assets/fonts/MTD Valky Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MTD Valky';
    src: url('../assets/fonts/MTD Valky Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MTD Valky';
    src: url('../assets/fonts/MTD Valky Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Dongle';
    src: url('../assets/fonts/Dongle-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Dongle';
    src: url('../assets/fonts/Dongle-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Dongle';
    src: url('../assets/fonts/Dongle-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    /* Brand colors from image.png - Orange/Bronze gradient */
    --primary-orange: #cd853f; /* Main bronze/orange color */
    --primary-orange-light: #deb887; /* Lighter bronze */
    --primary-orange-dark: #a0522d; /* Darker bronze */
    --primary-orange-darker: #8b4513; /* Even darker bronze for contrast */
    --accent-gold: #daa520; /* Gold accent */
    --accent-gold-light: #f4a460; /* Light gold */
    --text-dark: #2c1810; /* Dark brown text */
    --text-light: #ffffff; /* White text */
    --text-gray: #6b4423; /* Brown-gray text */
    --background-light: #fdf5e6; /* Light cream background */
    --background-cream: #f5f5dc; /* Cream background */
    --vh: 1vh;
}

/* Initial state to prevent any scroll */
html.loading,
html.loading body {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Dongle', 'Roboto', sans-serif;
}

/* Force square logo images */
/* NUCLEAR LOGO FIX - ULTIMATE OVERRIDE */
.logo img,
.logo-img img,
img[alt*='Logo'],
img[alt*='logo'],
img[src*='logo'],
img[src*='Logo'],
#desktop-logo,
#mobile-logo,
.preloader img,
.header .logo img,
.header .logo-img img,
.desktop-header .logo img,
.mobile-header .logo-img img {
    border-radius: 0 !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* ULTIMATE NUCLEAR OPTION - Target exact file paths */
img[src*='sun-casa-square-logo.png'],
img[src*='sun-casa-square-logo'],
img[src*='/logo/'],
img[src*='logo/'] {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
}

:root {
    --vh: 1vh;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(70px + env(safe-area-inset-top));
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Dongle', 'Roboto', sans-serif;
    line-height: 1;
    color: var(--text-dark);
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: var(--background-light);
    font-size: 1.7rem;
    font-weight: 400;
}

/* Tất cả các tiêu đề sử dụng font Valky */
h1,
h2,
h3,
h4,
h5,
h6,
.amenity-item h3,
.product-content h3,
.contact-info h3,
.blinking-subtitle {
    font-family: 'MTD Valky', serif !important;
    font-weight: 600;
}

/* Tất cả text content sử dụng font Dongle với size phù hợp */
p,
span,
div,
li,
a:not(.main-nav a),
input,
textarea,
select,
label,
.contact-item span {
    font-family: 'Dongle', 'Roboto', sans-serif;
}

body.loaded {
    opacity: 1;
    height: auto;
    position: relative;
}

/* Main wrapper to control overflow */
.main-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.loaded .main-wrapper {
    opacity: 1;
    visibility: visible;
}

/* Banner Section */
.banner {
    position: relative;
    height: 80vh;
    height: calc(var(--vh, 1vh) * 80);
    width: 100%;
    overflow: hidden;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.banner-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%) scale(1.2);
    min-width: 120%;
    min-height: 120%;
    object-fit: cover;
    border: none;
}

.banner-content {
    text-align: center;
    color: var(--text-light);
    z-index: 3;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'MTD Valky', serif;
}

.banner-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.banner-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-cta:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Container adjustments */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Section adjustments */
section {
    position: relative;
    width: 100%;
    overflow: visible;
}

section:not(.banner) {
    padding-top: 60px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    padding: 15px 0;
    padding-top: max(15px, env(safe-area-inset-top));
}

.header.scrolled {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 4px 0;
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.mobile-header {
    display: none;
}

.logo {
    position: relative;
    padding: 5px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    max-width: 160px;
    object-fit: contain;
    border-radius: 0 !important;
}

.header.scrolled .logo img {
    height: 60px !important;
    max-width: 120px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.header.scrolled .main-nav a {
    color: var(--text-light);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-gold);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    margin-left: auto;
    padding-right: 15px;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
    background: var(--text-light);
}

.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 9px;
}
.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        position: relative;
        min-height: 60px;
    }

    .logo {
        width: auto;
        margin: 0 auto;
    }

    .logo-img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: 150px;
    }

    .logo img,
    .logo-img img {
        height: 45px;
        max-width: 120px;
        width: auto;
        object-fit: contain;
        border-radius: 0 !important;
    }

    .header.scrolled .logo img,
    .header.scrolled .logo-img img {
        height: 35px;
        max-width: 100px;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: calc(80px + env(safe-area-inset-top)) 20px 20px;
        transition: all 0.4s ease;
        box-shadow: -2px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav a {
        color: var(--text-light);
        text-shadow: none;
        font-size: 1.8rem;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
    }

    .main-nav a:hover {
        color: var(--accent-gold);
        background: rgba(255, 255, 255, 0.05);
        padding-left: 10px;
    }

    .header.scrolled .mobile-header .logo-img img {
        height: 35px !important;
        max-width: 100px;
        transition: all 0.3s ease;
    }
}

@media (max-width: 576px) {
    .header-content {
        padding: 0 10px;
    }

    .logo img,
    .logo-img img {
        height: 35px;
        max-width: 100px;
        width: auto;
        object-fit: contain;
        border-radius: 0 !important;
    }

    .header.scrolled .logo img,
    .header.scrolled .logo-img img {
        height: 30px;
        max-width: 80px;
    }

    .hamburger {
        right: 10px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }
}

/* Section Title Styles */
.section-title {
    font-family: 'MTD Valky', 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem !important;
    margin-bottom: 50px;
    color: var(--primary-orange-darker);
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-title em {
    display: block;
    font-family: 'Dongle', 'Playfair Display', serif;
    font-style: normal;
    font-size: 2.2rem !important;
    margin-top: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: none;
    color: var(--accent-gold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.highlight-number {
    color: var(--accent-gold);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Dongle', 'Playfair Display', serif;
    font-style: normal;
}

/* Project Introduction Section */

/* Location Section */
.location {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    background: var(--background-cream);
    scroll-margin-top: 70px;
}

.location .section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-dark);
    padding: 0 20px;
}

.location-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.location-left {
    flex: 0 0 45%;
    max-width: 600px;
}

.location-right {
    flex: 0 0 50%;
    max-width: 700px;
}

.location-map {
    width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.location-map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.location-map:hover img {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.location-map:hover .map-overlay {
    opacity: 1;
}

.map-overlay i {
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Location Timeline Styles */
.location-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.location-time-section {
    display: flex;
    align-items: center;
    gap: 18px;
    background: transparent;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.location-time-section:hover {
    transform: translateY(-2px);
}

.time-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: transparent;
    color: var(--primary-orange);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: none;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    align-self: center;
}

.time-badge::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid rgba(240, 138, 75, 0.3);
    background: transparent;
    z-index: -1;
    animation: pulse-ring 3s infinite;
}

.time-badge::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 1px solid rgba(240, 138, 75, 0.2);
    background: transparent;
    z-index: -2;
    animation: pulse-ring 3s infinite 0.5s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.location-items {
    list-style: none;
    padding: 12px 20px;
    margin: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
    flex: 1;
    transition: all 0.3s ease;
}

.location-time-section:hover .location-items {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-gold);
}

.location-items li {
    font-size: 1.6rem;
    color: var(--text-dark);
    padding: 3px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 18px;
    line-height: 1.2;
}

.location-items li:last-child {
    border-bottom: none;
}

.location-items li:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.location-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.location-items li:hover::before {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.3);
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.amenities-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid var(--primary-orange);
}

.amenities-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-left-color: var(--accent-gold);
}

.amenities-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    background: rgba(205, 133, 63, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.amenities-item:hover i {
    color: var(--accent-gold);
    background: rgba(218, 165, 32, 0.1);
}

.amenities-item span {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.amenities-item:hover span {
    color: var(--accent-gold);
}

/* Policy Section */
.policy {
    padding: 100px 0;
    background: var(--text-light);
    scroll-margin-top: 70px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.policy-boxes {
    padding-top: 1.5rem;
}

.policy-box {
    display: flex;
    align-items: center;
    background: var(--text-light);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.policy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-gold);
}

.policy-box i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-right: 0.5rem;
    min-width: 30px;
}

.policy-box span {
    font-size: 2.34rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1;
}

.mb-3 {
    margin-bottom: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.bank-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
    align-content: center;
    margin-top: 40px;
}

.bank-box {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floating 3s ease-in-out infinite;
}

.bank-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.bank-box:nth-child(1) {
    animation-delay: 0s;
}

.bank-box:nth-child(2) {
    animation-delay: 0.5s;
}

.bank-box:nth-child(3) {
    animation-delay: 1s;
}

.bank-box:nth-child(4) {
    animation-delay: 1.5s;
}

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

@keyframes glowing-border {
    0%,
    100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

@keyframes halo-pulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes icon-glow {
    0%,
    100% {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.8),
            0 0 10px rgba(255, 255, 255, 0.6),
            0 0 15px rgba(218, 165, 32, 0.4);
    }
    50% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 1),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(218, 165, 32, 0.6);
    }
}

.bank-logo {
    max-height: 172px;
    max-width: 303px;
    object-fit: contain;
    filter: none !important;
    transition: none;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--text-light);
    scroll-margin-top: 70px;
}

.amenities .section-title {
    color: var(--text-light);
}

.amenities .section-title::after {
    background: var(--accent-gold);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amenity-item:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.3),
        0 0 90px rgba(218, 165, 32, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.amenity-item:hover .amenity-icon::before {
    opacity: 1;
}

.amenity-item:hover .amenity-icon::after {
    opacity: 0.8;
    animation-duration: 1s;
}

.amenity-icon i {
    position: relative;
    z-index: 1;
    animation: icon-glow 3s ease-in-out infinite;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(218, 165, 32, 0.4);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.amenity-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.8),
        rgba(218, 165, 32, 0.6),
        rgba(255, 255, 255, 0.8),
        rgba(218, 165, 32, 0.6)
    );
    z-index: -1;
    opacity: 0;
    animation: glowing-border 3s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

.amenity-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 30%, transparent 70%);
    z-index: -2;
    opacity: 0.6;
    animation: halo-pulse 2s ease-in-out infinite alternate;
}

.amenity-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.amenity-item p {
    line-height: 1;
    opacity: 0.9;
    font-size: 1.7rem;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--background-cream);
    scroll-margin-top: 70px;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.blinking-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(
        45deg,
        var(--accent-gold),
        var(--accent-gold-light),
        var(--accent-gold),
        var(--accent-gold-light)
    );
    background-size: 400% 400%;
    animation:
        heartbeat-glow 1.5s ease-in-out infinite,
        gradient-shift 3s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(218, 165, 32, 0.6),
        0 0 40px rgba(218, 165, 32, 0.4),
        0 0 60px rgba(218, 165, 32, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blinking-subtitle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50px;
    background: linear-gradient(
        45deg,
        rgba(218, 165, 32, 0.8),
        rgba(255, 255, 255, 0.6),
        rgba(218, 165, 32, 0.8),
        rgba(255, 255, 255, 0.6)
    );
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0.7;
    animation:
        heartbeat-halo 1.5s ease-in-out infinite,
        gradient-shift 3s ease-in-out infinite reverse;
}

.blinking-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.4) 0%, rgba(218, 165, 32, 0.2) 30%, transparent 70%);
    z-index: -2;
    animation: outer-glow 2s ease-in-out infinite;
}

@keyframes blinking {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0.3;
    }
}

@keyframes heartbeat-glow {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 20px rgba(218, 165, 32, 0.6),
            0 0 40px rgba(218, 165, 32, 0.4),
            0 0 60px rgba(218, 165, 32, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    25% {
        transform: scale(1.05);
        box-shadow:
            0 0 30px rgba(218, 165, 32, 0.8),
            0 0 60px rgba(218, 165, 32, 0.6),
            0 0 90px rgba(218, 165, 32, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow:
            0 0 40px rgba(218, 165, 32, 1),
            0 0 80px rgba(218, 165, 32, 0.8),
            0 0 120px rgba(218, 165, 32, 0.6),
            inset 0 0 40px rgba(255, 255, 255, 0.4);
    }
    75% {
        transform: scale(1.05);
        box-shadow:
            0 0 30px rgba(218, 165, 32, 0.8),
            0 0 60px rgba(218, 165, 32, 0.6),
            0 0 90px rgba(218, 165, 32, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes heartbeat-halo {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    25% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes outer-glow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.6;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-item {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-orange);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-image:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.82rem;
    margin-bottom: 20px;
    color: var(--primary-orange-darker);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.product-specs {
    margin-bottom: 20px;
}

.spec-item {
    margin-bottom: 12px;
    line-height: 1;
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.7rem;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: var(--primary-orange-darker);
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
}

.product-content p {
    line-height: 1;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.7rem;
}

.product-price {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Footer product section */
.footer-product {
    margin-top: auto;
    padding-bottom: 20px;
}

/* Product CTA section */
.product-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}

/* Project Overview Section */
.project-overview {
    padding: 100px 0;
    background: var(--background-cream);
    scroll-margin-top: 70px;
}

.overview-slider {
    margin-top: 60px;
    position: relative;
}

.overview-slider .slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--text-light);
}

.overview-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.overview-slider .slide.active {
    opacity: 1;
}

.overview-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.overview-slider .slide:hover img {
    transform: scale(1.05);
}

.overview-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-slider .slide:hover .slide-overlay {
    opacity: 0.8;
}

.overview-slider .slide-overlay i {
    font-size: 3rem;
    color: var(--text-light);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

.slider-btn:hover i {
    color: var(--text-light);
}

.overview-slider .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.overview-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(205, 133, 63, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.overview-slider .dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.overview-slider .dot:hover {
    background: var(--primary-orange-light);
    transform: scale(1.1);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--text-light);
    scroll-margin-top: 70px;
}

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

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-orange-darker);
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.gallery-update-info {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.gallery-slider {
    margin-top: 60px;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #f8f9ff;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide:hover .slide-overlay {
    opacity: 0.8;
}

.slide-overlay i {
    font-size: 3rem;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(205, 133, 63, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-orange-light);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--text-light);
    scroll-margin-top: 70px;
}

.contact .section-title {
    color: var(--text-light);
}

.contact .section-title::after {
    background: var(--accent-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.7rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 30px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1.7rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-orange-darker);
    color: var(--text-light);
    padding: 40px 0 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 1.7rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .col-md-8,
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .policy-boxes {
        padding-top: 1rem;
    }

    .bank-boxes {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .bank-box {
        height: 100px;
        padding: 8px;
    }

    .bank-logo {
        max-height: 108px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 60vh;
        height: calc(var(--vh, 1vh) * 60);
    }

    .banner-video iframe {
        width: 140vw;
        height: 140vh;
        transform: translate(-50%, -50%) scale(1.4);
    }

    .section-title {
        font-size: 2rem !important;
    }

    .section-title em {
        font-size: 1.8rem !important;
    }

    .gallery-section {
        margin-bottom: 40px;
    }

    .gallery-section h3 {
        font-size: 1.6rem;
    }

    .gallery-update-info {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .location-content {
        flex-direction: column;
        gap: 30px;
    }

    .location-left,
    .location-right {
        flex: none;
        max-width: 100%;
    }

    .location-map {
        height: auto;
        min-height: 300px;
    }

    .time-badge {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .location-items {
        padding: 10px 18px;
    }

    .location-items li {
        font-size: 1.5rem;
        padding: 2px 0;
        line-height: 1.2;
    }

    .location-time-section {
        gap: 15px;
    }

    .location-timeline {
        gap: 12px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-media-section {
        margin-top: 25px;
        padding-top: 20px;
    }

    .social-media-section h4 {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link i {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid .feature-item:nth-child(4),
    .features-grid .feature-item:nth-child(5),
    .features-grid .feature-item:nth-child(6) {
        grid-column: 1;
        width: 100%;
        margin-top: 0;
    }

    .feature-image {
        height: 180px;
        width: 100%;
        max-width: none;
    }

    /* Tắt animation trên mobile để tránh overlap */
    .feature-item:nth-child(odd),
    .feature-item:nth-child(even) {
        animation: none !important;
    }

    .policy-box {
        padding: 15px 20px;
        margin-bottom: 0.75rem;
    }

    .policy-box i {
        font-size: 1.2rem;
    }

    .policy-box span {
        font-size: 1.95rem;
    }

    .bank-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bank-box {
        height: 120px;
        padding: 10px;
    }

    .bank-logo {
        max-height: 108px;
        max-width: 198px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blinking-subtitle {
        font-size: 1.8rem;
        padding: 12px 24px;
        letter-spacing: 2px;
        box-shadow:
            0 0 15px rgba(218, 165, 32, 0.6),
            0 0 30px rgba(218, 165, 32, 0.4),
            0 0 45px rgba(218, 165, 32, 0.3),
            inset 0 0 15px rgba(255, 255, 255, 0.2);
    }

    .blinking-subtitle::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }

    .blinking-subtitle::after {
        width: 115%;
        height: 115%;
    }

    .product-content {
        padding: 20px;
    }

    .spec-item strong {
        min-width: auto;
        display: block;
        margin-bottom: 4px;
    }

    .spec-item {
        padding: 10px 0;
    }

    .slider-dots {
        gap: 10px;
        margin-top: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .overview-slider .slider-container {
        aspect-ratio: 16/9;
    }

    .overview-slider .slider-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .overview-slider .dot {
        width: 10px;
        height: 10px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .banner-video iframe {
        width: 160vw;
        height: 160vh;
        transform: translate(-50%, -50%) scale(1.6);
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-title em {
        font-size: 1.5rem !important;
    }

    .feature-image {
        height: 160px;
        width: 100%;
        max-width: none;
    }

    /* Tắt animation trên mobile nhỏ */
    .feature-item:nth-child(odd),
    .feature-item:nth-child(even) {
        animation: none !important;
        transform: none !important;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .policy-box {
        padding: 12px 15px;
        margin-bottom: 0.5rem;
    }

    .policy-box i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }

    .policy-box span {
        font-size: 1.82rem;
    }

    .bank-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bank-box {
        height: 100px;
        padding: 12px;
    }

    .bank-logo {
        max-height: 75px;
        max-width: 135px;
    }

    .slider-container {
        height: 250px;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .overview-slider .slider-container {
        aspect-ratio: 16/9;
        border-radius: 15px;
    }

    .overview-slider .slider-dots {
        gap: 6px;
        margin-top: 15px;
    }

    .overview-slider .dot {
        width: 8px;
        height: 8px;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn i {
        font-size: 0.9rem;
    }

    .overview-slider .slide img {
        object-fit: contain;
    }

    .location-map {
        height: auto;
        min-height: 200px;
    }

    .time-badge {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .location-items {
        padding: 8px 15px;
    }

    .location-items li {
        font-size: 1.4rem;
        padding: 2px 0;
        padding-left: 15px;
        line-height: 1.2;
    }

    .location-time-section {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .location-timeline {
        gap: 8px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: var(--text-light);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 2px solid rgba(205, 133, 63, 0.2);
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--text-light) 100%);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: var(--primary-orange-darker);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close {
    font-size: 2.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: bold;
}

.modal-close:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 25px;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.6rem;
}

.modal-body .required {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 2px;
}

.modal-body input,
.modal-body select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(205, 133, 63, 0.2);
    border-radius: 10px;
    font-size: 1.5rem;
    color: var(--text-dark);
    background: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modal-body input:focus,
.modal-body select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.2);
    transform: translateY(-2px);
}

.modal-body input::placeholder {
    color: rgba(44, 24, 16, 0.5);
    font-style: italic;
}

.modal-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: var(--text-light);
    border: none;
    padding: 18px 25px;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(205, 133, 63, 0.3);
    margin-top: 15px;
}

.modal-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.4);
}

.modal-submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 10px;
    }

    .modal-header {
        padding: 20px 25px 15px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-close {
        font-size: 2rem;
    }

    .modal-body {
        padding: 25px 20px;
    }

    .modal-body .form-group {
        margin-bottom: 20px;
    }

    .modal-body input,
    .modal-body select {
        padding: 12px 15px;
        font-size: 1.4rem;
    }

    .modal-submit-btn {
        padding: 15px 20px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .contact-modal {
        padding: 15px;
    }

    .modal-header {
        padding: 15px 20px 10px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .modal-body .form-group label {
        font-size: 1.4rem;
    }

    .modal-body input,
    .modal-body select {
        padding: 10px 12px;
        font-size: 1.3rem;
    }
}

/* Custom Popup Styles */
.custom-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10002;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.custom-popup.active {
    display: flex;
}

.popup-content {
    background: var(--text-light);
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
    border: 3px solid var(--primary-orange);
}

.popup-content.error {
    border-color: #e74c3c;
}

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

.popup-icon {
    margin-bottom: 20px;
}

.popup-icon i {
    font-size: 4rem;
    color: var(--primary-orange);
}

.popup-content.error .popup-icon i {
    color: #e74c3c;
}

.popup-title {
    margin: 0 0 15px 0;
    color: var(--primary-orange-darker);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.popup-content.error .popup-title {
    color: #e74c3c;
}

.popup-message {
    margin: 0 0 25px 0;
    color: var(--text-dark);
    font-size: 1.5rem;
    line-height: 1.4;
}

.popup-close-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: var(--text-light);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-content.error .popup-close-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.popup-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 133, 63, 0.4);
}

.popup-content.error .popup-close-btn:hover {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-content {
        max-width: 90%;
        padding: 30px 25px;
    }

    .popup-icon i {
        font-size: 3rem;
    }

    .popup-title {
        font-size: 1.4rem;
    }

    .popup-message {
        font-size: 1.4rem;
    }

    .popup-close-btn {
        padding: 10px 25px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 25px 20px;
    }

    .popup-icon i {
        font-size: 2.5rem;
    }

    .popup-title {
        font-size: 1.3rem;
    }

    .popup-message {
        font-size: 1.3rem;
    }
}

/* Fixed CTA Buttons */
.fixed-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.phone-btn {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
}

.phone-btn::before {
    background: #ff4757;
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.zalo-btn {
    background: linear-gradient(135deg, #0068ff, #0052cc);
    color: white;
}

.zalo-btn::before {
    background: #0068ff;
}

.zalo-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 104, 255, 0.4);
}

.zalo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    display: none;
}

.zalo-btn {
    background-image: url('../assets/zalo.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.back-to-top {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: white;
}

.back-to-top::before {
    background: var(--primary-orange);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(240, 138, 75, 0.4);
}

.cta-btn i {
    font-size: 24px;
}

/* Social Media Links in Contact Info */
.social-media-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.social-media-section h4 {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-start;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.social-link i {
    font-size: 1.8rem;
    z-index: 1;
}

.facebook-link {
    background: var(--text-light);
}

.facebook-link::before {
    background: #1877f2;
}

.facebook-link:hover {
    background: #1877f2;
}

.facebook-link i {
    color: #1877f2;
}

.facebook-link:hover i {
    color: var(--text-light);
}

.tiktok-link {
    background: var(--text-light);
}

.tiktok-link::before {
    background: #ff0050;
}

.tiktok-link:hover {
    background: #ff0050;
}

.tiktok-link i {
    color: #ff0050;
}

.tiktok-link:hover i {
    color: var(--text-light);
}

.youtube-link {
    background: var(--text-light);
}

.youtube-link::before {
    background: #ff0000;
}

.youtube-link:hover {
    background: #ff0000;
}

.youtube-link i {
    color: #ff0000;
}

.youtube-link:hover i {
    color: var(--text-light);
}

.cta-main-btn {
    margin-top: 10px;
}

.main-cta-button {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--accent-gold),
        var(--primary-orange-light),
        var(--accent-gold-light)
    );
    background-size: 400% 400%;
    color: var(--text-light);
    padding: 18px 28px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    display: block;
    box-shadow:
        0 0 20px rgba(205, 133, 63, 0.5),
        0 0 40px rgba(205, 133, 63, 0.3),
        0 0 60px rgba(218, 165, 32, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation:
        cta-heartbeat 2s ease-in-out infinite,
        cta-gradient-shift 4s ease-in-out infinite;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 35px;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.8),
        rgba(218, 165, 32, 0.6),
        rgba(255, 255, 255, 0.8),
        rgba(205, 133, 63, 0.6)
    );
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0.7;
    animation:
        cta-border-heartbeat 2s ease-in-out infinite,
        cta-gradient-shift 4s ease-in-out infinite reverse;
}

.main-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    border-radius: 50px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.4) 0%, rgba(205, 133, 63, 0.2) 30%, transparent 70%);
    z-index: -2;
    animation: cta-outer-glow 2.5s ease-in-out infinite;
}

.main-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 30px rgba(205, 133, 63, 0.7),
        0 0 60px rgba(205, 133, 63, 0.5),
        0 0 90px rgba(218, 165, 32, 0.3),
        0 12px 35px rgba(0, 0, 0, 0.3);
    animation-duration: 1s;
    border-color: rgba(255, 255, 255, 0.6);
}

.main-cta-button:hover::before {
    opacity: 1;
    animation-duration: 1s;
}

.main-cta-button:hover::after {
    opacity: 0.8;
    animation-duration: 1.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes cta-heartbeat {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 20px rgba(205, 133, 63, 0.5),
            0 0 40px rgba(205, 133, 63, 0.3),
            0 0 60px rgba(218, 165, 32, 0.2),
            0 8px 25px rgba(0, 0, 0, 0.2);
    }
    20% {
        transform: scale(1.03);
        box-shadow:
            0 0 25px rgba(205, 133, 63, 0.6),
            0 0 50px rgba(205, 133, 63, 0.4),
            0 0 75px rgba(218, 165, 32, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.25);
    }
    40% {
        transform: scale(1.08);
        box-shadow:
            0 0 35px rgba(205, 133, 63, 0.8),
            0 0 70px rgba(205, 133, 63, 0.6),
            0 0 100px rgba(218, 165, 32, 0.4),
            0 15px 40px rgba(0, 0, 0, 0.3);
    }
    60% {
        transform: scale(1.03);
        box-shadow:
            0 0 25px rgba(205, 133, 63, 0.6),
            0 0 50px rgba(205, 133, 63, 0.4),
            0 0 75px rgba(218, 165, 32, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.25);
    }
}

@keyframes cta-border-heartbeat {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    20% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    40% {
        transform: scale(1.15);
        opacity: 0.9;
    }
    60% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes cta-outer-glow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes cta-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile responsive for CTA */
@media (max-width: 768px) {
    .fixed-cta {
        right: 15px;
        bottom: 15px;
    }

    .cta-btn {
        width: 50px;
        height: 50px;
    }

    .cta-btn i {
        font-size: 20px;
    }

    .zalo-text {
        font-size: 20px;
    }

    .main-cta-button {
        padding: 15px 22px;
        font-size: 1.2rem;
        letter-spacing: 0.8px;
        box-shadow:
            0 0 15px rgba(205, 133, 63, 0.5),
            0 0 30px rgba(205, 133, 63, 0.3),
            0 0 45px rgba(218, 165, 32, 0.2),
            0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .main-cta-button::before {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
    }

    .main-cta-button::after {
        width: 125%;
        height: 125%;
    }
}

@media (max-width: 480px) {
    .fixed-cta {
        right: 10px;
        bottom: 10px;
    }

    .main-cta-button {
        padding: 12px 18px;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        box-shadow:
            0 0 12px rgba(205, 133, 63, 0.5),
            0 0 24px rgba(205, 133, 63, 0.3),
            0 0 36px rgba(218, 165, 32, 0.2),
            0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .main-cta-button::before {
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
    }

    .main-cta-button::after {
        width: 120%;
        height: 120%;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 1.4rem;
    }
}

/* ===================================
   PROJECT INTRO BOOTSTRAP SECTION
   =================================== */

/* Project intro section title and description */
.project-intro .section-title {
    font-size: 2rem;
    color: var(--primary-orange-dark);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-intro p {
    font-size: 1.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Feature card titles */
.project-intro .card-title {
    color: var(--primary-orange) !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

/* Feature card text */
.project-intro .card-text {
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

/* Feature cards */
.feature-card {
    border-radius: 12px !important;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Feature image wrapper */
.feature-image-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}

/* Feature images */
.feature-image {
    height: 120%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.3s ease,
        border 0.3s ease;
    border: 3px solid transparent;
    border-radius: 8px 8px 0 0;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
    border: 3px solid var(--primary-orange);
}

/* Responsive image heights */
@media (max-width: 768px) {
    .feature-image-wrapper {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .feature-image-wrapper {
        height: 140px;
    }
}

/* Time badge images sizing */
.time-badge img {
    max-width: 80px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .time-badge img {
        max-width: 60px;
    }
}

@media (max-width: 480px) {
    .time-badge img {
        max-width: 50px;
    }
}

/* Fix equal height for location sections on mobile */
@media (max-width: 768px) {
    .location-timeline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .location-time-section {
        display: grid;
        grid-template-rows: auto 1fr;
        min-height: 180px;
        align-items: start;
    }

    .time-badge {
        justify-self: center;
        margin-bottom: 15px;
    }

    .location-items {
        align-self: stretch;
    }
}

/* ===================================
   PRODUCT CTA BUTTON STYLES
   =================================== */

/* Product CTA Button */
.product-cta-btn {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 20px rgba(244, 130, 37, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.product-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-orange-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.product-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 25px rgba(244, 130, 37, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
    text-decoration: none;
}

.product-cta-btn:hover::before {
    opacity: 1;
}

/* Sparkle Effects */
.sparkle-btn {
    position: relative;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 2s infinite linear;
}

.sparkle:nth-child(2) {
    animation-delay: 0.3s;
    width: 4px;
    height: 4px;
}

.sparkle:nth-child(3) {
    animation-delay: 0.6s;
    width: 8px;
    height: 8px;
}

.sparkle:nth-child(4) {
    animation-delay: 0.9s;
    width: 5px;
    height: 5px;
}

@keyframes sparkle {
    0% {
        top: 100%;
        left: 20%;
        opacity: 0;
        transform: scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        top: -10%;
        left: 80%;
        opacity: 0;
        transform: scale(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

/* ===================================
   POLICY NUMBER STYLES
   =================================== */

.policy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: transparent;
    border: 3px solid var(--primary-orange);
    border-radius: 0;
    transform: rotate(45deg);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.policy-number::before {
    content: attr(data-number);
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--primary-orange);
}

.policy-box:hover .policy-number {
    transform: rotate(45deg) scale(1.1);
    border-color: var(--primary-orange-dark);
}

.policy-box:hover .policy-number::before {
    color: var(--primary-orange-dark);
}

/* Responsive policy numbers */
@media (max-width: 768px) {
    .policy-number {
        width: 48px;
        height: 48px;
        font-size: 2.16rem;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .policy-number {
        width: 42px;
        height: 42px;
        font-size: 1.92rem;
        border-width: 2px;
    }
}

/* ===================================
   VSIP LEGACY SECTION
   =================================== */

.vsip-legacy {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    scroll-margin-top: 70px;
}

.vsip-legacy .section-title {
    color: var(--primary-orange-dark);
    margin-bottom: 60px;
}

.vsip-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.vsip-slider .slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vsip-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.vsip-slider .slide.active {
    opacity: 1;
}

.vsip-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    background: #f8f9ff;
}

.vsip-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.vsip-slider .slide:hover .slide-overlay {
    opacity: 1;
}

.vsip-slider .slide-overlay i {
    font-size: 3rem;
    color: white;
}

.vsip-slider .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.vsip-slider .slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vsip-slider .slider-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.vsip-slider .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.vsip-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(244, 130, 37, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vsip-slider .dot.active,
.vsip-slider .dot:hover {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* Responsive VSIP Slider */
@media (max-width: 768px) {
    .vsip-legacy {
        padding: 60px 0;
    }

    .vsip-slider .slider-btn {
        width: 40px;
        height: 40px;
    }

    .vsip-slider .slide-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .vsip-slider .slider-controls {
        padding: 0 10px;
    }

    .vsip-slider .slider-btn {
        width: 35px;
        height: 35px;
    }

    .vsip-slider .slider-btn i {
        font-size: 14px;
    }

    .vsip-slider .dot {
        width: 10px;
        height: 10px;
    }
}
