:root {
    --primary-blue: #0a192f;
    /* Deep Dark Blue */
    --secondary-black: #000000;
    --text-white: #ffffff;
    --accent-gold: #FFD700;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --primary-btn: #0056b3;
    /* Vibrant Blue for buttons */
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-blue);
    color: var(--text-white);
    overflow-x: hidden;
    padding-top: 90px;
    /* Add padding to prevent content from hiding under fixed header */
}

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

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
    /* Glass effect */
    background: rgba(10, 25, 47, 0.45);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
    height: 90px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    height: 160px;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 5px;
    position: relative;
    /* Improve contrast over varying hero backgrounds */
    text-shadow: 0 2px 6px rgba(2, 6, 23, 0.6);
}

.nav-links li a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.btn-nav-contact {
    background-color: var(--primary-btn);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700 !important;
    transition: transform 0.3s ease, background-color 0.3s !important;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-nav-contact:hover {
    transform: scale(1.05);
    background-color: #004494 !important;
    color: white !important;
}

/* Responsive Nav */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

    .floating-logo {
        height: 100px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }
}

/* Mobile Hamburger Menu - visible only on small screens */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 40px;
    padding: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 250;
}

.hamburger-svg {
    width: 22px;
    height: 22px;
    display: block;
    color: white;
    /* uses currentColor in SVG */
    stroke: currentColor;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

/* When open, give a subtle transform to indicate state (we don't have a close SVG)
   you can replace with a morph animation later if you provide the animation JS */
.hamburger.open .hamburger-svg {
    transform: rotate(90deg) scale(1.05);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 28px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        z-index: 320;
        align-items: center;
        justify-content: center;
        padding: 6px;
        background: transparent;
        border: none;
    }

    /* Hide desktop nav on mobile - will use drawer instead */
    .main-nav {
        display: none !important;
    }
}

.btn-cta-header {
    background-color: var(--primary-btn);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s;
}

.btn-cta-header:hover {
    transform: scale(1.05);
    background-color: #004494;
}

/* Hero Section - Flyer Style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    /* Blur background to focus on flyer */
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    /* Light overlay */
}

.hero-container-flyer {
    position: relative;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: stretch;
}

/* Sidebar */
.flyer-sidebar {
    background-color: #0056b3;
    /* Bright Blue */
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.flyer-sidebar span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 3px;
    white-space: nowrap;
}

/* Main Card */
.flyer-card {
    background: white;
    flex: 1;
    display: flex;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    min-height: 600px;
}

.flyer-content {
    padding: 40px;
    width: 45%;
    position: relative;
    z-index: 5;
    background: linear-gradient(to right, white 90%, transparent);
}

.status-tag {
    background-color: #0056b3;
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.flyer-header {
    margin-bottom: 20px;
}

.sub-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.flyer-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 5px;
}

.location {
    font-size: 1rem;
    color: #666;
}

.features-box {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95), rgba(5, 13, 26, 0.95));
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.features-box ul {
    list-style: none;
    display: grid;
    gap: 15px;
}

.features-box li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 0;
    transition: transform 0.2s ease;
}

.features-box li:hover {
    transform: translateX(5px);
}

