/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fcfbfa;     /* Soft warm white / Alabaster */
    --accent-gold: #e8602b;      /* Antique Gold from Reference Site */
    --accent-gold-dark: #b5893d;
    --accent-glow: rgba(221, 160, 73, 0.2);
    
    --text-primary: #222222;     /* Grounded text */
    --text-secondary: #555555;   /* Slate Gray */
    --text-muted: #888888;
    
    --border-color: rgba(221, 160, 73, 0.25);
    --border-light: rgba(0, 0, 0, 0.08);
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

/* Layout Row/Col Helpers */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.align-items-center {
    align-items: center;
}

.col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-md-12, .col-md-6, .col-sm-12 {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 767px) {
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Sections */
section {
    padding: 40px 0;
    position: relative;
}

/* Section Titles (Solustrid Template Style) */
.title-style-one, .sec-title {
    margin-bottom: 50px;
}

.title-style-one.centered, .sec-title.centered {
    text-align: center;
}

.title-style-one .subtitle, .sec-title .title {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 700;
}

.title-style-one h2, .sec-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.title-style-one .text, .sec-title .text {
    max-width: 100%;
    margin: 20px auto 0;
    font-size: 1rem;
    line-height: 1.7em;
}

/* Button System */
.theme-btn {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 30px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-style-one {
    background-color: var(--accent-gold);
    color: #ffffff;
}

.btn-style-one:hover {
    background-color: #0b0f19;
    color: #ffffff;
}

.btn-style-two {
    background-color: var(--accent-gold);
    color: #ffffff;
}

.btn-style-two:hover {
    background-color: var(--accent-gold);
    color: #111827;
    filter: brightness(1.15);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* List Style One */
.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: var(--text-primary);
    font-weight: 700;
    padding-left: 25px;
    margin-bottom: 12px;
    list-style: none;
}

.list-style-one li::before {
    content: "➔";
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 900;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: relative;
    display: block;
    width: 100%;
    z-index: 99999;
}

.main-header .header-upper {
    position: relative;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
}

.logo-gold {
    color: var(--accent-gold);
}

.nav-outer {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu .navigation {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-menu .navigation li {
    list-style: none;
}

.main-menu .navigation li a {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    padding: 10px 0;
}

.main-menu .navigation li a:hover {
    color: var(--accent-gold);
}

.main-header .outer-box {
    position: relative;
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    margin-left: 15px;
    vertical-align: middle;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 99999;
    padding: 12px 0;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
}

.sticky-header.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   CUSTOM HERO SECTION
   ========================================================================== */
.custom-hero {
    background-image: url('images/hero_bg2.jpeg');
    background-size: cover;
    background-position: 15% center;
    background-repeat: no-repeat;
    min-height: 85vh;
    padding: 120px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-mobile-img {
    display: none;
}

@media (min-width: 1200px) {
    .custom-hero .hero-left-col {
        flex: 0 0 72% !important;
        max-width: 72% !important;
    }
    .custom-hero .hero-form-col {
        flex: 0 0 28% !important;
        max-width: 28% !important;
    }
}

/* LEFT CONTENT */
.hero-left h2 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 16px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.hero-left p {
    color: #dddddd;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.textd {
    font-size: 26px !important;
    font-weight: 500;
    color: #ffffff;
    line-height: 40px;
    font-family: 'Cormorant Garamond', serif;
}

.stdef {
    font-size: 26px !important;
    font-weight: 400;
    color: #ffffff;
    line-height: 40px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.blink {
    animation: blinker 4s linear infinite;
    color: #f5f080;
    font-weight: 700;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.highlight-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 35px 0;
}

.highlight-points li {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    background: rgba(7, 7, 7, 0.35);
    padding: 10px 15px 10px 35px;
    border-radius: 5px;
    width: fit-content;
    font-weight: 600;
}

.highlight-points li::before {
    content: "✦";
    position: absolute;
    left: 15px;
    color: var(--accent-gold);
    font-weight: bold;
}

.icon-download::before {
    content: "⬇";
    font-size: 16px;
    display: inline-block;
    margin-right: 8px;
    animation: arrowBounce 1.2s infinite ease-in-out;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* RIGHT FORM */
.hero-form {
    background: #000;
    /* backdrop-filter: blur(12px); */
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(221, 160, 73, 0.2);
    max-width: 360px;
    margin-left: auto;
}

.hero-form h3 {
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 4px;
}

.hero-form select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.hero-form input::placeholder {
    color: #cccccc;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.12);
}

.hero-form button {
    background: var(--accent-gold);
    color: #ffffff;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-form button:hover {
    background-color: var(--accent-gold-dark);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section-two {
    background-color: var(--bg-primary);
}

.about-content-row {
    /* align-items: center; */
    margin-top: 40px;
}

.about-section-two .image-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.about-section-two .content-column .inner-column {
    padding-left: 30px;
}

.about-section-two .text p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7em;
}

.about-section-two .theme-btn {
    margin-top: 20px;
}

/* ==========================================================================
   LUXURY AMENITIES CSS
   ========================================================================== */
.lux-amenities-section {
    background: #070226;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.lux-amenities-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(221, 160, 73, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(221, 160, 73, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.lux-amenities-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lux-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.lux-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b9944e;
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
}

.lux-main-title {
    font-size: clamp(28px, 5vw, 46px);
    color: #b9944e;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 24px;
    line-height: 1.2;
}

.lux-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.lux-divider span:not(.lux-diamond) {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b9944e);
}

.lux-divider span:last-child {
    background: linear-gradient(90deg, #b9944e, transparent);
}

.lux-diamond {
    color: #b9944e;
    font-size: 10px;
}

/* TABS */
.lux-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.lux-tab {
    background: transparent;
    border: 1px solid rgba(185, 148, 78, 0.35);
    color: rgba(185, 148, 78, 0.7);
    padding: 10px 22px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    border-radius: 2px;
}

.lux-tab:hover {
    border-color: #b9944e;
    color: #b9944e;
    background: rgba(185, 148, 78, 0.05);
}

.lux-tab.active {
    background: rgba(185, 148, 78, 0.12);
    border-color: #b9944e;
    color: #d4aa60;
}

/* TAB CONTENT */
.lux-tab-content {
    display: none;
    animation: luxFadeIn 0.4s ease;
}

.lux-tab-content.active {
    display: block;
}

@keyframes luxFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lux-category-label {
    text-align: center;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(221, 160, 73);
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* ICON GRID */
.lux-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
}

.lux-icons-grid--center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.lux-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: default;
    width: calc((100% - 100px) / 6);
}

.lux-icon-item span {
    color: rgba(220, 200, 160, 0.85);
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.5;
}

.lux-icon-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 1.5px solid rgba(185, 148, 78, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    background: rgba(185, 148, 78, 0.04);
    position: relative;
}

.lux-icon-circle::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(185, 148, 78, 0.15);
    transition: all 0.35s ease;
}

.lux-icon-circle svg {
    width: 38px;
    height: 38px;
    color: #b9944e;
    stroke: #b9944e;
}

.lux-icon-item:hover .lux-icon-circle {
    border-color: #d4aa60;
    background: rgba(185, 148, 78, 0.12);
    box-shadow: 0 0 24px rgba(185, 148, 78, 0.2), inset 0 0 20px rgba(185, 148, 78, 0.05);
    transform: translateY(-4px);
}

.lux-icon-item:hover .lux-icon-circle svg {
    color: #e8c870;
    stroke: #e8c870;
}

.lux-icon-item:hover span {
    color: #d4aa60;
}

/* ==========================================================================
   PROJECT HIGHLIGHTS SECTION
   ========================================================================== */
.projects-section {
    background-color: var(--bg-primary);
}

.highlights-content-row {
    margin-top: 40px;
}

.projects-section .image-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.cyrls {
    margin-bottom: 30px;
}

/* ==========================================================================
   FLOOR PLANS SECTION
   ========================================================================== */
.news-section {
    background-color: var(--bg-secondary);
}

.floor-plans-row {
    margin-top: 40px;
}

.floor-block .inner-box {
    position: relative;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.floor-block .image.master-plan {
    position: relative;
    overflow: hidden;
}

.floor-block .image.master-plan.blurred img {
    filter: blur(8px);
}

.floor-block .image.master-plan img {
    width: 100%;
    display: block;
}

.floor-overlay {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 16px 32px;
    border: 2px solid var(--accent-gold);
    border-radius: 6px;
    pointer-events: none;
    min-width: 160px;
}

.floor-overlay h4 {
    color: var(--accent-gold);
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(221, 160, 73, 0.8);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.floor-overlay p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.floor-block .lower-content {
    padding: 20px;
    text-align: center;
}

.floor-block .lower-content .theme-btn {
    width: 100%;
}

/* ==========================================================================
   LOCATION ADVANTAGES SECTION
   ========================================================================== */
.location-content-row {
    margin-top: 40px;
}

.location-map-mockup {
    width: 100%;
    display: flex;
    justify-content: center;
}

.map-container-mockup {
    width: 100%;
    height: 400px;
    max-width: 450px;
    background: linear-gradient(145deg, #fdfcfa, #f6f4f0);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.02), 0 20px 40px rgba(221, 160, 73, 0.05);
}

.map-container-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(rgba(221, 160, 73, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px, 40px 40px;
    z-index: 1;
}

.map-graphic {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

.map-pin {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    color: var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.map-pin span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bg-primary);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--accent-gold);
    margin-top: 6px;
    color: var(--text-primary);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.map-pulse {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(221, 160, 73, 0.15);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

.map-connect {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.map-connect::before {
    content: '';
    position: absolute;
    width: 2px;
    background: dashed var(--accent-gold);
    opacity: 0.3;
}

.connect-1 { top: 20%; left: 10%; }
.connect-1::before {
    height: 70px; top: 100%; left: 70%; transform: rotate(45deg);
}

.connect-2 { bottom: 25%; right: 10%; }
.connect-2::before {
    height: 80px; bottom: 100%; right: 70%; transform: rotate(35deg);
}

.connect-3 { top: 25%; right: 15%; }
.connect-3::before {
    height: 60px; top: 100%; right: 50%; transform: rotate(-25deg);
}

@keyframes mapPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.developer-section {
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */
.main-footer {
    background-color: #0c0f17;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #ffffff;
}

.main-footer .copyright {
    text-align: center;
}

.main-footer .rera-info {
    color: var(--accent-gold);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.main-footer .disclaimer-text {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.6em;
    margin-bottom: 15px;
    text-align: justify;
}

.main-footer .copyright-text {
    font-size: 0.8rem;
    color: #64748b;
}

.main-footer .copyright-text a {
    color: var(--accent-gold);
}

/* ==========================================================================
   MODAL POPUP
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 100px auto;
    max-width: 500px;
    padding: 0 15px;
}

.modal-content {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--accent-gold);
}

.modal-header {
    background: var(--accent-gold);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.modal-header .close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #ffffff !important;
    cursor: pointer;
    opacity: 0.8;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    padding: 24px 20px;
}

.modal-body .form-group {
    margin-bottom: 16px;
    text-align: left;
}

.modal-body .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.modal-body .form-control {
    width: 100%;
    height: auto;
    padding: 10px 14px;
    font-size: 0.95rem;
    border: 1px solid var(--accent-gold) !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #111827;
    border-radius: 4px;
}

.modal-body .form-control:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(221, 160, 73, 0.2);
}

/* ==========================================================================
   FLOATING SOCIAL BOX
   ========================================================================== */
.social-box {
    position: fixed;
    right: 0;
    bottom: 35%;
    z-index: 99999999;
}

.social-box-data {
    padding: 5px;
}

.social-box-data ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-box-data ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(221, 160, 73, 0.15);
    border-right: none;
    transition: var(--transition-smooth);
}

.social-box-data ul li a:hover {
    transform: translateX(-5px);
    background-color: #fdfbfa;
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #0c0f17;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-to-top:hover {
    background: var(--accent-gold);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   IMAGE GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.gallery-item .inner-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item .image-box {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.gallery-item .image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.gallery-item:hover .image-box img {
    transform: scale(1.1);
}

.gallery-item .overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.gallery-item:hover .overlay-box {
    opacity: 1;
}

.gallery-item .content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item .content .category {
    color: var(--accent-gold);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .content h3,
.gallery-item:hover .content .category {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item .image-box img {
        height: 220px;
    }
}

/* ==========================================================================
   ANIMATIONS & MEDIA QUERIES
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .custom-hero {
        background-image: none !important;
        background-color: #0b0f19;
        min-height: auto !important;
        padding: 0 0 50px 0 !important;
    }
    .custom-hero .container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .custom-hero .row {
        flex-direction: column;
        gap: 30px;
    }
    .hero-left-col {
        padding: 0 !important;
        flex: 0 0 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .hero-mobile-img {
        display: block;
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: cover;
        transform: scale(1.45) translateX(14%);
        transform-origin: center center;
    }
    .hero-form-col {
        flex: 0 0 100%;
        max-width: 500px !important;
        margin: 0 auto;
        padding: 0 20px !important;
    }
    .hero-form {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .about-content-row, .highlights-content-row, .location-content-row {
        flex-direction: column;
        gap: 30px;
    }
    .about-section-two .content-column .inner-column {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .title-style-one h2, .sec-title h2 {
        font-size: 2rem;
    }
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
        flex-direction: column;
        padding: 100px 30px 40px;
        display: flex;
        z-index: 9999;
        transition: var(--transition-smooth);
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu .navigation {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .main-menu .navigation li a {
        padding: 5px 0;
        font-size: 1.1rem;
    }
    
    .main-header .outer-box .btn-style-one {
        display: none;
    }

    .sticky-header {
        display: none !important;
    }
    
    .lux-icons-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }
    .lux-icon-item {
        width: auto;
    }
    .lux-icon-circle {
        width: 72px;
        height: 72px;
    }
    .lux-icon-circle svg {
        width: 30px;
        height: 30px;
    }
    .lux-tab {
        padding: 8px 14px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-left h2 {
        font-size: 2.2rem;
    }
    .textd, .stdef {
        font-size: 20px !important;
        line-height: 30px;
    }
    .lux-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lux-icon-circle {
        width: 64px;
        height: 64px;
    }
    .lux-icon-circle svg {
        width: 26px;
        height: 26px;
    }
    .lux-tab {
        padding: 7px 12px;
        font-size: 10px;
    }
}

/* Form Submit Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spinner-spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes spinner-spin {
    to { transform: rotate(360deg); }
}
