/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --gold: #c9a94e;
  --gold-light: #e8d08a;
  --gold-dark: #a8882e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f0efec;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --shadow-sm: 0 2px 15px rgba(10,22,40,0.08);
  --shadow-md: 0 10px 40px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.15);
  --shadow-gold: 0 10px 40px rgba(201,169,78,0.25);
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-primary: 'Cormorant Garamond', Georgia, serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-numbers: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-secondary); color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-primary); font-weight: 700; }
.section-title { font-size: 2.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem; line-height: 1.7; }
.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }

/* ===== GLASSMORPHISM ===== */
.glass { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.3); }
.glass-dark { background: rgba(10,22,40,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(201,169,78,0.1); }

/* ===== BUTTONS ===== */
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); border: none; padding: 12px 32px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); position: relative; overflow: hidden; z-index: 1; }
.btn-gold::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); transition: var(--transition); z-index: -1; }
.btn-gold:hover::before { left: 0; }
.btn-gold:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold-sm { padding: 8px 24px; font-size: 0.85rem; }

.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); padding: 10px 30px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); border: none; padding: 12px 32px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.btn-navy:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 10px 30px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 50px; padding: 12px 24px; font-weight: 600; transition: var(--transition); }
.btn-whatsapp:hover { background: #1da851; color: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }

/* ===== STICKY HEADER ===== */
.sticky-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; transition: var(--transition); }

