/* 
    Premium Real Estate Website - Embassy Citadel
    Restored & Optimized Stylesheet
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:wght@100..900&display=swap');

:root {
    --primary-gold: #C5A059;
    --primary-gold-dark: #A88647;
    --navy-dark: #0A192F;
    --charcoal: #1E1E1E;
    --off-white: #F8F9FA;
    --text-dark: #333333;
    --text-light: #F5F5F5;
    --accent-gold: #D4AF37;
    --luxury-font: 'Cinzel', serif;
    --elegant-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, .premium-title {
    font-family: var(--luxury-font);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400; /* Use thinner weight for premium look */
}

p, span, li, a {
    font-family: var(--elegant-font);
}

/* Header */
header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(10, 25, 47, 0.98);
    padding: 1rem 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.logo img {
    height: 65px;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
    width: auto;
}

header.scrolled .logo img {
    height: 50px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 3rem;
}

.desktop-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    font-family: var(--luxury-font);
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

.desktop-nav ul li a:hover {
    color: var(--primary-gold);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu span {
    width: 30px;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 1050;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-overlay.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
}

.mobile-nav-links li {
    margin-bottom: 2rem;
}

.mobile-nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--luxury-font);
    font-weight: 300;
    letter-spacing: 4px;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    background: black;
    overflow: hidden;
}

#intro-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: black;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 110;
}

#skip-video, #fullscreen-video {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 25px;
    font-family: var(--luxury-font);
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

#skip-video:hover, #fullscreen-video:hover {
    background: white;
    color: black;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slider.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.5));
}

/* Sections */
section { padding: 120px 8%; }

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 { 
    font-size: 3.5rem; 
    color: var(--navy-dark); 
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 300;
}
.section-title h2 span { color: var(--primary-gold); }
.section-title p {
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 160px 10%;
    color: white;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.parallax-content { position: relative; z-index: 2; width: 100%; }

.parallax-section .section-title h2 { color: white; }
.parallax-section .section-title p { color: rgba(255,255,255,0.8); }

/* Overview Section */
.overview-main-img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Amenities 3D Slider */
.amenities-3d-slider { width: 100%; padding: 50px 0 80px; }
.amenity-card {
    width: 450px;
    height: 550px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.amenity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.amenity-card:hover img { transform: scale(1.1); }
.amenity-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 50px 40px;
    background: linear-gradient(transparent, rgba(10, 25, 47, 0.95));
    text-align: center;
}
.amenity-info h4 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 600; /* Thicker font for clarity */
}

/* Floor Plans */
.floor-plan-swiper { width: 100%; padding-bottom: 50px; }
.floor-plan-card { 
    background: white; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.05); 
    transition: var(--transition-smooth);
    height: 100%;
}
.floor-plan-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f9f9f9;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.floor-plan-img-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }
.floor-plan-details { padding: 40px; }
.floor-plan-details h4 { font-size: 1.8rem; margin-bottom: 10px; font-weight: 300; }
.floor-plan-details p { font-size: 1.2rem; color: #666; }
.floor-plan-price { font-family: var(--luxury-font); color: var(--primary-gold); font-size: 1.5rem; margin: 25px 0; }

/* Gallery */
.gallery-section { padding: 100px 2%; }
.gallery-swiper { width: 100%; background: #fff; overflow: hidden; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 400px;
    gap: 15px;
    padding: 15px;
}
.gallery-item { position: relative; overflow: hidden; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item:hover img { transform: scale(1.1); }

/* Location Section */
.location-master { background: #050d18; padding: 100px 8%; }
.location-container { 
    display: flex; 
    background: white; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.4); 
    min-height: 600px;
    width: 100%;
}
.map-wrapper { flex: 1.4; position: relative; }
.map-embed { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(0.1); }
.connectivity-details { flex: 1; padding: 60px; display: flex; align-items: center; }
.conn-card { width: 100%; }
.conn-card h3 { font-size: 2.5rem; margin-bottom: 40px; color: var(--navy-dark); font-weight: 300; }
.conn-card h3 span { color: var(--primary-gold); }
.conn-list { list-style: none; width: 100%; }
.conn-list li { display: flex; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid #eee; font-size: 1.2rem; }
.conn-list li strong { color: var(--primary-gold); font-family: var(--luxury-font); font-weight: 400; }

/* Contact Section */
.contact-parallax { padding: 150px 10%; }
.contact-flex-wrapper { display: flex; gap: 80px; align-items: center; }
.contact-info-side { flex: 1; }
.contact-info-side h2 { font-size: 4rem; color: white; margin-bottom: 30px; font-weight: 300; }
.contact-info-side h2 span { color: var(--primary-gold); }
.contact-info-side p { font-size: 1.5rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; }
.contact-numbers p { font-size: 1.8rem; color: var(--primary-gold); font-family: var(--luxury-font); font-weight: 300; }

.contact-form-side { 
    flex: 1;
    background: rgba(255,255,255,0.05); 
    padding: 60px; 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255,255,255,0.1); 
}
.contact-form-side form { display: flex; flex-direction: column; gap: 25px; }
.contact-form-side input { 
    padding: 20px; 
    background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.2); 
    color: white; 
    font-family: var(--luxury-font); 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    outline: none;
    transition: var(--transition-smooth);
}
.contact-form-side input:focus { border-color: var(--primary-gold); background: rgba(255,255,255,0.12); }

/* UI Elements */
.btn-premium {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-family: var(--luxury-font);
    font-size: 0.9rem;
    letter-spacing: 3px;
    border: 1px solid var(--primary-gold);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
}
.btn-premium:hover { background: var(--primary-gold); color: white; box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3); }
.full-width-btn { width: 100%; }

