/* --- Core Styles --- */
body {
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #555;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

p {
    line-height: 1.8;
}

/* --- Utilities --- */
.section-padding {
    padding: 120px 0;
}

.bg-lightest {
    background-color: #ffffff;
}

.bg-cream {
    background-color: #ffffff;
}

.text-gold {
    color: #1d4d2d;
}

.text-green-gradient {
    background: linear-gradient(90deg, #1d4d2d, #4a8c5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Unified Heading System --- */
.section-title-premium {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 60px;
    position: relative;
}

.section-title-premium::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1d4d2d;
    margin: 25px auto 0;
}

/* --- Navbar Refinement --- */
.navbar {
    background-color: transparent;
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar-brand {
    margin: 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        height: 50px;
    }
}

.hero-logo {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px !important;
    }
}

/* --- 1. Hero Section --- */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-bg-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 50px;
    text-align: left;
}

.hero-headline {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 45px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-event-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.location-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .location-link:hover {
    color: #1d4d2d;
} */

.btn-primary-gold {
    background-color: #1d4d2d;
    color: white;
    padding: 22px 40px;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(29, 77, 45, 0.3);
}

.btn-primary-gold:hover {
    background-color: #4a8c5f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(29, 77, 45, 0.5);
}

/* KV Unit Image */
.hero-kv-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-kv-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-kv-image:hover {
    transform: translateY(-5px);
}

/* --- Form Card (Obsidian Dark Default) --- */
.form-card {
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    padding: 18px !important;
    margin-bottom: 25px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.95rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus,
.form-select:focus {
    border-color: #4a8c5f !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 20px rgba(74, 140, 95, 0.15) !important;
    outline: none !important;
}

/* --- Theme: Light Green (Modern Sage Luxury) --- */
.theme-light-green .form-card {
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%) !important;
    border: 1px solid rgba(29, 77, 45, 0.1) !important;
    box-shadow: 0 40px 90px rgba(0, 50, 20, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.5) !important;
    padding: 50px 40px !important;
}

.theme-light-green .form-control {
    background-color: #ffffff !important;
    border: 1px solid #d1e2d7 !important;
    color: #1d4d2d !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.theme-light-green .form-control::placeholder {
    color: #9ab3a3 !important;
}

.theme-light-green .form-control:focus {
    border-color: #1d4d2d !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 15px rgba(29, 77, 45, 0.1) !important;
}

/* --- Custom Premium Select Dropdown --- */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    cursor: pointer;
    margin-bottom: 25px;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 18px !important;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.theme-light-green .custom-select-trigger {
    background-color: #ffffff !important;
    border: 1px solid #d1e2d7 !important;
    color: #1d4d2d !important;
}

.custom-select-trigger.is-placeholder span {
    color: rgba(255, 255, 255, 0.5);
}

.theme-light-green .custom-select-trigger.is-placeholder span {
    color: #9ab3a3;
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: #4a8c5f;
    box-shadow: 0 0 20px rgba(74, 140, 95, 0.15);
}

.theme-light-green .custom-select-wrapper.open .custom-select-trigger {
    border-color: #1d4d2d;
    box-shadow: 0 0 15px rgba(29, 77, 45, 0.1);
}

.custom-select-trigger:after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    transition: all 0.4s;
    margin-right: 5px;
}

.theme-light-green .custom-select-trigger:after {
    border-color: #1d4d2d;
}

.custom-select-wrapper.open .custom-select-trigger:after {
    transform: rotate(-135deg);
    border-color: #4a8c5f;
}

.theme-light-green .custom-select-wrapper.open .custom-select-trigger:after {
    border-color: #1d4d2d;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.theme-light-green .custom-options {
    background: #ffffff;
    border-color: #d1e2d7;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 15px 18px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.theme-light-green .custom-option {
    color: #1d4d2d;
}

.custom-option:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #4a8c5f;
    padding-left: 25px;
}

.theme-light-green .custom-option:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1d4d2d;
}