/* ===== NAVBAR ===== */
.navbar { padding: 0; transition: var(--transition); background: rgba(0,0,0,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.navbar .container { position: relative; }
.navbar-brand { padding: 8px 0; }
.nav-logo { height: 80px; width: auto; display: block; }
.nav-link { color: rgba(255,255,255,0.9) !important; font-weight: 500; font-size: 0.9rem; padding: 24px 16px !important; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.navbar .dropdown-menu { background: rgba(10,22,40,0.98); backdrop-filter: blur(20px); border: 1px solid rgba(201,169,78,0.15); border-radius: 12px; padding: 12px 0; margin-top: 0; box-shadow: var(--shadow-lg); }
.navbar .dropdown-item { color: rgba(255,255,255,0.85); padding: 10px 24px; font-size: 0.9rem; transition: var(--transition); }
.navbar .dropdown-item:hover { background: rgba(201,169,78,0.1); color: var(--gold); }
.navbar .dropdown-toggle::after { transition: var(--transition); }
.navbar .btn-gold-sm { margin-left: 10px; }
.navbar .nav-cta { display: flex; align-items: center; gap: 8px; }
.navbar .nav-cta .btn-gold-sm, .navbar .nav-cta .btn-outline-gold { padding: 6px 18px; font-size: 0.8rem; white-space: nowrap; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; width: 100%; height: calc(100vh - 96px); min-height: 650px; max-height: none; overflow: hidden; margin: 96px 0 0; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.8) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 74px; }
.hero-content .badge { background: rgba(201,169,78,0.2); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; border: 1px solid rgba(201,169,78,0.3); display: inline-block; margin-bottom: 1rem; }
.hero-content h1 { font-size: 4rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.hero-content h1 span { color: var(--gold); }
.hero-content p { font-size: 1.2rem; color: rgba(255,255,255,0.85); max-width: 550px; margin-bottom: 2rem; line-height: 1.7; }
.hero-slider-indicators { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-slider-indicators span { width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); }
.hero-slider-indicators span.active { background: var(--gold); width: 60px; }

.hero-form { background: rgba(0,0,0,0.5); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); }
.hero-form .form-control { height: 48px; border-radius: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.hero-form .form-control:focus { background: rgba(255,255,255,0.15); border-color: var(--gold); box-shadow: none; color: var(--white); }
.hero-form .form-control::placeholder { color: rgba(255,255,255,0.6); }
.hero-form .form-select { height: 48px; border-radius: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.hero-form .form-select:focus { background: rgba(255,255,255,0.15); border-color: var(--gold); box-shadow: none; color: var(--white); }
.hero-form .form-select option { background: #222; color: var(--white); }

.scroll-indicator { position: absolute; bottom: 80px; right: 40px; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-indicator .mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px; position: relative; }
.scroll-indicator .mouse::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 10px; background: var(--gold); border-radius: 2px; animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(12px); } }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.floating-buttons a { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: var(--transition); position: relative; }
.floating-buttons a .tooltip-text { position: absolute; right: 62px; background: var(--navy); color: white; padding: 6px 14px; border-radius: 6px; font-size: 0.8rem; white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition); font-weight: 500; }
.floating-buttons a .tooltip-text::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border-left: 6px solid var(--navy); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.floating-buttons a:hover .tooltip-text { opacity: 1; visibility: visible; }
.floating-buttons a:hover { transform: scale(1.1); }
.floating-buttons .whatsapp-btn { background: #25D366; }
.floating-buttons .call-btn { background: var(--gold); }
.floating-buttons .back-to-top { background: var(--navy); display: none; }
.floating-buttons .back-to-top.show { display: flex; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 0; background: var(--off-white); }
.about-image { position: relative; border-radius: 16px; }
.about-image-slider { position: relative; width: 100%; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.about-image-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 16px; opacity: 0; transition: opacity 1.2s ease-in-out; }
.about-image-slider img.active { opacity: 1; }
.about-image-slider .slider-dots { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.about-image-slider .slider-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); }
.about-image-slider .slider-dots span.active { background: var(--gold); }
.about-image img { width: 100%; border-radius: 16px; transition: var(--transition); }
.about-image:hover img { transform: scale(1.05); }
.about-image .experience-badge { position: absolute; bottom: 20px; right: 20px; width: 140px; height: 140px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); font-weight: 700; box-shadow: var(--shadow-gold); }
.about-image .experience-badge span { font-size: 2.2rem; line-height: 1; }
.about-image .experience-badge small { font-size: 0.75rem; opacity: 0.9; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.about-feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.about-feature-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-feature-item .icon { width: 42px; height: 42px; min-width: 42px; background: rgba(201,169,78,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.about-feature-item h6 { font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.about-feature-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ===== COUNTERS ===== */
.counters-section { padding: 70px 0; background: var(--navy); position: relative; overflow: hidden; }
.counters-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(201,169,78,0.05) 0%, transparent 50%); }
.counter-item { text-align: center; position: relative; z-index: 1; }
.counter-item .icon { width: 60px; height: 60px; margin: 0 auto 16px; background: rgba(201,169,78,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; }
.counter-item .number { font-family: var(--font-numbers); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.counter-item .number .suffix { color: var(--gold); }
.counter-item .label { color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 400; }

/* ===== PROJECT CARDS ===== */
.projects-section { padding: 100px 0; background: var(--white); }
.project-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; border: 1px solid rgba(0,0,0,0.04); }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-card .card-image { position: relative; height: 280px; overflow: hidden; }
.project-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card:hover .card-image img { transform: scale(1.08); }
.project-card .card-image .badge { position: absolute; top: 16px; left: 16px; background: rgba(201,169,78,0.9); color: var(--white); padding: 6px 16px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; backdrop-filter: blur(10px); }
.project-card .card-image .project-status { position: absolute; top: 16px; right: 16px; background: rgba(10,22,40,0.85); color: var(--white); padding: 4px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 500; }
.project-card .card-body { padding: 28px; }
.project-card .card-body .project-title { font-family: var(--font-primary); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.project-card .card-body .project-location { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.project-card .card-body .project-location i { color: var(--gold); }
.project-card .card-body .highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.project-card .card-body .highlights span { background: var(--off-white); padding: 4px 12px; border-radius: 6px; font-size: 0.78rem; color: var(--text-dark); }
.project-card .card-body .config-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--light-gray); font-size: 0.85rem; }
.project-card .card-body .config-row strong { color: var(--navy); }
.project-card .card-body .config-row span { color: var(--text-muted); }
.project-card .card-body .contact-info { background: var(--off-white); padding: 12px 16px; border-radius: 10px; margin: 12px 0; font-size: 0.85rem; }
.project-card .card-body .contact-info i { color: var(--gold); margin-right: 8px; }
.project-card .card-body .price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-top: 1px solid var(--light-gray); font-size: 0.85rem; }
.project-card .card-body .price-row strong { color: var(--navy); }
.project-card .card-body .price-row .price-lock { color: var(--gold); font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; }
.project-card .card-body .price-row .price-lock:hover { color: var(--gold-dark); }
.project-card .card-body .price-row .price-lock i { margin-right: 6px; transition: transform 0.3s ease, color 0.3s ease; }
.project-card .card-body .price-row .price-lock.animating i { animation: unlockShake 0.6s ease; }
.project-card .card-body .price-row .price-lock.unlocked i { color: #28a745; }
.project-card .card-body .price-row .price-lock.unlocked .lock-text { display: none; }
.project-card .card-body .price-row .price-lock.unlocked .unlock-text { display: inline; }
.project-card .card-body .price-row .price-lock .unlock-text { display: none; }
.project-card .card-footer-actions { padding: 0 28px 28px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== AMENITIES ===== */
.amenities-section { padding: 100px 0; background: var(--off-white); }
.amenity-card { text-align: center; padding: 35px 20px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); height: 100%; }
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.amenity-card .icon-box { width: 70px; height: 70px; margin: 0 auto 18px; background: linear-gradient(135deg, rgba(201,169,78,0.12), rgba(201,169,78,0.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--gold); transition: var(--transition); }
.amenity-card:hover .icon-box { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); box-shadow: var(--shadow-gold); }
.amenity-card h6 { font-family: var(--font-secondary); font-weight: 600; font-size: 1rem; color: var(--navy); }

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; background: var(--white); }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,22,40,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--white); font-size: 2rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.testimonials-section::before { content: '"'; position: absolute; top: -40px; left: 40px; font-size: 30rem; color: rgba(201,169,78,0.05); font-family: var(--font-primary); line-height: 1; }
.testimonial-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(201,169,78,0.1); border-radius: 16px; padding: 35px 25px; text-align: center; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.testimonials-row .testimonial-card { margin: 0; }
.testimonial-card img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--gold); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-card h6 { color: var(--white); font-family: var(--font-secondary); font-weight: 600; margin-bottom: 2px; }
.testimonial-card span { color: var(--gold); font-size: 0.8rem; }

/* ===== PRICING ===== */
.pricing-section { padding: 100px 0; background: var(--off-white); }
.pricing-locked { text-align: center; max-width: 500px; margin: 0 auto; padding: 50px 30px; background: var(--white); border-radius: 20px; box-shadow: var(--shadow-md); border: 1px solid rgba(201,169,78,0.1); }
.pricing-locked .lock-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: rgba(201,169,78,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--gold); }
.pricing-locked h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.pricing-locked p { color: var(--text-muted); margin-bottom: 24px; }
.pricing-locked .form-control { height: 50px; border-radius: 10px; border: 1px solid var(--light-gray); padding: 12px 16px; font-size: 0.9rem; }
.pricing-locked .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,78,0.15); }
.pricing-unlocked { display: none; }
.pricing-unlocked.show { display: block; animation: fadeInUp 0.6s ease; }
.pricing-card { background: var(--white); border-radius: 16px; padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); height: 100%; }
.pricing-card h5 { font-family: var(--font-primary); color: var(--navy); margin-bottom: 16px; }
.pricing-card .price-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--light-gray); }
.pricing-card .price-row:last-child { border-bottom: none; }
.pricing-card .price-row .type { color: var(--text-muted); font-size: 0.9rem; }
.pricing-card .price-row .value { color: var(--navy); font-weight: 600; }

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; background: var(--white); }
.accordion-item { border: none; margin-bottom: 12px; border-radius: 12px !important; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-button { font-weight: 600; font-size: 1rem; color: var(--navy); padding: 18px 24px; background: var(--white); border: none; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: var(--off-white); color: var(--navy); }
.accordion-button::after { background-size: 14px; }
.accordion-button:focus { border-color: transparent; box-shadow: none; }
.accordion-body { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }
.accordion-button:not(.collapsed)::after { filter: brightness(0) saturate(100%) invert(70%) sepia(40%) saturate(500%) hue-rotate(5deg); }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--off-white); }
.contact-info-card { padding: 30px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-sm); height: 100%; }
.contact-info-card .contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-card .contact-item:last-child { margin-bottom: 0; }
.contact-info-card .contact-item .icon { width: 44px; height: 44px; min-width: 44px; background: rgba(201,169,78,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.contact-info-card .contact-item h6 { font-family: var(--font-secondary); font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-card .contact-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.contact-form .form-control { height: 50px; border-radius: 10px; border: 1px solid var(--light-gray); padding: 12px 16px; font-size: 0.9rem; }
.contact-form .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,78,0.15); }
.contact-form textarea.form-control { height: auto; }

/* ===== FOOTER ===== */
.footer { background: rgba(0,0,0,0.92); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer h5 { font-family: var(--font-primary); color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer h5 span { color: var(--gold); }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer .social-links a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); margin-right: 8px; transition: var(--transition); font-size: 0.9rem; }
.footer .social-links a:hover { background: var(--gold); color: var(--navy); }
.footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; margin-top: 50px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== INNER PAGES ===== */
.page-header { position: relative; padding: 180px 0 80px; background-size: cover; background-position: center; }
.page-header::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(10,22,40,0.6)); }
.page-header .content { position: relative; z-index: 1; }
.page-header h1 { font-size: 3rem; color: var(--white); font-weight: 700; }
.page-header .breadcrumb { background: transparent; padding: 0; margin: 10px 0 0; }
.page-header .breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.page-header .breadcrumb .breadcrumb-item a { color: var(--gold); }
.page-header .breadcrumb .breadcrumb-item.active { color: var(--white); }
.page-header .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== PROJECT DETAIL ===== */
.project-hero { position: relative; height: 70vh; min-height: 450px; overflow: hidden; background-size: cover; background-position: center; }
.project-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,22,40,0.82), rgba(10,22,40,0.4)); }
.project-hero .content { position: absolute; top: 50%; left: 0; width: 100%; z-index: 1; transform: translateY(-50%); }
.project-hero .content h1 { color: var(--white); font-size: 3.8rem; font-weight: 700; font-family: var(--font-primary); }
.project-hero .content .meta { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.project-hero .content .meta i { color: var(--gold); }

.project-overview { padding: 80px 0; background: var(--white); }
.project-overview .stat-box { text-align: center; padding: 25px; background: var(--off-white); border-radius: 12px; transition: var(--transition); }
.project-overview .stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.project-overview .stat-box .number { font-family: var(--font-numbers); font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.project-overview .stat-box .number span { color: var(--gold); }
.project-overview .stat-box .label { font-size: 0.85rem; color: var(--text-muted); }

.highlights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.highlights-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dark); padding: 8px 0; }
.highlights-list li i { color: var(--gold); font-size: 0.8rem; width: 18px; }

