/* Custom CSS for Sun Casa Central Bootstrap Template */

/* General Styles */
:root {
    --primary-color: #00283c;
    --secondary-color: #4caf50;
    --accent-color: #f44336;
    --gradient-start: #4caf50;
    --gradient-end: #2196f3;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

section h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: left;
}

/* Gradient Text Styling */
.gradient-heading {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

h1.gradient-heading {
    font-size: 2.5rem;
}

@media (max-width: 767.98px) {
    .h1-mobile {
        background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        display: inline-block;
        font-size: 2rem;
    }

    section h2,
    #intro-title,
    #location-title,
    #masterplan-title,
    #register-title,
    #price-title,
    #financing-title,
    #facilities-title,
    #reality-title,
    #video-title,
    #contact-title {
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    section h2.gradient-heading {
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
        width: 100%;
        display: block;
    }

    section h2::after,
    #intro-title::after,
    #location-title::after,
    #masterplan-title::after,
    #register-title::after,
    #price-title::after,
    #financing-title::after,
    #facilities-title::after,
    #reality-title::after,
    #video-title::after,
    #contact-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

@media (max-width: 767.98px) {
    section h2 {
        text-align: center;
    }

    section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Header */
.navbar {
    padding: 0.15rem 0;
    min-height: 55px;
    background-color: rgba(0, 40, 60, 0.9) !important;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    padding: 0.25rem 0.9rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 0.15rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.1rem 0;
        min-height: 48px;
    }

    .navbar-brand img {
        height: 42px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.2rem 0.6rem;
        font-size: 0.85rem;
    }
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    background-image: var(--hero-banner-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    display: none;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-title-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-group h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    position: relative;
    display: block;
    background: linear-gradient(90deg, rgba(28, 181, 224, 0.55) 0%, rgba(0, 153, 102, 0.55) 100%);
    border-radius: 10px 10px 0 0;
    padding: 12px 32px;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 320px;
}

.hero-title-group p {
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    display: block;
    background: linear-gradient(90deg, rgba(67, 206, 162, 0.55) 0%, rgba(24, 90, 157, 0.55) 100%);
    border-radius: 0 0 8px 8px;
    padding: 6px 24px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    min-width: 320px;
}

.hero-banner .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner .video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
    .hero-banner {
        height: 70vh;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        height: 60vh;
    }
}

/* Register Section */
.register-section {
    background-color: var(--primary-color);
    background-image: var(--register-section-bg);
    background-size: 800px;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 40, 60, 0.85) 0%, rgba(0, 60, 90, 0.85) 100%);
    z-index: 1;
}

.register-section > * {
    position: relative;
    z-index: 2;
}

/* Financing Section */
.financing-section {
    background-color: #f8f9fa;
}

.financing-section img {
    transition: transform 0.3s ease;
}

.financing-section img:hover {
    transform: scale(1.05);
}

.card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Location Section */
.location-section {
    background-color: var(--primary-color);
    background-image: var(--location-section-bg);
    background-size: 800px;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 40, 60, 0.85) 0%, rgba(0, 60, 90, 0.85) 100%);
    z-index: 1;
}

.location-section > * {
    position: relative;
    z-index: 2;
}

.location-section h2::after {
    background-color: #fff;
}

/* Masterplan Section */
.masterplan-section {
    background-color: #f8f9fa;
}

/* Facilities Section */
.facilities-section .card {
    padding: 1.5rem;
}

.facilities-section .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.facilities-section .card-text {
    font-size: 1rem;
    color: #666;
}

/* News Section */
.news-section .card img {
    height: 200px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    background-image: var(--contact-section-bg);
    background-size: 800px;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 40, 60, 0.85) 0%, rgba(0, 60, 90, 0.85) 100%);
    z-index: 1;
}

.contact-section > * {
    position: relative;
    z-index: 2;
}

.contact-section h2::after {
    background-color: #fff;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-floating-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    border: none;
}

