@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Playfair Display', serif;
    overflow-x: hidden;
    background: #f8f6f3;
}

body {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.05); }
}

@keyframes shimmer {
    0%   { background-position: -1000px 0; }
    100% { background-position:  1000px 0; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-180deg) scale(0); }
    to   { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(210, 174, 109, 0.3); }
    50%       { box-shadow: 0 0 40px rgba(210, 174, 109, 0.6); }
}

@keyframes borderDraw {
    from { stroke-dashoffset: 1000; }
    to   { stroke-dashoffset: 0; }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: #D2AE6D;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease-out;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(210, 174, 109, 0.4);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-50px) scale(0.9);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 28px;
    color: #6f6c6a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: #D2AE6D;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
    animation: textReveal 0.6s ease-out 0.2s both;
}

.modal-title {
    font-size: 32px;
    font-weight: 300;
    color: #373435;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.modal-subtitle {
    font-size: 14px;
    color: #6f6c6a;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideInLeft 0.5s ease-out both;
}

.form-group:nth-child(1) { animation-delay: 0.3s; }
.form-group:nth-child(2) { animation-delay: 0.4s; }
.form-group:nth-child(3) { animation-delay: 0.5s; }
.form-group:nth-child(4) { animation-delay: 0.6s; }

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #373435;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    color: #373435;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}   
.form-group input:focus {
    outline: none;
    border-color: #D2AE6D;
    background: #faf9f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 174, 109, 0.2);
}