.features-box li i {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.units-banner {
    background-color: #004494;
    color: white;
    padding: 10px 20px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    transform: skewX(-10deg);
    margin-bottom: 30px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.btn-flyer {
    background-color: #0056b3;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
    position: relative;
    z-index: 1;
    overflow: visible;
    /* Allow glow to spill out */
}

/* Rotating Border Animation */
.btn-flyer::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #00a8ff, #0077cc, #00a8ff, #ffffff);
    background-size: 400%;
    z-index: -1;
    border-radius: 35px;
    animation: glowing-border 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-flyer::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    z-index: -1;
    background: linear-gradient(45deg, #00a8ff, #0077cc, #00a8ff, #ffffff);
    background-size: 400%;
    border-radius: 35px;
    filter: blur(10px);
    animation: glowing-border 3s linear infinite;
    opacity: 0.7;
    /* Always visible glow */
}

@keyframes glowing-border {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.btn-flyer:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.6);
    /* Blue glow on hover */
}

.btn-flyer:hover::before {
    opacity: 1;
}

/* Flyer Image Side */
.flyer-image-section {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 0;
    border-radius: 0;
}

.slider-image.active {
    opacity: 1;
    z-index: 1;
}

/* Animated Frame Effect */
.image-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid;
    border-image: linear-gradient(45deg, #00a8ff, #0077cc, #00a8ff, #00d4ff) 1;
    border-radius: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow:
        0 10px 40px rgba(0, 168, 255, 0.2),
        inset 0 0 20px rgba(0, 168, 255, 0.05);
    animation: frame-glow 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .image-slider::before {
        display: none;
    }
}

@keyframes frame-glow {

    0%,
    100% {
        box-shadow:
            0 10px 40px rgba(0, 168, 255, 0.2),
            inset 0 0 20px rgba(0, 168, 255, 0.05);
    }

    50% {
        box-shadow:
            0 15px 50px rgba(0, 168, 255, 0.4),
            inset 0 0 30px rgba(0, 168, 255, 0.1);
    }
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Floating Price Box */
.flyer-price-box {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background-color: #0056b3;
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
    text-align: right;
}

.flyer-price-box .price-label {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
}

.flyer-price-box .price-value {
    font-size: 2rem;
    font-weight: 800;
    margin: 5px 0;
}

.flyer-price-box .price-condition {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

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

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

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

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

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Flyer */
@media (max-width: 900px) {
    .hero-container-flyer {
        flex-direction: column;
        max-width: 90%;
    }

    .flyer-sidebar {
        width: 100%;
        height: 40px;
        border-radius: 20px 20px 0 0;
        flex-direction: row;
    }

    .flyer-sidebar span {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1rem;
    }

    .flyer-card {
        flex-direction: column;
        border-radius: 0 0 20px 20px;
        min-height: auto;
    }

    .flyer-content {
        width: 100%;
        padding: 30px;
        background: white;
    }

    .features-box {
        left: 0;
        width: 100%;
    }

    .flyer-image-section {
        height: 300px;
    }

    .flyer-price-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-cards {
        position: relative;
        left: 0;
        top: 0;
        margin: 120px auto 0;
        transform: none;
    }

    .glass-card {
        transform: none;
    }

    .glass-card:hover {
        transform: scale(1.02);
    }

    .summary-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Mobile flyer adjustments */
    .flyer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .units-banner {
        display: block;
        margin: 30px 0;
    }

    .btn-flyer {
        display: block;
    }

    .flyer-price-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .price-value {
        white-space: nowrap;
    }

    /* Ensure images are visible on mobile */
    .flyer-image-section {
        height: 300px;
        margin-top: 20px;
        width: 100%;
    }

    .image-slider {
        height: 100%;
        background-color: #f0f0f0;
    }

    .slider-image {
        object-fit: cover;
        opacity: 0;
        padding: 0;
    }

    .slider-image.active {
        opacity: 1;
    }
}

/* Location Highlights Mini-Section */
.location-highlights {
    background: linear-gradient(135deg, #0a192f 0%, #1a2f4f 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.location-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 86, 179, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.3);
}

.location-item i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.location-time {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 168, 255, 0.5);
}

.location-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

/* Responsive adjustments for location section */
@media (max-width: 768px) {
    .location-highlights {
        padding: 40px 0;
    }

    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .location-item {
        padding: 20px 15px;
    }

    .location-item i {
        font-size: 1.5rem;
    }

    .location-time {
        font-size: 1.4rem;
    }

    .location-label {
        font-size: 0.85rem;
    }
}

/* Gallery Carousel Section */
.gallery-carousel {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    padding: 80px 0;
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a8ff, #0077cc);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 168, 255, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 168, 255, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

/* CTA wrappers for sections */
.gallery-cta,
.about-cta,
.video-cta {
    text-align: center;
    margin-top: 24px;
}

.gallery-cta .btn-flyer,
.about-cta .btn-flyer,
.video-cta .btn-flyer {
    display: inline-block;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: #00a8ff;
    transform: scale(1.2);
}

.indicator.active {
    background: #00a8ff;
    width: 35px;
    border-radius: 6px;
}

@media (max-width: 968px) {
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .gallery-slide img {
        height: 350px;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .carousel-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10;
    }

    .carousel-btn:active {
        transform: translateY(-50%) !important;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .gallery-slide img {
        height: 250px;
    }
}

/* About & Highlights Section */
.about-highlights {
    background: linear-gradient(135deg, #0a192f 0%, #1a2f4f 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background particles effect */
.about-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

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

.about-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(to right, #ffffff, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Highlights Cards Grid */
.highlights-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
    justify-items: center;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00a8ff, #0077cc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00a8ff, #0077cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 168, 255, 0.3);
    flex-shrink: 0;
}

.card-icon-large {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: pulse-gold 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    }
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.card-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.exclusivity-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.3);
}

@media (max-width: 1200px) {
    .highlights-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .highlights-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-header h2 {
        font-size: 2rem;
    }
}

/* Video Tour Section */
.video-tour {
    background: linear-gradient(135deg, #0a192f 0%, #1a2f4f 100%);
    padding: 100px 0;
    position: relative;
}

.video-tour .video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-tour .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-tour .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 50px;
}

.video-tour .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(0, 168, 255, 0.3);
}

.video-tour .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 17px;
    /* Reset transform so iframe fits exactly the 16:9 wrapper (prevents black bars) */
    transform: none;
    transform-origin: center center;
    display: block;
}

@media (max-width: 768px) {
    .video-tour .section-title {
        font-size: 2rem;
    }

    .video-tour {
        padding: 60px 0;
    }

    /* Reduce scaling on small screens to avoid cropping important areas */
    .video-tour .video-wrapper iframe {
        transform: translate(-0%, -0%) scale(1.01);
    }
}

/* Financing Section */
.financing-section {
    background: linear-gradient(135deg, #1a2f4f 0%, #0a192f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.financing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

.financing-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.financing-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(to right, #ffffff, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.financing-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.financing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.financing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.financing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00a8ff, #0077cc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.financing-card:hover::before {
    transform: scaleX(1);
}

.financing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.2);
}

.financing-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #00a8ff, #0077cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.4);
    transition: all 0.3s ease;
}

.financing-card:hover .financing-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.6);
}