.btn-floating-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-floating-main i {
    animation: rotate 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.floating-contact-buttons {
    margin-bottom: 10px;
    transform: translateY(100%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    bottom: 70px;
    right: 0;
    min-width: 180px;
}

.floating-contact-buttons.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.floating-contact-buttons a {
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 8px;
    border-radius: 30px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-contact-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.floating-contact-buttons.show a {
    transform: translateX(0);
    opacity: 1;
}

.floating-contact-buttons a:nth-child(1) {
    transition-delay: 0.1s;
}
.floating-contact-buttons a:nth-child(2) {
    transition-delay: 0.2s;
}

@media (max-width: 991.98px) {
    .floating-contact-buttons {
        min-width: 160px;
    }

    .floating-contact-buttons a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Animation Helpers */
.zoom-hover {
    transition: transform 0.3s ease;
}

.zoom-hover:hover {
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-banner {
        height: 70vh;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        height: 60vh;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 50px 0;
    }
}

.location-description {
    font-size: 1.25rem;
    line-height: 1.8;
}

.location-description p {
    margin-bottom: 1rem;
}

.facilities-slider {
    margin-top: 3rem;
}

.facilities-slider .carousel-item {
    /* padding: 0 3rem; */
}

.facilities-slider .facility-image {
    display: block;
    position: relative;
    overflow: hidden;
}

.facilities-slider .facility-image img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facilities-slider .facility-image:hover img {
    transform: scale(1.05);
}

.facilities-slider .carousel-control-prev,
.facilities-slider .carousel-control-next {
    width: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
}

.facilities-slider .carousel-indicators {
    margin-bottom: -1rem;
}

/* .facilities-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--primary-color);
} */

/* Policy Boxes */
.policy-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-box {
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.policy-box::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.9rem;
    z-index: 1;
}

.policy-box i,
.policy-box span {
    position: relative;
    z-index: 2;
    color: #00283c;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.policy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.policy-box:hover i {
    color: #4caf50;
    transform: scale(1.1);
}

/* Bank Boxes */
.bank-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.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;
    width: calc(50% - 15px);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-box:hover {
    transform: translateY(-5px);
}

.bank-logo {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .bank-boxes {
        flex-direction: column;
        gap: 10px;
    }

    .bank-box {
        width: 100%;
        height: 160px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .bank-logo {
        max-height: 120px;
    }
}

@media (max-width: 767.98px) {
    .location-section h2,
    .contact-section h2 {
        text-align: center;
    }

    .location-section h2::after,
    .contact-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.footer-phone-link-no-bg {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 1px;
}

.footer-phone-link-no-bg:hover {
    color: rgba(255, 215, 0, 0.9);
    transform: translateY(-3px);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.footer-address {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .footer-address {
        font-size: 1rem;
    }

    .footer-phone-link-no-bg {
        font-size: 1.5rem;
    }
}

.dual-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.footer-logo {
    max-height: 120px;
    max-width: 216px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.logo-divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 0 50px;
    position: relative;
}

@media (max-width: 767.98px) {
    .dual-logo-container {
        flex-direction: row;
    }

    .footer-logo {
        max-height: 70px;
        max-width: 120px;
    }

    .logo-divider {
        width: 1px;
        height: 60px;
        margin: 0 20px;
        background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
    }
}

/* Preloader Styles */
.preloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 40, 60, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.preloader-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
    color: #ffffff;
    animation: spin 1.2s linear infinite;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.lazy-iframe {
    opacity: 0;
    transition: opacity 1s ease;
}

.lazy-iframe.loaded {
    opacity: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Banner với lazy loading */
.hero-banner .video-container {
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-banner .video-container.loaded {
    opacity: 1;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-floating-main {
    width: auto;
    height: 60px;
    border-radius: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 0 25px;
    position: relative;
    overflow: hidden;
}

.btn-floating-main .btn-text {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.floating-contact-buttons {
    margin-bottom: 10px;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 70px;
    right: 0;
}

.floating-contact-buttons.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-contact-buttons a {
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-contact-buttons.show a {
    transform: translateX(0);
    opacity: 1;
}

.floating-contact-buttons a:nth-child(1) {
    transition-delay: 0.1s;
}
.floating-contact-buttons a:nth-child(2) {
    transition-delay: 0.2s;
}
.floating-contact-buttons a:nth-child(3) {
    transition-delay: 0.3s;
}
.floating-contact-buttons a:nth-child(4) {
    transition-delay: 0.4s;
}

.video-section {
    position: relative;
    background-color: #000;
}

.video-section .ratio {
    position: relative;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.video-overlay.hide {
    opacity: 0;
}

.video-section iframe {
    border: none;
}

@media (max-width: 768px) {
    .video-overlay h2 {
        font-size: 2rem;
    }

    .video-overlay p {
        font-size: 1rem;
    }
}

.masterplan-slide-item {
    display: block;
    height: 300px;
    overflow: hidden;
}
.masterplan-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.masterplan-slide-item:hover img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .masterplan-slide-item {
        height: 250px;
    }
}

.facilities-tab-custom .nav-link {
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 8px;
    color: #333;
    background: #f8f9fa;
    transition: all 0.2s;
}
.facilities-tab-custom .nav-link.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.facilities-tab-content-custom {
    min-height: 180px;
    background: #fff;
}
.facilities-tab-content-custom ul li {
    font-size: 1.08rem;
    display: flex;
    align-items: center;
}
.facilities-tab-content-custom i {
    font-size: 1.2rem;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-content {
    border: 1px solid transparent;
    background-image: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-origin: border-box;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.modal-backdrop.show {
    opacity: 0.8;
}

.bank-logo-wrapper {
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    margin: 0 auto;
}
.bank-logo {
    max-height: 200px;
    max-width: 220px;
    object-fit: contain;
    filter: none !important;
    transition: none;
}

.reality-section {
    background: linear-gradient(120deg, #f8fafc 60%, #e0f7fa 100%);
    padding: 40px 0;
}
.reality-carousel {
    margin: 0 auto;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background-color: #fff;
}
.reality-images-container {
    display: flex;
    gap: 20px;
    padding: 10px;
}
.reality-image-item {
    flex: 1;
}
.reality-img {
    border-radius: 1rem;
    object-fit: cover;
    min-height: 320px;
    max-height: 480px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 2, 0.6, 1);
}
.carousel-item.active .reality-img {
    transform: scale(1.02);
}
.carousel-indicators [data-bs-target] {
    /* width: 14px;
    height: 14px; */
    /* border-radius: 20%; */
    background: #96d1f3;
    opacity: 0.5;
}
.carousel-indicators .active {
    background: #4ecdc4;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .reality-carousel {
        padding: 10px;
    }
    .reality-images-container {
        padding: 5px;
    }
    .reality-img {
        min-height: 280px;
    }
}

.zalo-icon {
    margin-bottom: 9px;
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}
.zalo-icon:hover {
    transform: scale(1.1);
}
.content-center-impo {
    justify-content: center !important;
}
.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-overview-section {
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.video-overview-section .ratio {
    max-width: 100%;
    margin: 0;
}
.video-overview-section iframe {
    border: none;
}

/* Luxury Footer Styles */
.luxury-footer {
    position: relative;
    background: linear-gradient(to right, #041824, #052836, #041824);
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.dual-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.footer-logo {
    max-height: 120px;
    max-width: 216px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.logo-divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 0 50px;
    position: relative;
}

.gold-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 40px auto;
    max-width: 70%;
    position: relative;
}

.gold-divider:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.2);
}

.elegant-description {
    font-weight: 300;
    letter-spacing: 0.3px;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.distributor-text {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(to right, #fff, #f0f0f0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.footer-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.shine-effect:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 60%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-info:hover .shine-effect:before {
    opacity: 1;
}

.footer-info:hover .footer-icon-circle {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.footer-text {
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.5;
}

.footer-text.small {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 10px;
}

.footer-phone-link-no-bg {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 1px;
}

.footer-phone-link-no-bg:hover {
    color: rgba(255, 215, 0, 0.9);
    transform: translateY(-3px);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1));
    color: rgba(255, 215, 0, 0.9);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.zalo-icon-small {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-icon:hover .zalo-icon-small {
    filter: brightness(0) invert(0.9) sepia(1) saturate(5) hue-rotate(10deg);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-top: 20px;
}

.copyright:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-50%);
}

@media (max-width: 767.98px) {
    .dual-logo-container {
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .logo-divider {
        width: 150px;
        height: 1px;
        margin: 10px 0 30px;
    }

    .footer-icon-circle {
        margin-bottom: 20px;
    }

    .footer-phone-link {
        width: 100%;
    }
}

/* Products Section Styles */
.products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-price {
    color: white;
    text-align: center;
    width: 100%;
}

.price-from {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-content {
    padding: 25px 20px;
}

.product-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

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

.detail-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.detail-item i {
    width: 20px;
    flex-shrink: 0;
}

.product-card .btn {
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border: none;
    color: white;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    background: linear-gradient(to right, #45a049, #1976d2);
}

.products-section .btn-danger {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.products-section .btn-danger:hover {
    background: linear-gradient(to right, #45a049, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Responsive adjustments for products */
@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 18px;
    }

    .product-content {
        padding: 20px 15px;
    }
}