/* Mobile Float CTAs */
.mobile-glass-ctas {
    display: none;
    position: fixed;
    bottom: 25px; left: 50%; transform: translateX(-50%);
    width: 90%; z-index: 1000; gap: 12px;
}
.glass-btn {
    flex: 1;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px;
    border-radius: 50px; /* Round edges */
    text-align: center;
    text-decoration: none;
    font-size: 0.75rem;
    font-family: var(--luxury-font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 300;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.glass-btn.whatsapp { 
    background: rgba(37, 211, 102, 0.4); 
}

/* Desktop Grid Enforcement */
@media (min-width: 993px) {
    .floor-plan-swiper .swiper-wrapper,
    .gallery-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        transform: none !important;
        width: 100% !important;
    }
    .gallery-swiper .swiper-wrapper { 
        grid-template-columns: repeat(12, 1fr); 
        gap: 15px;
    }
    .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
    .gallery-item:nth-child(2) { grid-column: span 3; }
    .gallery-item:nth-child(3) { grid-column: span 3; }
    .gallery-item:nth-child(4) { grid-column: span 6; }
    .gallery-item:nth-child(5) { grid-column: span 4; }
    .gallery-item:nth-child(6) { grid-column: span 4; }
    .gallery-item:nth-child(7) { grid-column: span 4; }
    .gallery-item:nth-child(8) { grid-column: span 6; }
    .gallery-item:nth-child(9) { grid-column: span 6; }

    .plan-pagination, .gallery-pagination { display: none !important; }
}

/* Responsiveness */
@media (max-width: 1200px) {
    .section-title h2 { font-size: 3rem; }
    .contact-flex-wrapper { gap: 40px; }
}

@media (max-width: 992px) {
    section { padding: 60px 5%; }
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 2.2rem; }
    .section-title p { font-size: 1.1rem; }
    
    header { padding: 1.2rem 5%; }
    .logo img { height: 45px; }
    .desktop-nav { display: none; }
    .burger-menu { display: flex; }
    .nav-cta { display: none; }
    
    .parallax-section { padding: 100px 5%; background-attachment: scroll; }
    
    .amenity-card { width: 300px; height: 400px; }

    /* Mobile Swiper Reset */
    .floor-plan-swiper .swiper-wrapper,
    .gallery-swiper .swiper-wrapper {
        display: flex !important;
        grid-template-columns: none !important;
    }

    /* Gallery 1:1 on Mobile */
    .gallery-item {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
    }
    
    .location-container { flex-direction: column; }
    .map-wrapper { 
        width: 100%;
        aspect-ratio: 1 / 1; /* Map 1:1 on Mobile */
        height: auto;
    }
    
    /* Connectivity Section Refinement on Mobile */
    .connectivity-details { padding: 30px 5%; }
    .conn-card h3 { font-size: 1.8rem; margin-bottom: 25px; }
    .conn-list li { padding: 12px 0; font-size: 1rem; }
    .conn-list li span { font-size: 0.95rem; }
    .conn-list li strong { font-size: 1rem; }
    .conn-cta { padding: 15px 30px; font-size: 0.8rem; width: 100%; }
    
    .contact-flex-wrapper { flex-direction: column; gap: 50px; }
    .contact-info-side { text-align: center; }
    .contact-info-side h2 { font-size: 2.8rem; }
    .contact-info-side p { font-size: 1.2rem; margin-bottom: 30px; }
    
    .mobile-glass-ctas { display: flex; }
    footer { padding-bottom: 100px; }
}

@media (max-width: 600px) {
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: 1rem; }
    .amenity-info h4 { font-size: 1.3rem; }
    .floor-plan-details { padding: 25px 15px; }
    .floor-plan-details h4 { font-size: 1.3rem; }
    .floor-plan-price { font-size: 1.2rem; margin: 15px 0; }
    .contact-form-side { padding: 30px 15px; }
    .btn-premium { padding: 15px 30px; font-size: 0.8rem; }
}

.reveal { opacity: 0; transform: translateY(40px); }
footer { background: #050d18; color: #777; padding: 60px 5%; text-align: center; }
footer img { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.project-highlights{
    padding:70px 20px;
    background:#f7f7f7;
    text-align:center;
}

.highlights-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    max-width:2100px;
    margin:0 auto 50px auto;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:8px;
    width:350px;
    text-align:left;
}

.highlight-item img{
    width:24px;
    height:24px;
    object-fit:contain;
    flex-shrink:0;
}

.highlight-item p{
    margin:0;
    font-size:14px;
    color:#444;
    line-height:1.5;
}

.project-description{
    max-width:850px;
    margin:auto;
}

.project-description h2{
    font-size:36px;
    letter-spacing:3px;
    color:#1f3c74;
    margin-bottom:20px;
    font-weight:500;
}

.project-description p{
    font-size:16px;
    color:#555;
    line-height:1.8;
}

/* Mobile */

@media (max-width:768px){

    .highlights-grid{
        flex-direction:column;
        gap:20px;
    }

    .highlight-item{
        width:100%;
    }

    .project-description h2{
        font-size:26px;
    }

    .project-description p{
        font-size:15px;
    }

}