/* ==================== CSS CUSTOM PROPERTIES ==================== */
:root {
    --gold: #c9a84c;
    --gold-dark: #b8860b;
    --gold-light: #e8d5a3;
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --navy-medium: #0f3460;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
    --gradient-gold: linear-gradient(135deg, #c9a84c, #b8860b);
    --gradient-navy: linear-gradient(135deg, #1a1a2e, #16213e);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 26, 46, 0.4) 0%, rgba(26, 26, 46, 0.85) 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior: smooth;
    scroll-padding-top: 80px; */
    width:100% !important;
    overflow-x:hidden !important;
    scroll-behavior:smooth !important;
}
/* html,body{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
} */

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden !important;
    background-color: var(--off-white);
    
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== UTILITY CLASSES ==================== */
.text-gold {
    color: var(--gold) !important;
}

.bg-light-custom {
    background-color: var(--off-white);
}

.bg-dark-section {
    background: var(--gradient-navy);
}

.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
    color: var(--white);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

/* ==================== GLASSMORPHISM ==================== */
.glass-card {
    background: var(--glass-bg-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.glass-card-dark {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card-dark:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.2);
}

/* ==================== NAVBAR ==================== */
.glass-navbar {
    background: transparent;
    backdrop-filter: blur(0px);
    transition: var(--transition-slow);
    padding: 15px 0;
}

.glass-navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 15px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.btn-enquiry-nav {
    background: var(--gradient-gold) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    margin-left: 10px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 80px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.hero-cta {
    margin-top: 30px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: var(--gold);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== ABOUT SECTION ==================== */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--gold);
}

.highlight-item h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--navy);
}

.highlight-item p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* ==================== AMENITIES SECTION ==================== */
.amenity-card {
    text-align: center;
    height: 100%;
}

.amenity-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 15px 0 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.amenity-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.amenity-icon-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 5px;
}

.amenity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.amenity-card:hover .amenity-img {
    transform: scale(1.05);
}

.amenity-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
}

.amenity-icon-i {
    font-size: 2rem;
    color: var(--gold);
}

/* ==================== FLOOR PLANS SECTION ==================== */
.floor-plan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fp-tab {
    padding: 12px 30px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.fp-tab.active,
.fp-tab:hover {
    background: var(--gradient-gold);
    color: var(--white);
    border-color: transparent;
}

.fp-panel {
    display: none;
}

.fp-panel.active {
    display: block;
}

.fp-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.fp-specs {
    list-style: none;
    padding: 0;
}

.fp-specs li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fp-image-placeholder {
    background: var(--gray-200);
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
}

.fp-placeholder-icon {
    font-size: 4rem;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}

.fp-image-placeholder p {
    font-weight: 600;
    color: var(--navy);
    font-size: 1.1rem;
}

.fp-image-placeholder span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==================== PRICING SECTION ==================== */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header {
    background: var(--gradient-navy);
    padding: 25px;
    text-align: center;
}

.pricing-header h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--gold-light);
    margin: 0;
    font-size: 0.9rem;
}

.pricing-body {
    padding: 30px;
    text-align: center;
}

.price {
    margin-bottom: 25px;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--gold);
    vertical-align: top;
}

.price .amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}

.price .period {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold);
}

/* ==================== LOCATION SECTION ==================== */
.map-wrapper {
    border: 3px solid rgba(201, 168, 76, 0.3);
}

.map-wrapper iframe {
    display: block;
}

.location-landmarks {
    padding-left: 20px;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landmark-item i {
    font-size: 1.5rem;
    min-width: 35px;
    text-align: center;
}

.landmark-item h6 {
    color: var(--white);
    margin-bottom: 2px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
}

.landmark-item p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.85rem;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author h6 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--navy);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ==================== FAQ SECTION ==================== */
.custom-accordion .accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 25px;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a84c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    color: rgba(255, 255, 255, 0.8);
    padding: 0 25px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== ENQUIRY FORM SECTION ==================== */
.enquiry-wrapper {
    padding: 50px;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-success-msg {
    text-align: center;
    padding: 30px;
}

.form-success-msg i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.form-success-msg h4 {
    color: var(--navy);
    margin-bottom: 10px;
}

/* ==================== FOOTER ==================== */
.footer-section {
    background: var(--navy);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h5,
.footer-contact h5,
.footer-rera h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact ul li i {
    margin-top: 3px;
}

.footer-rera p {
    font-size: 0.9rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
}

.footer-bottom .disclaimer {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== BROCHURE MODAL ==================== */
.glass-modal {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.glass-modal .modal-title {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
}

.glass-modal .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 12px;
}

.glass-modal .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.glass-modal .form-floating label {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-badge {
        right: 10px;
        bottom: -10px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .navbar-collapse {
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 20px;
        margin-top: 15px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .enquiry-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .gallery-item {
        height: 200px;
    }

    .location-landmarks {
        padding-left: 0;
        margin-top: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 25px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-cta .btn.me-3 {
        margin-right: 0 !important;
    }

    .fp-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}