.floor-plan-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; border: 1px solid rgba(0,0,0,0.04); transition: var(--transition); }
.floor-plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.floor-plan-card img { width: 100%; height: 200px; object-fit: cover; }
.floor-plan-card .plan-info { padding: 15px; }
.floor-plan-card .plan-info h6 { font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.floor-plan-card .plan-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; padding: 160px 0 70px; margin-top: 96px; background-size: cover; background-position: center; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.8) 100%); }
.page-hero .content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: var(--white); font-size: 3rem; font-weight: 700; font-family: var(--font-primary); }
.page-hero .breadcrumb { background: transparent; padding: 0; margin: 10px 0 0; justify-content: center; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.page-hero .breadcrumb-item a { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: var(--white); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== PAGE TITLE BAR (fallback) ===== */
.page-title-bar { background: var(--navy); padding: 140px 0 50px; position: relative; }
.page-title-bar h1 { color: var(--white); font-size: 2.5rem; font-weight: 700; }
.page-title-bar .breadcrumb { background: transparent; padding: 0; margin: 10px 0 0; }
.page-title-bar .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.page-title-bar .breadcrumb-item a { color: var(--gold); }
.page-title-bar .breadcrumb-item.active { color: var(--white); }
.page-title-bar .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
  .hero-content h1 { font-size: 3.2rem; }
  .section-title { font-size: 2.2rem; }
}

@media (max-width: 991.98px) {
  .navbar-collapse { background: var(--navy); padding: 20px; border-radius: 16px; margin-top: 10px; box-shadow: var(--shadow-lg); }
  .nav-link { padding: 12px 0 !important; }
  .navbar .nav-cta { margin-top: 12px; }
  .navbar .nav-cta .btn-gold-sm, .navbar .nav-cta .btn-outline-gold { width: 100%; text-align: center; }
  .top-contact .contact-links { display: none; }
  .hero-content h1 { font-size: 2.8rem; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
}

@media (max-width: 767.98px) {
  .hero-slider { height: calc(100vh - 80px); min-height: 400px; margin: 80px 0 15px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .scroll-indicator { display: none; }
  .section-title { font-size: 1.8rem; }
  .counter-item .number { font-size: 2.2rem; }
  .project-card .card-image { height: 220px; }
  .page-title-bar h1 { font-size: 1.8rem; }
  .project-hero .content h1 { font-size: 2rem; }
  .project-hero { height: 50vh; }
  .project-overview .stat-box { padding: 15px; }
  .project-overview .stat-box .number { font-size: 1.4rem; }
  .testimonial-card { padding: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
  .about-image .experience-badge { width: 100px; height: 100px; bottom: -10px; right: -10px; }
  .about-image .experience-badge span { font-size: 1.6rem; }
}

@media (max-width: 575.98px) {
  .hero-content h1 { font-size: 1.8rem; }
  .navbar-brand .logo-text { font-size: 1.3rem; }
  .btn-gold, .btn-navy { padding: 10px 24px; font-size: 0.85rem; }
  .floating-buttons a { width: 44px; height: 44px; font-size: 1.1rem; }
  .highlights-list { grid-template-columns: 1fr; }
  .pricing-locked { padding: 30px 20px; }
}

/* ===== SWIPER OVERRIDES ===== */
.swiper-pagination-bullet { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; }

/* ===== MISC ===== */
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 0 auto 16px; border-radius: 2px; }
.section-divider-left { margin: 0 0 16px; }
.map-container { border-radius: 16px; overflow: hidden; }
.map-container iframe { width: 100%; height: 350px; border: none; }

/* ===== UNLOCK ANIMATION ===== */
@keyframes unlockShake {
  0% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-15deg) scale(1.1); }
  40% { transform: rotate(15deg) scale(1.15); }
  60% { transform: rotate(-10deg) scale(1.2); color: #28a745; }
  80% { transform: rotate(5deg) scale(1.1); color: #28a745; }
  100% { transform: rotate(0deg) scale(1); color: #28a745; }
}
