/* ===================================
   GLOBAL STYLES & VARIABLES
   =================================== */

:root {
    --color-black: #000000;
    --color-charcoal: #1a1a1a;
    --color-deep-gray: #2a2a2a;
    --color-warm-gray: #4a4a4a;
    --color-light-gray: #e5e5e5;
    --color-white: #ffffff;
    --color-gold: #d4af37;
    --color-gold-light: #f0d98d;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    padding-bottom: 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-charcoal);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    line-height: 1.8;
}

/* ===================================
   NAVBAR - CUSTOM SOLUTION (NO BOOTSTRAP COLLAPSE)
   =================================== */

.navbar {
    padding: 0.875rem 0;
    transition: var(--transition-smooth);
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px);
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: blur(20px);
    padding: 0.625rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: var(--transition-smooth);
    display: block;
}

.navbar.scrolled .navbar-logo {
    height: 45px;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.luxury-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Desktop Navigation - Always Visible */
.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.625rem 1.25rem !important;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-gold) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

/* Hamburger Button - Hidden on Desktop */
.navbar-toggler {
    display: none;
    border: 2px solid var(--color-gold);
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 25px;
    height: 25px;
    display: block;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    position: relative;
    z-index: 2;
}

.h-100 {
    height: 100%;
}

.hero-content {
    color: var(--color-white);
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 1);
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 1);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-luxury {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-luxury {
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-color: var(--color-gold);
}

.btn-primary-luxury:hover {
    background: var(--color-gold-light);
    color: var(--color-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-luxury {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-luxury:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===================================
   GLASS CARD EFFECT
   =================================== */

.glass-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: 2.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===================================
   HERO FORM
   =================================== */

.hero-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
}

.form-title {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-align: center;
}

.luxury-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.luxury-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.luxury-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   SCROLL INDICATOR
   =================================== */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-white);
    border-radius: 25px;
    position: relative;
}

.scroll-down span {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--color-white);
    border-radius: 50%;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

.scroll-down span:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-down span:nth-child(3) {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.luxury-image {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
    display: block;
}

.about-image-wrapper:hover .luxury-image {
    transform: scale(1.05);
}

.about-content {
    padding: 2rem 0;
}

.project-stats {
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-light-gray);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-warm-gray);
    margin: 0;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    color: var(--color-charcoal);
}

/* ===================================
   AMENITIES SECTION
   =================================== */

.amenities-section {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-deep-gray) 100%);
    color: var(--color-white);
    padding: 5rem 0;
}

.amenities-section .section-title,
.amenities-section .section-description {
    color: var(--color-white);
}

.amenity-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--color-charcoal);
}

.amenity-card:hover .amenity-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.amenity-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.amenity-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: calc(33.333% - 1.5rem);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