.custom-option.reset-option {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.theme-light-green .custom-option.reset-option {
    border-bottom-color: rgba(29, 77, 45, 0.1);
    color: #999;
}

.custom-option.selected {
    color: #4a8c5f;
    background: rgba(0, 0, 0, 0.05);
}

.theme-light-green .custom-option.selected {
    color: #1d4d2d;
    background: rgba(0, 0, 0, 0.05);
}

.btn-submit {
    background-color: #1d4d2d;
    border-radius: 0;
    padding: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    /* Increased for high-end look */
    border: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-submit:hover {
    background-color: #4a8c5f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(74, 140, 95, 0.3);
}

/* --- Custom Premium Select Dropdown --- */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    cursor: pointer;
    margin-bottom: 25px;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    padding: 18px !important;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-select-trigger.is-placeholder span {
    color: rgba(255, 255, 255, 0.5);
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: #4a8c5f;
    box-shadow: 0 0 20px rgba(74, 140, 95, 0.15);
}

.custom-select-trigger:after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    transition: all 0.4s;
    margin-right: 5px;
}

.custom-select-wrapper.open .custom-select-trigger:after {
    transform: rotate(-135deg);
    border-color: #4a8c5f;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(74, 140, 95, 0.3);
    border-top: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 15px 18px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.custom-option:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #4a8c5f;
    padding-left: 25px;
}

.custom-option.reset-option {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.custom-option.selected {
    color: #4a8c5f;
    background: rgba(0, 0, 0, 0.05);
}

/* --- 2. Intro Section --- */
.intro-revamp {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* .intro-revamp::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 60px;
    background: #856c47;
    transform: translateX(-50%);
} */

.intro-headline {
    font-size: 3.5rem;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
    color: #1a1a1a;
}

.intro-body {
    font-size: 1.25rem;
    color: #444;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* --- 3. Why Studioverse (Cinema Slider) --- */
.why-revamp {
    position: relative;
    overflow: hidden;
    background: #000;
}

.why-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-bg-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.why-content-overlay {
    position: relative;
    z-index: 10;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 50px 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-align: center;
    border-radius: 12px;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #4a8c5f;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.why-icon {
    font-size: 2.5rem;
    color: #4a8c5f;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    color: #fff;
}

.why-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.why-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* --- 4. Property Showcase --- */
.property-revamp {
    background: #ffffff;
    padding-top: 100px;
}

.property-row-revamp {
    display: flex;
    align-items: center;
    margin-bottom: 150px;
}

.property-row-revamp:last-child {
    margin-bottom: 0;
}

/* Ensure image takes up enough space */
.property-img-box {
    flex: 0 0 65%;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.property-img-box img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.property-row-revamp:hover .property-img-box img {
    transform: scale(1.05);
}

/* Property Slider Styles */
.property-slider {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.property-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.property-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.property-slider .swiper-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.property-slider .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.property-slider .swiper-pagination-bullet-active {
    background-color: #ffffff;
    opacity: 1;
}

.property-slider .swiper-button-prev,
.property-slider .swiper-button-next {
    color: #ffffff;
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.property-slider .swiper-button-prev:hover,
.property-slider .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.property-slider .swiper-button-prev::after,
.property-slider .swiper-button-next::after {
    font-size: 18px;
}

.property-content-box {
    flex: 1;
    background: #ffffff;
    padding: 60px 45px;
    margin-left: -10%;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(74, 140, 95, 0.1);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.property-row-revamp.reversed {
    flex-direction: row-reverse;
}

.property-row-revamp.reversed .property-content-box {
    margin-left: 0;
    margin-right: -10%;
}

.prop-logo-revamp {
    height: 55px;
    margin-bottom: 25px;
}

.prop-body-revamp {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Mnemonics / Feature Pointers */
.mnemonics-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mnemonic-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mnemonic-icon {
    font-size: 1.2rem;
    color: #4a8c5f;
    margin-top: 2px;
}

.mnemonic-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
    /* Removed all-caps for readability */
}

.btn-brochure {
    background: none;
    border: 1px solid #1d4d2d;
    color: #1d4d2d;
    padding: 12px 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border-radius: 4px;
}

.btn-brochure:hover {
    background: #1d4d2d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 77, 45, 0.1);
}

/* --- 5. Experience Section --- */
.exp-revamp {
    background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url('../images/hero-bg.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.exp-intro-body {
    max-width: 950px;
    /* Adjusted to force 2 lines */
    margin: 0 auto 60px auto !important;
    color: #444;
    font-size: 1.25rem;
    line-height: 1.8;
}

.exp-grid-revamp {
    display: flex;
    gap: 15px;
    height: 500px;
}

.exp-item-revamp {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exp-item-revamp img,
.exp-item-revamp video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}

.exp-item-revamp:hover {
    flex: 2.5;
}

.exp-item-revamp:hover img,
.exp-item-revamp:hover video {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* --- 6. Event Details (TRUE TICKET BANNER) --- */
.event-revamp {
    background: #ffffff;
}

.ticket-banner {
    display: flex;
    flex-wrap: wrap;
    background: #111;
    padding: 60px 40px;
    align-items: stretch;
    /* Force all columns to be same height */
    justify-content: space-between;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

/* Ticket Punching Effect */
.ticket-banner::before,
.ticket-banner::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #4a8c5f;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.ticket-banner::before {
    left: -35px;
}

.ticket-banner::after {
    right: -35px;
}

.ticket-group {
    text-align: center;
    flex: 0 0 50%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Unified top alignment */
    padding: 20px;
}

.ticket-group:nth-child(3) {
    flex: 0 0 100%;
}

/* Ticket Divider */
.ticket-group:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: 1px;
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
}

.ticket-group:nth-child(2)::after {
    display: none;
}

/* Fixed Header Stack for baseline alignment */
.ticket-icon {
    font-size: 2.2rem;
    color: #ffffff;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.ticket-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    font-weight: 700;
    height: 15px;
    margin-bottom: 35px;
    /* Spacing to the value row */
}

.ticket-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.ticket-link:hover {
    color: #4a8c5f;
    transform: translateY(-3px);
}

.ticket-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.btn-view-location {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 8px 18px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* margin-top: auto; */
    /* Push to bottom */
}

.btn-view-location:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
}

/* --- Final CTA --- */
.cta-revamp {
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-glass {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(74, 140, 95, 0.3);
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.cta-glass img {
    max-width: 100%;
    height: auto;
}

.cta-headline {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    color: #1a1a1a;
    font-weight: 800;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
    }

    .hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
        background: linear-gradient(180deg, #ffffff 0%, #f5faf2 100%);
    }

    .hero-bg-overlay {
        opacity: 0.08;
        background-color: #ffffff;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-event-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(74, 140, 95, 0.2);
        padding: 30px 40px;
        border-radius: 4px;
        width: 90%;
        max-width: 320px;
        margin: 0 auto 50px auto;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    }

    .hero-event-details span {
        margin-bottom: 12px;
        font-size: 0.95rem;
        letter-spacing: 0.05em;
        color: #1a1a1a;
    }

    .hero-event-details span:last-child {
        margin-bottom: 0;
    }

    .hero-event-details i {
        color: #1d4d2d;
        font-size: 1.2rem;
    }

    .hero-form-wrapper .form-card {
        background: rgba(240, 247, 242, 0.85) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    }

    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .property-row-revamp,
    .property-row-revamp.reversed {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .property-img-box,
    .property-content-box {
        width: 100%;
        margin: 0 !important;
    }

    .property-content-box {
        padding: 40px 25px;
        margin-top: -3px !important;
        border-radius: 0;
    }

    .prop-logo-revamp {
        height: 45px;
    }

    .exp-grid-revamp {
        flex-direction: column;
        height: auto;
    }

    .exp-item-revamp {
        height: 350px;
        flex: none !important;
    }

    .exp-revamp {
        background-attachment: scroll;
        /* Performance & visual fix for mobile */
    }

    .exp-intro-body {
        max-width: 100%;
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .ticket-banner {
        flex-direction: column;
        padding: 40px 20px;
    }

    .ticket-group {
        flex: 0 0 100% !important;
        border-bottom: 1px dashed rgba(74, 140, 95, 0.3);
        padding: 40px 0;
        width: 100%;
        min-height: auto;
        /* Removed forced height for mobile stacking */
    }

    .ticket-group::after {
        display: none;
    }

    .ticket-value {
        min-height: auto;
        margin-bottom: 15px;
    }

    .ticket-group:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-kv-wrapper {
        max-width: 400px;
        margin-top: 30px;
    }

    .section-title-premium {
        font-size: 1.8rem;
    }

    .intro-headline {
        font-size: 2.5rem;
    }

    .cta-headline {
        font-size: 2.5rem;
    }

    .cta-glass .btn-primary-gold {
        display: inline-block;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        letter-spacing: 0.15em;
        margin-bottom: 30px;
    }

    .hero-event-details {
        font-size: 0.9rem;
        padding: 25px 30px;
    }

    .hero-kv-wrapper {
        max-width: 100%;
        margin-top: 25px;
    }

    .hero-kv-image {
        border-radius: 6px;
    }

    .form-card {
        padding: 35px 20px;
    }

    .btn-submit {
        letter-spacing: 2px;
        padding: 18px;
    }

    .cta-glass {
        padding: 60px 20px;
    }

    .cta-headline {
        font-size: 2rem;
    }

    .cta-glass .btn-primary-gold {
        display: block;
        margin: 15px auto !important;
        width: 100%;
        max-width: 280px;
    }

    .section-title-premium {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
    }
}

/* --- Footer Section --- */
.footer-simple {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid rgba(74, 140, 95, 0.1);
}

.footer-simple p {
    color: #000000;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 500;
}





/* --- Artistic Label (Default / Desktop) --- */
.artistic-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    border-radius: 14px;
    z-index: 5;
    pointer-events: none;
}

.artistic-label.left {
    right: auto;
    left: 10px;
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
    .artistic-label {
        top: 8px;
        right: 8px;
        padding: 3px 6px;
        font-size: 0.5rem;
        letter-spacing: 1px;
        border-radius: 10px;
        backdrop-filter: blur(2px);
    }

    .artistic-label.left {
        left: 8px;
    }
}


.brochure-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brochure-modal.active {
    display: flex;
}

.brochure-modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    max-width: 450px;
    width: 100%;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.brochure-modal .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* --- Premium Footer Section --- */
.footer-premium {
    background-color: #111;
    color: #fff;
    padding: 80px 0 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-rera-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    /* Extra space for Delphine */
    gap: 40px;
    margin-bottom: 50px;
}

.rera-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.rera-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 700;
}

.rera-no {
    display: block;
    font-size: 0.82rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-extra-links {
    margin: 20px 0 45px;
    display: flex;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4a8c5f;
    color: #fff;
    transform: translateY(-3px);
}

.rera-link {
    color: #4a8c5f;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.rera-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .footer-rera-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rera-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 0;
        padding-bottom: 20px;
        text-align: center;
        /* Center-align RERA on mobile */
    }

    .rera-item:last-child {
        border-bottom: none;
    }
}