* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ==============================
   TOP BAR
   ============================== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(135deg, #6B5538, #8C7044);
    color: white;
    text-align: center;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topbar-content {
    max-width: 1300px;
    margin: 0 auto;
}

/* ==============================
   STICKY NAVIGATION
   ============================== */
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(30, 20, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.navbar.scrolled {
    background: rgba(20, 12, 2, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C9A96E;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #C9A96E;
    background: rgba(201, 169, 110, 0.12);
}

.nav-phone {
    background: linear-gradient(135deg, #8C7044, #B08D57) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
}

.nav-phone:hover {
    background: linear-gradient(135deg, #B08D57, #C9A96E) !important;
    transform: scale(1.05);
}

.nav-links a.active {
    color: #C9A96E;
    background: rgba(201, 169, 110, 0.15);
}

/* ==============================
   PAGE HEADER (Individual Pages)
   ============================== */
.page-header {
    margin-top: 93px;
    background: linear-gradient(135deg, #1a0f00 0%, #3d2600 50%, #6B5538 100%);
    padding: 70px 25px 50px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    color: #C9A96E;
    font-weight: 500;
    opacity: 0.9;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #C9A96E;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==============================
   HERO SECTION WITH SLICK SLIDER
   ============================== */
.hero {
    position: relative;
    height: calc(100vh - 93px);
    margin-top: 93px;
    overflow: hidden;
}

.hero-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px 30px;
    gap: 50px;
    pointer-events: none;
}

.hero-inner>* {
    pointer-events: auto;
}

.hero-text {
    flex: 1;
    color: white;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 16px;
    color: white;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-prices {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-tag {
    background: #6B5538;
    border: 1px solid rgba(201, 169, 110, 0.35);
    backdrop-filter: blur(6px);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.price-tag span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #C9A96E;
    margin-top: 2px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form-wrapper {
    flex-shrink: 0;
    width: 380px;
}

.hero-form-card {
    background: linear-gradient(135deg, #1a0f00a6 0%, #2d1a0583 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px 25px;
    color: white;
}

.hero-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #C9A96E;
}

.hero-form-card p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.hero-form-card form input,
.hero-form-card form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.3s;
}

.hero-form-card form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-form-card form input:focus,
.hero-form-card form select:focus {
    border-color: #C9A96E;
}

.hero-form-card form select option {
    background: #333;
    color: white;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slide {
    height: 100%;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 10, 0, 0.35) 0%, rgba(40, 25, 5, 0.25) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Slick Arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    z-index: 3;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider .slick-prev {
    left: 25px;
}

.hero-slider .slick-next {
    right: 25px;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: rgba(140, 112, 68, 0.5);
    border-color: #C9A96E;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    display: none;
}

/* Slick Dots */
.hero-slider .slick-dots {
    bottom: 25px;
    z-index: 3;
}

.hero-slider .slick-dots li button:before {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: #C9A96E;
    opacity: 1;
}

/* ==============================
   FORM STYLES (Modal + Inline)
   ============================== */
.modal-content form input,
.modal-content form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.3s;
}

.modal-content form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-content form input:focus,
.modal-content form select:focus {
    border-color: #C9A96E;
}

.modal-content form select option {
    background: #333;
    color: white;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}

.phone-prefix {
    background: rgba(201, 169, 110, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 10px 14px;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    color: #C9A96E;
    font-weight: 600;
    white-space: nowrap;
}

.phone-input input {
    border-radius: 0 10px 10px 0 !important;
    margin-bottom: 0 !important;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8C7044, #B08D57);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #B08D57, #C9A96E);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 141, 87, 0.35);
}

/* ==============================
   BADGES
   ============================== */
.badge {
    display: inline-block;
    background: #C9A96E;
    color: #6B5538;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 13px;
}

.badge-alt {
    background: #6B5538;
    color: #C9A96E;
    border: 1px solid rgba(201, 169, 110, 0.35);
}

/* ==============================
   SECTION STYLES
   ============================== */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 12px;
    color: #6B5538;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* ==============================
   CTA BUTTONS
   ============================== */
.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8C7044, #B08D57);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(140, 112, 68, 0.3);
    text-align: center;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #B08D57, #C9A96E);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 141, 87, 0.4);
}

/* ==============================
   STATS SECTION
   ============================== */
.stats {
    background: #faf8f4;
    padding: 70px 25px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    border: 1px solid rgba(184, 134, 11, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(107, 85, 56, 0.15);
    border-color: rgba(140, 112, 68, 0.3);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #8C7044;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ==============================
   PRICING SECTION
   ============================== */
.pricing {
    padding: 70px 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.price-card {
    background: white;
    border: 2px solid #e8e0d0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6B5538, #B08D57);
}

.price-card:hover {
    border-color: #8C7044;
    box-shadow: 0 12px 35px rgba(107, 85, 56, 0.15);
    transform: translateY(-8px);
}

.price-card.featured {
    border: 3px solid #8C7044;
    box-shadow: 0 8px 25px rgba(107, 85, 56, 0.12);
}

.price-card.featured::before {
    height: 6px;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #FF6B6B, #ee5a5a);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bhk-type {
    font-size: 26px;
    font-weight: 700;
    color: #6B5538;
    margin-bottom: 8px;
}

.area {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    font-size: 30px;
    font-weight: 800;
    color: #8C7044;
    margin: 20px 0;
}

.price-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

.features-list {
    text-align: left;
    margin: 20px 0;
    padding: 0 10px;
}

.features-list li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
}

.features-list li:before {
    content: "✓ ";
    color: #8C7044;
    font-weight: bold;
    margin-right: 8px;
}

/* ==============================
   HIGHLIGHTS SECTION
   ============================== */
.highlights {
    background: linear-gradient(135deg, #1a0f00 0%, #3d2600 50%, #6B5538 100%);
    color: white;
    padding: 70px 25px;
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 28px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.25);
}

.highlight-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #C9A96E;
}

.highlight-desc {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.7;
}

/* ==============================
   GALLERY SECTION
   ============================== */
.gallery {
    padding: 70px 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 105, 20, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.gallery-overlay span {
    font-size: 32px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(139, 105, 20, 0.4);
}

.gallery-item:hover .gallery-overlay span {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #C9A96E;
    transform: rotate(90deg);
}

/* ==============================
   LOCATION SECTION
   ============================== */
.location {
    padding: 70px 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.location-category {
    background: #faf8f4;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #8C7044;
    transition: all 0.3s;
}

.location-category:hover {
    box-shadow: 0 5px 20px rgba(139, 105, 20, 0.1);
    transform: translateY(-3px);
}

.location-category h3 {
    color: #6B5538;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.location-category ul {
    list-style: none;
}

.location-category li {
    padding: 7px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px dashed #e0d8c8;
}

.location-category li:last-child {
    border-bottom: none;
}

/* ==============================
   AMENITIES SECTION
   ============================== */
.amenities {
    background: #faf8f4;
    padding: 70px 25px;
}

.amenities-content {
    max-width: 1200px;
    margin: 0 auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.amenity-item {
    background: white;
    padding: 22px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid rgba(184, 134, 11, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.amenity-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease-out;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 85, 56, 0.12);
    border-color: rgba(184, 134, 11, 0.2);
}

.amenity-item .icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.amenity-item .label {
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact {
    background: linear-gradient(135deg, #1a0f00 0%, #3d2600 50%, #6B5538 100%);
    color: white;
    padding: 70px 25px;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #C9A96E;
}

.phone {
    font-size: 26px;
    font-weight: 700;
    margin: 18px 0;
    letter-spacing: 1px;
}

.phone a {
    color: white;
    text-decoration: none;
}

.phone a:hover {
    color: #C9A96E;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 18px;
    transition: all 0.3s;
    font-size: 16px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    background: #0d0a06;
    color: #b0a68e;
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 25px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #C9A96E;
    font-size: 18px;
    font-weight: 700;
}

.footer-contact {
    display: flex;
    gap: 20px;
}

.footer-contact a {
    color: #d4c9a8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #C9A96E;
}

.footer-rera {
    padding: 25px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.footer-rera h4 {
    color: #C9A96E;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-rera p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-rera a {
    color: #B08D57;
    text-decoration: underline;
}

.footer-disclaimer {
    padding: 25px;
    font-size: 11px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    color: #8a7e68;
}

.footer-bottom {
    padding: 25px;
    text-align: center;
}

.footer-address {
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-links a {
    color: #B08D57;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #C9A96E;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 8px;
}

/* ==============================
   FIXED ENQUIRY BUTTON
   ============================== */
.fixed-enquiry-btn {
    position: fixed;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    z-index: 999;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.fixed-enquiry-btn span {
    display: block;
    background: linear-gradient(180deg, #8C7044, #B08D57);
    color: white;
    padding: 18px 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 10px 0 0 10px;
    box-shadow: -3px 0 15px rgba(140, 112, 68, 0.3);
    transition: all 0.3s;
}

.fixed-enquiry-btn:hover span {
    background: linear-gradient(180deg, #B08D57, #C9A96E);
    padding-right: 16px;
    box-shadow: -5px 0 25px rgba(176, 141, 87, 0.4);
}

/* ==============================
   FLOATING BUTTONS
   ============================== */
.floating-call {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background: #0078FF;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 120, 255, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.floating-call:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(0, 120, 255, 0.6);
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ==============================
   ENQUIRY MODAL
   ============================== */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.enquiry-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a0f00 0%, #2d1a05 100%);
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 20px;
    padding: 35px 30px;
    width: 420px;
    max-width: 92%;
    color: white;
    animation: modalSlideIn 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #C9A96E;
    transform: rotate(90deg);
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #C9A96E;
    margin-bottom: 6px;
}

.modal-content p {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 22px;
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

/* --- Tablet Landscape & below (992px) --- */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-prices {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 420px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Tablet Portrait & below (768px) --- */
@media (max-width: 768px) {
    .topbar {
        font-size: 10px;
        padding: 5px 10px;
    }

    .navbar {
        top: 26px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(20, 12, 2, 0.97);
        flex-direction: column;
        padding: 15px 0;
        border-top: 1px solid rgba(201, 169, 110, 0.12);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }

    .nav-logo {
        font-size: 15px;
    }

    .nav-logo img {
        height: 24px;
    }

    .hero {
        height: auto;
        margin-top: 76px;
        display: flex;
        flex-direction: column;
    }

    /* Slider sits at top, natural height */
    .hero-slider {
        position: relative;
        height: 45vh;
        min-height: 250px;
    }

    .hero-overlay {
        display: none;
    }

    /* Slick arrows smaller on mobile */
    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        width: 36px;
        height: 36px;
    }

    .hero-slider .slick-prev {
        left: 10px;
    }

    .hero-slider .slick-next {
        right: 10px;
    }

    .hero-slider .slick-prev svg,
    .hero-slider .slick-next svg {
        width: 18px;
        height: 18px;
    }

    .hero-slider .slick-dots {
        bottom: 12px;
    }

    /* Content flows below slider on white background */
    .hero-inner {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 35px 20px 30px;
        background: #fff;
        pointer-events: auto;
        gap: 25px;
    }

    .hero-text {
        color: #1a0f00;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 26px;
        text-shadow: none;
        color: #1a0f00;
    }

    .hero-subtitle {
        font-size: 16px;
        text-shadow: none;
    }

    .hero-tagline {
        font-size: 13px;
        color: #666;
        opacity: 1;
    }

    .hero-prices {
        justify-content: center;
    }

    .price-tag {
        background: rgba(139, 105, 20, 0.08);
        border-color: rgba(139, 105, 20, 0.25);
        color: #1a0f00;
        backdrop-filter: none;
    }

    .price-tag span {
        color: #8C7044;
    }

    .hero-badges {
        justify-content: center;
    }

    .badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    /* Hide hero form on mobile — use modal instead */
    .hero-form-wrapper {
        display: none;
    }

    .hero-form-card h3 {
        font-size: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }

    .fixed-enquiry-btn span {
        font-size: 12px;
        padding: 14px 10px;
    }

    .contact h2 {
        font-size: 26px;
    }

    .contact p {
        font-size: 15px;
    }

    .agent-name {
        font-size: 20px;
    }

    .phone {
        font-size: 20px;
    }

    .whatsapp-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .lightbox {
        padding: 15px;
    }

    .lightbox img {
        max-width: 96%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 36px;
    }

    /* Floating buttons smaller on tablet */
    .floating-call,
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 18px;
    }

    .floating-call {
        bottom: 80px;
    }

    .floating-whatsapp {
        bottom: 20px;
    }

    .floating-call svg {
        width: 24px;
        height: 24px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* --- Mobile (480px) --- */
@media (max-width: 480px) {
    .topbar {
        font-size: 9px;
        padding: 4px 8px;
        letter-spacing: 0.2px;
    }

    .navbar {
        top: 24px;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .nav-logo {
        font-size: 14px;
        gap: 6px;
    }

    .nav-logo img {
        height: 22px;
    }

    .hero {
        margin-top: 62px;
    }

    .hero-slider {
        height: 40vh;
        min-height: 220px;
    }

    .hero-overlay {
        display: none;
    }

    .hero-inner {
        padding: 25px 15px 25px;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-tagline {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .hero-prices {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .price-tag {
        width: 100%;
        text-align: center;
        padding: 8px 14px;
    }

    .price-tag span {
        font-size: 18px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .form-submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 22px;
    }

    .stat-number {
        font-size: 32px;
    }

    .pricing-grid {
        gap: 18px;
    }

    .price-card {
        padding: 24px 20px;
    }

    .bhk-type {
        font-size: 22px;
    }

    .price {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .highlight-card {
        padding: 22px;
    }

    .highlight-icon {
        font-size: 34px;
    }

    .highlight-title {
        font-size: 16px;
    }

    .highlight-desc {
        font-size: 13px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amenity-item {
        padding: 16px 10px;
    }

    .amenity-item .icon {
        font-size: 28px;
    }

    .amenity-item .label {
        font-size: 11px;
    }

    .contact {
        padding: 50px 15px;
    }

    .contact h2 {
        font-size: 22px;
    }

    .contact p {
        font-size: 14px;
    }

    .contact-info {
        padding: 20px 15px;
    }

    .agent-name {
        font-size: 18px;
    }

    .phone {
        font-size: 18px;
    }

    .whatsapp-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .footer-rera {
        padding: 20px 15px;
    }

    .footer-disclaimer {
        padding: 20px 15px;
        font-size: 10px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    .footer-address {
        font-size: 12px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 12px;
    }

    /* Floating buttons even smaller */
    .floating-call,
    .floating-whatsapp {
        width: 48px;
        height: 48px;
        right: 14px;
    }

    .floating-call {
        bottom: 75px;
    }

    .floating-whatsapp {
        bottom: 18px;
    }

    .floating-call svg {
        width: 22px;
        height: 22px;
    }

    .floating-whatsapp svg {
        width: 22px;
        height: 22px;
    }

    /* Hide fixed enquiry button on very small screens — modal still accessible via pricing buttons */
    .fixed-enquiry-btn {
        display: none;
    }

    /* Modal adjustments */
    .modal-content {
        padding: 28px 20px;
        border-radius: 16px;
        max-width: 95%;
    }

    .modal-content h3 {
        font-size: 20px;
    }

    .modal-content form input,
    .modal-content form select {
        padding: 10px 14px;
        font-size: 13px;
    }

    .lightbox {
        padding: 10px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 75vh;
        border-radius: 6px;
    }

    .lightbox-close {
        top: 8px;
        right: 12px;
        font-size: 30px;
    }
}

/* ==============================
   COOKIE CONSENT BANNER
   ============================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: rgba(20, 12, 2, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 14px;
    padding: 18px 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: cookieSlideUp 0.5s ease-out;
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner.hidden {
    animation: cookieSlideDown 0.3s ease-in forwards;
}

@keyframes cookieSlideDown {
    to {
        opacity: 0;
        transform: translateY(30px);
        pointer-events: none;
        display: none;
    }
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #C9A96E;
    text-decoration: underline;
}

.cookie-accept {
    flex-shrink: 0;
    background: linear-gradient(135deg, #8C7044, #B08D57);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #B08D57, #C9A96E);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}