.form-group input::placeholder { color: #6f6c6a; }

.form-submit {
    background: #D2AE6D;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    animation: scaleIn 0.5s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before { width: 300px; height: 300px; }

.form-submit:hover {
    background: #c19d5e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 166, 125, 0.3);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: #D2AE6D;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    animation: float 3s ease-in-out infinite;
}

.scroll-top:hover {
    background: #c19d5e;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(210, 174, 109, 0.4);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    padding: 20px 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #373435;
    letter-spacing: 2px;
    animation: textReveal 1s ease-out;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: #D2AE6D;
    transition: width 0.5s ease;
}

.logo:hover::after { width: 100%; }
.nav-logo-img {
    height: 29px;
    width: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .nav-logo-img {
        height: 40px;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li { animation: slideInRight 0.6s ease-out both; }
.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }
.nav-links li:nth-child(6) { animation-delay: 0.6s; }

.nav-links a {
    text-decoration: none;
    color: #6f6c6a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: #D2AE6D;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active {
    color: #D2AE6D;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    min-height: 132vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('assets/Gemini_Generated_Image_637ix4637ix4637i (1).png');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 20px 50px;
    animation: fadeIn 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-label {
    color: white;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: textReveal 0.8s ease-out 0.5s both;
}

.hero-title {
    font-size: 72px;
    color: white;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 2px;
    animation: textReveal 1s ease-out 0.7s both;
}

.hero-title::first-line { font-weight: 600; }

.hero-image {
    width: 400px; height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideInRight 1s ease-out 0.5s both;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                    url("/horizoncomplexmiraroad/assets/Horizon\ Complex\ view\ F2\ with\ family.jpg.jpeg");
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
}

.hero-image:hover { transform: scale(1.05) rotate(2deg); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.hero-image:hover img { transform: scale(1.1); }

/* Introduction */
.introduction {
    padding: 20px 50px;
    text-align: center;
    position: relative;
    background: #f8f6f3;
    overflow: hidden;
}

.introduction::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(210, 174, 109, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.section-label {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D2AE6D;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: textReveal 0.8s ease-out both;
}

.section-label.in-view { animation: textReveal 0.8s ease-out both; }

.section-label::before,
.section-label::after {
    content: '✦';
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-size: 52px;
    font-weight: 300;
    color: #373435;
    margin-bottom: 30px;
    letter-spacing: 1px;
    opacity: 0;
    animation: textReveal 0.8s ease-out 0.2s both;
}

.section-title.in-view { animation: textReveal 0.8s ease-out 0.2s both; }

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #6f6c6a;
    opacity: 0;
    animation: textReveal 0.8s ease-out 0.4s both;
}

.section-description.in-view { animation: textReveal 0.8s ease-out 0.4s both; }

.discover-btn {
    background: #D2AE6D;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: scaleIn 0.6s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.discover-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.discover-btn:hover::before { width: 300px; height: 300px; }

.discover-btn:hover {
    background: #c19d5e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 166, 125, 0.3);
}

.building-image {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    opacity: 0;
    animation: scaleIn 1s ease-out 0.8s both;
    transition: transform 0.3s ease;
}

.building-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.building-image img { width: 100%; height: auto; display: block; transition: transform 0.3s ease; }
.building-image:hover img { transform: scale(1.05); }

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    border-radius: 15px;
}

/* Features */
.features {
    padding: 20px 50px;
    background: #faf8f5;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    z-index: 0;
    animation: float 30s ease-in-out infinite;
}

.features-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.ornament {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out both;
}

.ornament-line {
    display: inline-block;
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 15px;
    vertical-align: middle;
}

.ornament-diamond {
    display: inline-block;
    width: 8px; height: 8px;
    background: #d4af37;
    transform: rotate(45deg);
    vertical-align: middle;
    animation: pulse 2s ease-in-out infinite;
}

.features-header {
    text-align: center;
    margin-bottom: 10px;
}

.features-header .section-label {
    color: #d4af37;
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0;
    animation: textReveal 0.8s ease-out 0.2s both;
}

.features-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
    opacity: 0;
    animation: textReveal 1s ease-out 0.4s both;
}

.features-header .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #d4af37;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0;
    animation: textReveal 1s ease-out 0.6s both;
}

.divider {
    width: 100px; height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 40px auto;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    margin-bottom: 80px;
}

.feature-item {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.feature-item.in-view { animation: fadeInUpFeature 0.8s ease-out forwards; }
.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }
.feature-item:nth-child(5) { transition-delay: 0.5s; }
.feature-item:nth-child(6) { transition-delay: 0.6s; }
.feature-item:nth-child(7) { transition-delay: 0.7s; }
.feature-item:nth-child(8) { transition-delay: 0.8s; }
.feature-item:nth-child(9) { transition-delay: 0.9s; }

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before { left: 100%; }

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.5s ease;
}

.feature-item:hover::after { width: 100%; }

.feature-item:hover {
    background: #f9f7f4;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #d4af37;
    opacity: 0.3;
    margin-bottom: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-number { opacity: 0.6; transform: scale(1.1); }

.feature-icon-classic {
    width: 60px; height: 60px;
    margin: 0 auto 30px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon-classic::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #d4af37;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon-classic::before { transform: scale(1); }
.feature-item:hover .feature-icon-classic { transform: rotate(360deg) scale(1.1); box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3); }

.icon-classic {
    width: 30px; height: 30px;
    stroke: #d4af37;
    transition: stroke 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .icon-classic { stroke: #ffffff; }

.feature-title-classic {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-title-classic { color: #d4af37; }

.feature-description-classic {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    font-weight: 300;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-description-classic { color: #333333; }

.premium-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.highlight-box {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    border: 2px solid #d4af37;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.highlight-box.in-view { animation: fadeInUpFeature 0.8s ease-out forwards; }
.highlight-box:nth-child(1) { transition-delay: 0.2s; }
.highlight-box:nth-child(2) { transition-delay: 0.4s; }

.highlight-box::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #d4af37, #f4d03f, #d4af37);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-box:hover::before { opacity: 0.3; animation: shimmer 2s linear infinite; }
.highlight-box:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3); }

.highlight-corner {
    position: absolute;
    width: 30px; height: 30px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.highlight-box:hover .highlight-corner { width: 40px; height: 40px; }
.highlight-corner.top-left    { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.highlight-corner.top-right   { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.highlight-corner.bottom-left  { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.highlight-corner.bottom-right { bottom: 20px; right: 20px; border-left: none; border-top: none; }

.highlight-icon-wrapper {
    width: 80px; height: 80px;
    margin: 0 auto 30px;
    border: 2px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.highlight-box:hover .highlight-icon-wrapper { background: rgba(212, 175, 55, 0.2); transform: rotate(180deg); }

.highlight-icon-svg { width: 40px; height: 40px; stroke: #d4af37; transition: transform 0.3s ease; }
.highlight-box:hover .highlight-icon-svg { transform: rotate(-180deg); }

.highlight-title-classic {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-box:hover .highlight-title-classic { transform: scale(1.05); text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }

.highlight-description-classic {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.9;
    font-weight: 300;
    text-align: center;
}

/* Floor Plans */
.floor-plans {
    padding: 20px 50px;
    background: #f8f6f3;
}

.floor-plans-content { max-width: 1400px; margin: 0 auto; }
.floor-plans-header { text-align: center; margin-bottom: 60px; }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.plan-card.in-view { animation: fadeInUpFeature 0.8s ease-out forwards; }
.plan-card:nth-child(1) { transition-delay: 0.1s; }
.plan-card:nth-child(2) { transition-delay: 0.3s; }
.plan-card:nth-child(3) { transition-delay: 0.5s; }
.plan-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 25px 70px rgba(0,0,0,0.2); }

.plan-header {
    padding: 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    transition: background 0.3s ease;
}

.plan-card:hover .plan-header { background: linear-gradient(135deg, #D2AE6D 0%, #c19d5e 100%); }

.plan-name { font-size: 36px; font-weight: 300; color: #373435; margin-bottom: 10px; transition: color 0.3s ease; }
.plan-card:hover .plan-name { color: white; }
.plan-details { font-size: 14px; color: #6f6c6a; transition: color 0.3s ease; }
.plan-card:hover .plan-details { color: rgba(255, 255, 255, 0.9); }

.plan-image { padding: 20px; background: #fafafa; overflow: hidden; }

.plan-image img {
    width: 100%; height: auto;
    filter: blur(3px);
    transition: all 0.3s ease;
}

.plan-card:hover .plan-image img { filter: blur(2px); transform: scale(1.1); }
.plan-download { padding: 20px 30px; text-align: center; }

.download-btn {
    background: transparent;
    color: #D2AE6D;
    padding: 12px 30px;
    border: 2px solid #D2AE6D;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-btn:hover {
    background: #D2AE6D;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 174, 109, 0.3);
}

/* Amenities */
.amenities { background: #f8f6f3; }
.amenities-content { max-width: 1400px; margin: 40px auto; }
.amenities-header { text-align: center; margin-bottom: 60px; }

.amenities-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    opacity: 0;
    animation: scaleIn 1s ease-out both;
}

.amenities-image.in-view { animation: scaleIn 1s ease-out both; }

.amenities-image img {
    width: 100%; height: 750px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.amenities-image img.fade-out { opacity: 0; transform: scale(0.95); }
.amenities-image img.fade-in  { opacity: 1; transform: scale(1); }

.amenities-tabs {
    position: absolute;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.amenity-tab {
    font-size: 14px;
    color: #6f6c6a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.amenity-tab::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: #D2AE6D;
    transition: width 0.3s ease;
}

.amenity-tab:hover::before { width: 80%; }
.amenity-tab:hover { color: #373435; background: rgba(210, 174, 109, 0.1); transform: translateY(-2px); }
.amenity-tab.active { color: white; background: #D2AE6D; font-weight: 600; transform: scale(1.05); box-shadow: 0 5px 15px rgba(210, 174, 109, 0.3); }

/* ── INTERIOR / GALLERY ── */
.interior {
    padding: 20px 50px;
    background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
}

.interior-content { max-width: 1400px; margin: 0 auto; }
.interior-header  { text-align: center; margin-bottom: 60px; }

/* Scroll Wrapper */
.gallery-scroll-wrapper {
    position: relative;
    margin-bottom: 16px;
}

/* Fade edges */
.gallery-scroll-wrapper::before,
.gallery-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}
.gallery-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f6f3, transparent);
}
.gallery-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f6f3, transparent);
}

/* Nav Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 44px; height: 44px;
    border: 2px solid #D2AE6D;
    background: white;
    color: #D2AE6D;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.gallery-nav-btn:hover  { background: #D2AE6D; color: white; transform: translateY(-50%) scale(1.1); }
.gallery-nav-btn:disabled { opacity: 0.25; cursor: default; }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

/* Scroll Track */
.gallery-scroll-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 60px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}
.gallery-scroll-track:active { cursor: grabbing; }
.gallery-scroll-track::-webkit-scrollbar { display: none; }

/* Cards */
.gallery-scroll-card {
    flex-shrink: 0;
    width: 320px;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}
.gallery-scroll-card.in-view { opacity: 1; transform: translateY(0); }
.gallery-scroll-card:hover   { box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

.gallery-scroll-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-scroll-card:hover img { transform: scale(1.08); }

/* Caption */
.gallery-card-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-scroll-card:hover .gallery-card-caption { opacity: 1; transform: translateY(0); }

/* Gold border on hover */
.gallery-scroll-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    z-index: 2;
    transition: border-color 0.35s ease;
    pointer-events: none;
}
.gallery-scroll-card:hover::before { border-color: #D2AE6D; }

/* Progress Bar */
.gallery-progress-wrap { padding: 0 60px; margin-bottom: 40px; }
.gallery-progress-track {
    height: 2px;
    background: rgba(210,174,109,0.2);
    border-radius: 2px;
    overflow: hidden;
}
.gallery-progress-fill {
    height: 100%;
    background: #D2AE6D;
    border-radius: 2px;
    width: 0%;
    transition: width 0.2s ease;
}

/* Footer */
.footer-main {
    background: #b5329a;
    color: #fff;
    padding: 55px 90px 50px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 60px;
}

.footer-main .left { flex: 1; max-width: 500px; }

.footer-logo-img {
    max-width: 230px;
    height: auto;
    max-height: 95px;
    object-fit: contain;
    margin-bottom: 28px;
    display: block;
}

.logo-placeholder:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.logo-placeholder svg { width: 30px; height: 30px; opacity: 0.5; }
.logo-placeholder .logo-text { font-size: 0.65rem; color: rgba(255,255,255,0.65); font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; }
.footer-main .desc { font-size: 0.97rem; line-height: 1.78; color: rgba(255,255,255,0.93); margin-bottom: 32px; }

.footer-main .socials { display: flex; gap: 12px; }

.footer-main .socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-main .socials a:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); transform: translateY(-3px); }
.footer-main .socials svg { width: 17px; height: 17px; fill: #fff; }
.footer-main .socials .insta svg { fill: none; stroke: #fff; stroke-width: 1.8px; }
.footer-main .right { flex: 0 0 420px; }

.sales-title { font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 22px; }
.footer-main .address { font-size: 0.97rem; line-height: 1.72; color: rgba(255,255,255,0.92); margin-bottom: 18px; }
.footer-main .contact { font-size: 0.97rem; line-height: 1.85; color: rgba(255,255,255,0.92); margin-bottom: 24px; }

.qr-row { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 22px; }
.qr-item { display: flex; flex-direction: column; align-items: center; gap: 7px; }

.qr-box {
    width: 90px; height: 100px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-box:hover { border-color: #b5329a; transform: scale(1.05); }
.qr-box svg { width: 34px; height: 34px; opacity: 0.38; }
.qr-box .qr-text { font-size: 0.54rem; color: #b5329a; font-weight: 700; letter-spacing: 0.3px; text-align: center; line-height: 1.45; }
.qr-label { font-size: 0.63rem; color: rgba(255,255,255,0.78); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; text-align: center; }
.footer-main .rera { font-size: 0.95rem; color: rgba(255,255,255,0.92); font-weight: 500; }

/* Copyright */
.footer-bottom { background: #a02d8c; text-align: center; padding: 18px 20px; font-size: 0.93rem; color: rgba(255,255,255,0.85); letter-spacing: 0.3px; }
.footer-bottom .highlight { color: #f5d97e; font-variant: small-caps; font-weight: 700; letter-spacing: 1.5px; }
.footer-bottom .policy-link { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; transition: color 0.2s; }
.footer-bottom .policy-link:hover { color: #fff; }

/* Base Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUpFeature { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.fade-in { animation: fadeInUp 0.8s ease; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .nav-container, .hero-content { padding: 0 30px; }
    .hero-title { font-size: 52px; }
    .section-title, .features-header .section-title { font-size: 42px; }
    .features-header .section-subtitle { font-size: 32px; }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .neighborhood-content { grid-template-columns: 1fr; }
    .premium-highlights { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { flex-direction: column; padding: 40px 30px; gap: 40px; }
    .footer-main .right { flex: 1; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-container { padding: 0 20px; }
    .logo { font-size: 22px; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%; max-width: 300px; height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        gap: 20px;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; animation: slideInRight 0.4s ease-out both; }
    .nav-links a { display: block; padding: 15px 0; font-size: 16px; }
    .hero { min-height: auto; background-attachment: scroll; }
    .hero-content { flex-direction: column; text-align: center; padding: 0 20px; }
    .hero-title { visibility: hidden; }
    .hero-image { width: 100%; max-width: 400px; margin-top: 40px; }
    .introduction, .features, .floor-plans, .amenities, .neighborhood, .interior { padding: 60px 20px; }
    .section-title { font-size: 32px; }
    .section-description { font-size: 15px; }
    .features-grid { grid-template-columns: 1fr; }
    .features-header .section-title { font-size: 32px; }
    .features-header .section-subtitle { font-size: 24px; }
    .feature-item { padding: 40px 30px; }
    .highlight-box { padding: 50px 30px; }
    .highlight-title-classic { font-size: 24px; }
    .plans-grid { grid-template-columns: 1fr; }
    .amenities-image img { height: 300px; }
    .amenities-tabs { position: static; transform: none; margin-bottom: 20px; padding: 15px 20px; gap: 15px; }
    .amenity-tab { font-size: 12px; }
    .footer-main { padding: 40px 20px; }
    .logo-placeholder { width: 200px; height: 80px; }
    .footer-main .desc { font-size: 0.9rem; }
    .sales-title { font-size: 1.2rem; }
    .qr-row { justify-content: center; }
    .scroll-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    .modal-container { padding: 30px 20px; width: 95%; }
    .modal-title { font-size: 24px; }
    .hero-label { display: none; }
    /* Gallery mobile */
    .gallery-scroll-card { width: 260px; height: 340px; }
    .gallery-scroll-track { padding: 10px 40px 16px; }
    .gallery-progress-wrap { padding: 0 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .section-title, .features-header .section-title { font-size: 28px; }
    .features-header .section-subtitle { font-size: 20px; }
    .plan-name { font-size: 28px; }
    .nav-links { width: 80%; }
    .discover-btn, .form-submit { padding: 14px 30px; font-size: 13px; }
    .amenities-image img { height: 250px; }
    .amenities-tabs { gap: 8px; padding: 12px 15px; width: 380px; }
    .amenity-tab { font-size: 11px; padding: 5px 10px; }
}

@media (max-width: 360px) {
    .logo { font-size: 18px; }
    .hero-title { font-size: 28px; }
    .section-title { font-size: 24px; }
    .feature-item { padding: 30px 20px; }
}

/* ============================================
   CUSTOM MATH CAPTCHA STYLES
   ============================================ */

.captcha-group { margin-top: 5px; }

.captcha-group label {
    font-size: 14px;
    font-weight: 600;
    color: #373435;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.captcha-box {
    background: linear-gradient(135deg, #faf8f5, #f5f2ee);
    border: 2px solid #e8ddd0;
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.captcha-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #D2AE6D, #c19d5e);
    border-radius: 0 2px 2px 0;
}

.captcha-question-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.captcha-icon { font-size: 18px; flex-shrink: 0; }

#captchaQuestion {
    font-size: 22px;
    font-weight: 700;
    color: #373435;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    flex: 1;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px dashed #D2AE6D;
    text-align: center;
    user-select: none;
}

.captcha-refresh {
    background: #D2AE6D;
    color: white;
    border: none;
    width: 36px; height: 36px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.captcha-refresh:hover { background: #c19d5e; transform: rotate(180deg) scale(1.1); }

#captchaInput {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #373435;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family:'Playfair Display', serif;
    background: white;
}

#captchaInput::-webkit-outer-spin-button,
#captchaInput::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

#captchaInput:focus { outline: none; border-color: #D2AE6D; box-shadow: 0 0 0 3px rgba(210, 174, 109, 0.15); }
#captchaInput.captcha-success { border-color: #10b981; background: #f0fdf4; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15); color: #10b981; }
#captchaInput.captcha-error   { border-color: #ef4444; background: #fff5f5; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15); color: #ef4444; }

.captcha-status {
    display: block;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 600;
    min-height: 20px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.captcha-status.success { color: #10b981; }
.captcha-status.error   { color: #ef4444; }

@keyframes captchaShake {
    0%, 100% { transform: translateX(0); }
    15%       { transform: translateX(-8px); }
    30%       { transform: translateX(8px); }
    45%       { transform: translateX(-6px); }
    60%       { transform: translateX(6px); }
    75%       { transform: translateX(-4px); }
    90%       { transform: translateX(4px); }
}

.captcha-box.shake { animation: captchaShake 0.6s ease; border-color: #ef4444; }

@media (max-width: 480px) {
    #captchaQuestion { font-size: 18px; padding: 6px 10px; }
    .captcha-refresh { width: 32px; height: 32px; font-size: 15px; }
    .captcha-box { padding: 14px 15px; }
}