@media (max-width: 991px) {
    .gallery-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .gallery-item img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

/* ===================================
   FLOOR PLAN SECTION
   =================================== */

.floorplan-section {
    background: var(--color-light-gray);
    padding: 5rem 0;
}

.floor-tabs {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.floor-tabs .nav-link {
    background: var(--color-white);
    color: var(--color-charcoal);
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.floor-tabs .nav-link:hover,
.floor-tabs .nav-link.active {
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.floor-details {
    padding: 2rem 0;
}

.floor-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.floor-description {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    margin-bottom: 2rem;
}

.floor-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floor-features li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--color-warm-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floor-features li i {
    color: var(--color-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .floor-tabs {
        gap: 0.5rem;
    }
    
    .floor-tabs .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .floor-title {
        font-size: 1.75rem;
    }
    
    .floor-description {
        font-size: 1rem;
    }
    
    .floor-features li {
        font-size: 0.95rem;
        padding: 0.625rem 0;
    }
}

@media (max-width: 576px) {
    .floor-tabs .nav-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .floor-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location-section {
    background: var(--color-white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--color-white);
    padding: 0;
}

.map-container iframe {
    width: 100%;
    display: block;
}

.location-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.03);
    transition: var(--transition-smooth);
}

.location-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.location-icon i {
    font-size: 1.75rem;
    color: var(--color-charcoal);
}

.location-card:hover {
    background: var(--color-charcoal);
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotateY(360deg);
}

.location-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.location-distance {
    font-size: 0.95rem;
    color: var(--color-warm-gray);
    margin: 0;
    transition: var(--transition-fast);
}

.location-card:hover .location-title,
.location-card:hover .location-distance {
    color: var(--color-white);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-section {
    background: linear-gradient(135deg, var(--color-deep-gray) 0%, var(--color-charcoal) 100%);
    color: var(--color-white);
}

.why-section .section-title,
.why-section .section-description {
    color: var(--color-white);
}

.why-card {
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.why-icon i {
    font-size: 2rem;
    color: var(--color-charcoal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.why-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    background: var(--color-light-gray);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: slideTestimonials 20s linear infinite;
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 400px;
    min-width: 400px;
    padding: 3rem 2.5rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin: 0 0.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.95rem;
    color: var(--color-gold);
    margin: 0;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.faq-section .section-title,
.faq-section .section-description {
    color: var(--color-white);
}

.luxury-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.luxury-accordion .accordion-button {
    background: transparent;
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    transition: var(--transition-fast);
    box-shadow: none;
}

.luxury-accordion .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    box-shadow: none;
}

.luxury-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.luxury-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(1.2);
}

.luxury-accordion .accordion-body {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-accordion .accordion-collapse {
    background: transparent;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.contact-form-wrapper {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
}

.contact-info-icon i {
    font-size: 1.75rem;
    color: var(--color-charcoal);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.contact-info-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   FOOTER
   =================================== */

.footer-section {
    background: var(--color-black);
    color: var(--color-white);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.125rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact li i {
    color: var(--color-gold);
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* ===================================
   MOBILE CTA BUTTONS
   =================================== */

.mobile-cta-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9998;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
}

.mobile-cta-btn {
    flex: 1;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.call-btn {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.call-btn:hover {
    background: var(--color-gold-light);
    color: var(--color-charcoal);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--color-white);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    color: var(--color-white);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 991px) {
    /* Show hamburger button on mobile */
    .navbar-toggler {
        display: block;
    }
    
    /* Mobile menu - hidden by default */
    .navbar-menu {
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.25rem;
        margin-top: 0.875rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    /* Show menu when active */
    .navbar-menu.active {
        display: block;
    }
    
    /* Stack menu items vertically */
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.375rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1.125rem !important;
        border-radius: 8px;
        text-align: left;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(212, 175, 55, 0.2);
    }
    
    /* Responsive Content */
    .section-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .hero-section {
        padding-top: 85px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.975rem;
        line-height: 1.7;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        min-width: 320px;
    }
    
    .hero-form {
        margin-top: 2rem;
    }
    
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    
    .back-to-top {
        bottom: 75px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .hero-section {
        padding-top: 75px;
        padding-bottom: 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.65;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.625rem;
    }
    
    .btn-luxury {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .hero-form {
        margin-top: 1.75rem;
        padding: 1.75rem 1.25rem;
    }
    
    .form-title {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }
    
    .luxury-input {
        padding: 0.8rem 1.125rem;
        font-size: 0.925rem;
    }
    
    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .gallery-prev {
        left: 8px;
    }
    
    .gallery-next {
        right: 8px;
    }
    
    .floor-tabs {
        gap: 0.5rem;
    }
    
    .floor-tabs .nav-link {
        padding: 0.7rem 1.375rem;
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 1.75rem 1.25rem;
    }
    
    .stat-number {
        font-size: 1.875rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .amenity-icon,
    .why-icon,
    .location-icon {
        width: 60px;
        height: 60px;
    }
    
    .amenity-icon i,
    .why-icon i,
    .location-icon i {
        font-size: 1.375rem;
    }
    
    .amenity-card,
    .why-card,
    .location-card {
        padding: 1.875rem 1.125rem;
    }
    
    .amenity-title,
    .why-title,
    .location-title {
        font-size: 1.075rem;
    }
    
    .about-image-wrapper,
    .floor-details {
        margin-bottom: 1.75rem;
    }
    
    .ps-lg-5 {
        padding-left: 0 !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .mobile-cta-btn {
        padding: 0.875rem 0.625rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-bottom: 58px;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .hero-section {
        padding-top: 70px;
        padding-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.625rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn-luxury {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .floor-title {
        font-size: 1.375rem;
    }
    
    .mobile-cta-btn {
        font-size: 0.8rem;
        padding: 0.8rem 0.5rem;
        gap: 0.375rem;
    }
    
    .mobile-cta-btn i {
        font-size: 1rem;
    }
    
    .hero-form {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .luxury-input {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .stat-card {
        padding: 1.125rem 0.875rem;
    }
    
    .stat-number {
        font-size: 1.625rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .amenity-title,
    .why-title,
    .location-title {
        font-size: 1rem;
    }
    
    .amenity-description,
    .why-description {
        font-size: 0.85rem;
    }
    
    .amenity-icon,
    .why-icon,
    .location-icon {
        width: 55px;
        height: 55px;
    }
    
    .amenity-icon i,
    .why-icon i,
    .location-icon i {
        font-size: 1.25rem;
    }
    
    .floor-tabs {
        flex-wrap: wrap;
        gap: 0.375rem;
    }
    
    .floor-tabs .nav-link {
        padding: 0.6rem 1.125rem;
        font-size: 0.775rem;
    }
    
    .accordion-button {
        font-size: 0.95rem !important;
        padding: 1.125rem 1.25rem !important;
    }
    
    .accordion-body {
        font-size: 0.875rem !important;
        padding: 1.125rem 1.25rem !important;
    }
    
    .contact-info-card {
        padding: 1.375rem 0.875rem;
    }
    
    .footer-logo {
        font-size: 1.375rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Smooth scrolling for all browsers */
html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

::-moz-selection {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Hover effects for images */
img {
    max-width: 100%;
    height: auto;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

.hero-background,
.gallery-item img,
.luxury-image {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    .mobile-cta-buttons,
    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   SWEETALERT2 CUSTOM STYLING
   =================================== */

.luxury-alert {
    border-radius: 15px !important;
    border: 2px solid var(--color-gold) !important;
}

.swal2-title {
    font-family: var(--font-serif) !important;
    color: var(--color-gold) !important;
}

.swal2-html-container {
    font-family: var(--font-sans) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.swal2-confirm {
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 0.75rem 2rem !important;
    border-radius: 5px !important;
}

.swal2-icon {
    border-color: var(--color-gold) !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: var(--color-gold) !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(212, 175, 55, 0.3) !important;
}