.financing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.financing-card>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 80px;
}

.financing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 168, 255, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: #00a8ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.financing-cta {
    text-align: center;
    margin-top: 40px;
}

.financing-cta .btn-flyer {
    display: inline-block;
}

@media (max-width: 968px) {
    .financing-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .financing-header h2 {
        font-size: 2.2rem;
    }

    .financing-card {
        padding: 40px 30px;
    }

    .financing-card>p {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .financing-section {
        padding: 60px 0;
    }

    .financing-header h2 {
        font-size: 2rem;
    }

    .financing-header p {
        font-size: 1rem;
    }

    .financing-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .financing-card h3 {
        font-size: 1.5rem;
    }

    .financing-card>p {
        font-size: 0.95rem;
    }
}

/* Guarantee & Contact Section */
.guarantee-contact {
    background: linear-gradient(to bottom, #0a192f, #050d1a);
    padding: 100px 0;
    position: relative;
}

.contact-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00a8ff, #0077cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-text p {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.quality-badge {
    margin-top: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.quality-badge i {
    font-size: 3rem;
    color: #FFD700;
}

.quality-badge span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
}

/* Contact Form */
.contact-form-new {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-new h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

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

.contact-form input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.contact-form input:focus {
    outline: none;
    border-color: #00a8ff;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00a8ff, #0077cc);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0, 168, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 168, 255, 0.4);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header h2 {
        font-size: 2.2rem;
    }

    .contact-form-new {
        padding: 35px;
    }
}

/* WhatsApp CTA Button Styles */
.contact-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.whatsapp-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 40px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulse-glow 2s infinite;
}

/* Pulse glow animation */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 10px 40px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow:
            0 15px 60px rgba(37, 211, 102, 0.6),
            0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* Shine effect overlay */
.whatsapp-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s;
}

.whatsapp-cta-button:hover::before {
    left: 100%;
}

/* Hover state */
.whatsapp-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(37, 211, 102, 0.6),
        0 0 0 0 rgba(37, 211, 102, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Active/Click state */
.whatsapp-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* WhatsApp icon */
.whatsapp-cta-button i {
    font-size: 2rem;
    animation: bounce-icon 1.5s infinite;
}

@keyframes bounce-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-cta-button {
        padding: 20px 35px;
        font-size: 1.2rem;
        gap: 12px;
        text-align: center;
        justify-content: center;
    }

    .whatsapp-cta-button i {
        font-size: 1.5rem;
    }
}

/* Video & Footer Section */
.video-footer {
    background-color: var(--primary-blue);
    padding-top: 60px;
    color: white;
}

.video-container {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.main-footer {
    background-color: #050d1a;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.footer-logo-section {
    flex-shrink: 0;
}

.footer-logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-social-section {
    gap: 18px;
}

.footer-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: white;
    opacity: 0.7;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin-top: 28px;
}

.footer-spacer {
    width: 100%;
    height: 17px;
}

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

.social-links a {
    color: white;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-location {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 0;
}

.footer-location i {
    font-size: 1.1rem;
    color: white;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-location p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    max-width: 150px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 18px;
    margin-top: 24px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.site-credit a,
.site-credit a:visited {
    color: #ffffff;
    text-decoration: none;
}

.site-credit a strong {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.site-credit a:hover {
    color: #ff0000;
}

.footer-credit {
    text-align: center;
    padding-bottom: 24px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .social-links a i {
        font-size: 1.4rem;
    }
}

.footer-credit {
    text-align: center;
    padding-bottom: 24px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin: 0;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1024px) {
    .footer-container {
        gap: 40px;
    }

    .footer-logo img {
        height: 150px;
    }

    .footer-location p {
        max-width: 140px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-logo img {
        height: 120px;
    }

    .footer-location p {
        max-width: 280px;
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }
}

/* Mobile Menu Drawer Styles */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #0a192f 0%, #051d2a 100%);
    z-index: 250;
    padding-top: 100px;
    transition: right 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.mobile-menu-drawer.active {
    right: 0;
}

.menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.mobile-nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 28px;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 12px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    transition: width 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: #FFD700;
}

.mobile-nav-list li a:hover::before {
    width: 80%;
}