/* ===================================
   PRESTIGE IMPERIAL - PREMIUM LANDING PAGE
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gold: #D4AF37;
    --primary-gold-light: #E8C968;
    --primary-gold-dark: #B8941F;
    --deep-navy: #0A1628;
    --navy-blue: #1A2B47;
    --navy-light: #2C3E5C;
    --accent-teal: #00D4C5;
    --accent-coral: #FF6B6B;
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-gray: #A0A0A0;
    --bg-dark: #0D1117;
    --bg-card: #161B22;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1A2B47 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 43, 71, 0.85) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(135deg, #0A1628 0%, #1A2B47 50%, #2C3E5C 100%);
    overflow: hidden;
    padding: 10px 20px 180px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 197, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 197, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* --- NEW CLEAN HEADER STYLES --- */
.hero-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.badge-container {
    margin-bottom: 20px;
    display: block;
}

.hero-badge-top {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    /* Keep badge round */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.gold-text {
    color: var(--primary-gold);
    background: linear-gradient(135deg, #DFBD69 0%, #926F34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.white-text {
    color: #fff;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero-address {
    font-size: 14px;
    color: var(--accent-teal);
    margin: 0;
}

/* Hero Main Content - Two Column Layout ONLY */
.hero-main-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left Side - Video Section */
.hero-video-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    /* Much Taller video frame */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffffff;
    /* White Border Globally */
    animation: videoFloat 6s ease-in-out infinite;
}

@keyframes videoFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
    }
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Right Side - Info Section styles */
.hero-info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Stats Styles */
.stats-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-box {
    background: rgba(22, 27, 34, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-align: center;
    transition: var(--transition-smooth);
    animation: fadeInRight 0.8s ease-out;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.stat-box-number {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.stat-box-label {
    font-size: 10px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Key Points */
.key-points {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.key-point-item {
    color: var(--text-light);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-gold);
}

.key-point-item strong {
    color: var(--primary-gold);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.btn-enquiry,
.btn-site-visit {
    flex: 1;
    padding: 10px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 0px;
    /* PURE RECTANGLE */
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 40px;
    /* Fixed small height */
}

.btn-enquiry {
    background: var(--primary-gold);
    color: var(--deep-navy);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-enquiry:hover {
    background: #fff;
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-site-visit {
    background: #fff;
    color: var(--primary-gold);
    border: 2px solid #fff;
}

.btn-site-visit:hover {
    background: transparent;
    color: #fff;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-gray);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    margin: 10px auto 0;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 212, 197, 0.1);
    border: 1px solid var(--accent-teal);
    border-radius: 30px;
    color: var(--accent-teal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   WHY HOSUR SECTION
   =================================== */

.why-hosur {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
}

.why-hosur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.reason-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.reason-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.reason-description strong {
    color: var(--primary-gold);
    font-weight: 600;
}

/* ===================================
   WHY IMPERIAL SECTION
   =================================== */

.why-imperial {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0A1628 0%, #1A2B47 100%);
    position: relative;
}

.imperial-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   AMENITIES SECTION
   =================================== */

.amenities {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.amenity-item {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 197, 0.1);
    text-align: center;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.amenity-item:hover {
    transform: translateY(-8px) rotate(2deg);
    border-color: var(--accent-teal);
    box-shadow: 0 15px 40px rgba(0, 212, 197, 0.2);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    filter: grayscale(0.3);
    transition: var(--transition-smooth);
}

.amenity-item:hover .amenity-icon {
    filter: grayscale(0);
    transform: scale(1.2);
}

.amenity-name {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.4;
}

/* ===================================
   BUTTON STYLES
   =================================== */

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(60px) translateY(60px);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--deep-navy);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(10, 22, 40, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--deep-navy);
    color: var(--primary-gold);
    padding: 20px 50px;
    font-size: 18px;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.3);
}

.btn-cta:hover {
    background: var(--navy-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.5);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1A2B47 0%, #0A1628 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 20px;
}

.contact-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail-item a,
.contact-detail-item p {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    line-height: 1.6;
}

.contact-detail-item a:hover {
    color: var(--primary-gold);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-white);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--deep-navy);
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 60px 0 30px;
    background: var(--deep-navy);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-legal strong {
    color: var(--primary-gold);
}

/* ===================================
   ANIMATIONS
   =================================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-20deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-video-section {
        order: 2;
    }

    .hero-info-section {
        order: 1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        padding: 30px 15px 80px;
        min-height: auto;
    }

    .hero-header {
        margin-bottom: 40px;
        padding-top: 20px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 11px;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }

    .hero-title-inline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .prestige {
        margin-right: 10px;
    }

    .hero-main-content {
        gap: 30px;
    }

    .hero-info-section {
        order: 1;
    }

    .hero-video-section {
        order: 2;
    }

    .reasons-grid,
    .imperial-features,
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        margin-bottom: 50px;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title-inline {
        font-size: 2.5rem;
        display: block;
    }

    .prestige,
    .imperial {
        display: block;
        margin-right: 0;
    }

    .reason-card,
    .feature-card,
    .amenity-item {
        padding: 20px 15px;
    }

    .reason-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .reason-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .reason-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

/* ===================================
   FIXED BOTTOM BAR (Mobile Style)
   =================================== */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    padding: 0;
    height: 60px;
}

.btn-fixed-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    /* White Text */
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    height: 100%;
    gap: 10px;
    transition: background 0.3s;
}

.btn-fixed-item i {
    font-size: 18px;
    /* Optional: Icon specific color if needed, or white */
    color: #ffffff;
}

.btn-fixed-item:hover {
    background: #1a1a1a;
}

.fixed-separator {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Ensure Video Border is White on Mobile */
@media (max-width: 768px) {
    .video-wrapper {
        border-color: #ffffff !important;
    }
}

/* ===================================
   PROJECT HIGHLIGHTS SECTION
   =================================== */
.project-highlights {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1A2B47 0%, #0A1628 100%);
}

.highlights-content {
    max-width: 900px;
    margin: 0 auto;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.highlights-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.highlights-list li i {
    color: var(--primary-gold);
    margin-top: 5px;
}

.highlights-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-gold {
    background: var(--primary-gold);
    color: var(--deep-navy);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary-gold:hover {
    background: #fff;
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--deep-navy);
    transform: translateY(-3px);
}

/* ===================================
   PRICE TABLE SECTION
   =================================== */
.price-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.price-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 600px;
}

.price-table th,
.price-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.price-table th {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.price-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.btn-unlock {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-unlock:hover {
    background: var(--primary-gold);
    color: var(--deep-navy);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   MODAL STYLES
   =================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a2b47;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 30px;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.btn-submit-modal {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 6px;
    color: var(--deep-navy);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* ===================================
   MOBILE OPTIMIZATIONS FOR NEW SECTIONS
   =================================== */
@media (max-width: 768px) {

    .project-highlights,
    .price-section {
        padding: 40px 15px;
        /* Reduced padding */
    }

    .highlights-list li {
        font-size: 0.95rem;
        padding: 12px;
        gap: 10px;
    }

    .highlights-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-gold,
    .btn-outline-white {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* Price Table Mobile Fixes */
    .price-table {
        min-width: auto;
        /* Allow full fluid width */
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 12px 10px;
    }

    .btn-unlock {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* ===================================
   FIXED SIDE BUTTON (Book Site Visit)
   =================================== */
.fixed-side-btn {
    position: fixed;
    right: -65px;
    /* Offset to align to edge after rotation (approx half width) */
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #C2183C;
    /* Red color matching request */
    color: #ffffff;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 10000;
    border-radius: 6px 6px 0 0;
    /* Rounded top (which becomes left after rotation) */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    transition: all 0.3s;
}

.fixed-side-btn:hover {
    background: #a0122e;
    right: -60px;
    /* Subtle peek effect */
}

/* ===================================
   CTA VISIBILITY FIXES
   =================================== */
.cta-banner {
    background: var(--primary-gold);
    position: relative;
    z-index: 10;
}

.cta-title,
.cta-description {
    color: var(--deep-navy);
}

.btn-cta {
    background: var(--deep-navy);
    color: #ffffff;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    /* Ensure no underline */
}

.btn-cta:hover {
    background: #fff;
    color: var(--deep-navy);
    transform: translateY(-5px);
}