/* ===== CSS VARIABLES ===== */
:root {
    --primary-gold: #C4975F;
    --gold-light: #D4A76A;
    --gold-dark: #A67C4E;
    --gold-gradient: linear-gradient(135deg, #D4A76A 0%, #C4975F 50%, #A67C4E 100%);
    --primary-dark: #0D0D0D;
    --secondary-dark: #1A1A1A;
    --tertiary-dark: #2A2A2A;
    --primary-white: #FFFFFF;
    --off-white: #FEFDFB;
    --cream: #F5F3EF;
    --cream-dark: #EBE8E2;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #F8F7F5;
    --bg-lighter: #FAFAF8;
    --border-light: #E8E6E1;
    --border-gold: rgba(196, 151, 95, 0.3);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 20px 50px rgba(196, 151, 95, 0.25);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--primary-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary-gold);
    color: var(--primary-white);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 1s var(--transition-elegant), visibility 1s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--primary-gold);
    letter-spacing: 0.4em;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.preloader-line {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary-gold);
    animation: loadingLine 2.5s ease forwards;
}

@keyframes loadingLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(196, 151, 95, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease-out, opacity 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-inner {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.08s ease-out, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-outer.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-gold);
    background: rgba(196, 151, 95, 0.1);
}

.cursor-inner.hover {
    width: 4px;
    height: 4px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-smooth);
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    opacity: 1;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.nav.scrolled {
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.nav.scrolled::before {
    opacity: 0;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-white);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav.scrolled .nav-logo {
    color: var(--primary-dark);
}

.nav-logo span {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-white);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width var(--transition-smooth);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-cta {
    padding: 14px 35px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    color: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-white);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--primary-dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: right var(--transition-elegant);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-smooth), color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--primary-gold);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.35s;
}

/* hero css start */
/* ===== HERO SECTION ===== */

.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
    padding-top: 80px;
    /* Space for fixed nav */
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
    /* Darkens image */
    animation: zoomEffect 30s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    /* Split Layout */
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE - TEXT */
.hero-text-side {
    color: white;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-badge {
    background: white;
    color: var(--text-dark);
    padding: 12px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    color: var(--text-light);
    font-size: 0.85rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 650px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary-gold);
    /* User's theme gold */
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Shimmer Effect */
.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
	display:none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-hero-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.btn-hero-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--text-dark);
}

/* RIGHT SIDE - FORM */
.hero-form-side {
    display: flex;
    justify-content: flex-end;
}

.hero-form-card {
    background: #f5f3ef;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-gold);
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #121212;
    /* Subtle dark for white BG */
    margin-bottom: 8px;
}

.form-label span {
    color: #121212;
    /* Matches label, overrides any white */
}


.form-group1 {
    margin-bottom: 20px;
}

.form-label1 {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #121212;
    /* Subtle dark for white BG */
    margin-bottom: 8px;
}

.form-label1 span {
    color: #121212;
    /* Matches label, overrides any white */
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Phone Input Styling */
.phone-input-wrapper {
    display: flex;
}

.flag-select {
    padding: 10px 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
}

.phone-input-wrapper input {
    border-radius: 0 4px 4px 0;
}

.btn-form-submit {
    width: 100%;
    background: #A6192E;
    /* Reddish tone from screenshot */
    background: var(--primary-gold);
    /* Keeping Gold to match your site theme */
    color: white;
    border: none;
    padding: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-form-submit:hover {
    background: var(--gold-dark);
}

/* Responsive */
@media screen and (max-width: 992px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 60px;
        gap: 40px;
    }

    .hero-text-side {
        text-align: center;
    }

    .hero-badges-row {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form-side {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-badges-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
}

/* hero end css chatgpt end */
/* Floating decorative elements */
.hero-decor {
    position: absolute;
    pointer-events: none;
}

.hero-decor-circle {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(196, 151, 95, 0.1);
    border-radius: 50%;
    animation: rotateCircle 40s linear infinite;
}

.hero-decor-circle.one {
    top: 10%;
    right: -200px;
}

.hero-decor-circle.two {
    bottom: 10%;
    left: -200px;
    animation-direction: reverse;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== SECTION BASE STYLES ===== */
.section {
    padding: 150px 5%;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background: var(--cream);
}

.section-dark {
    background: var(--primary-dark);
    color: var(--primary-white);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all var(--transition-slow);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all var(--transition-slow);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--transition-slow);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
[data-delay="1"] {
    transition-delay: 0.1s;
}

[data-delay="2"] {
    transition-delay: 0.2s;
}

[data-delay="3"] {
    transition-delay: 0.3s;
}

[data-delay="4"] {
    transition-delay: 0.4s;
}

[data-delay="5"] {
    transition-delay: 0.5s;
}

[data-delay="6"] {
    transition-delay: 0.6s;
}

/* ===== TYPOGRAPHY ===== */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--primary-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.section-title span {
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--primary-gold);

}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== INTRO / ABOUT SECTION ===== */
.intro-section {
    position: relative;
}

.intro-section::before {
    content: 'MARÈVA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 15vw;
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-content {
    padding-right: 40px;
}

.intro-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.intro-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--primary-gold);
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.intro-title span {
    display: block;
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--primary-gold);
}

.intro-text {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 40px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--cream);
    transition: all var(--transition-fast);
    cursor: default;
}

.intro-feature:hover {
    background: var(--cream-dark);
    transform: translateX(10px);
}

.intro-feature i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.intro-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.intro-images {
    position: relative;
    height: 700px;
}

.intro-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 500px;
    overflow: hidden;
}

.intro-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.intro-image-main:hover img {
    transform: scale(1.05);
}

.intro-image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 320px;
    overflow: hidden;
    border: 8px solid var(--primary-white);
    box-shadow: var(--shadow-medium);
}

.intro-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.intro-image-secondary:hover img {
    transform: scale(1.05);
}

.intro-badge {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 35px 40px;
    text-align: center;
    z-index: 10;
    box-shadow: var(--shadow-gold);
}

.intro-badge h3 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
}

.intro-badge p {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== LOCATION MAP SECTION ===== */
.map-section {
    background: var(--cream);
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 10;
}

.map-image {
    width: 100%;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.map-wrapper:hover .map-image img {
    transform: scale(1.02);
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
    background: var(--primary-white);
    box-shadow: var(--shadow-soft);
}

.connect-item {
    text-align: center;
    padding: 50px 30px;
    position: relative;
    border-right: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.connect-item:last-child {
    border-right: none;
}

.connect-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.connect-item:hover::before {
    transform: scaleX(1);
}

.connect-item:hover {
    background: var(--bg-lighter);
}

.connect-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.connect-icon i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: color var(--transition-fast);
}

.connect-item:hover .connect-icon {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.connect-item:hover .connect-icon i {
    color: var(--primary-dark);
}

.connect-time {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.connect-time span {
    font-size: 1rem;
    color: var(--primary-gold);
    margin-left: 5px;
}

.connect-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== LIFESTYLE SECTIONS ===== */
.lifestyle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.lifestyle-image {
    position: relative;
    overflow: hidden;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--transition-elegant);
}

.lifestyle-image:hover img {
    transform: scale(1.08);
}

.lifestyle-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.lifestyle-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    background: var(--primary-white);
    position: relative;
}

.lifestyle-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 120px;
    background: var(--primary-gold);
}

.lifestyle-number {
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(196, 151, 95, 0.08);
    position: absolute;
    top: 30px;
    right: 30px;
    line-height: 1;
}

.lifestyle-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.lifestyle-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--primary-gold);
}

.lifestyle-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.lifestyle-title span {
    display: block;
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--primary-gold);
}

.lifestyle-text {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 40px;
}

.lifestyle-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.lifestyle-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 12px 20px;
    background: var(--cream);
    transition: all var(--transition-fast);
}

.lifestyle-feature:hover {
    background: var(--cream-dark);
    transform: translateX(5px);
}

.lifestyle-feature i {
    color: var(--primary-gold);
    font-size: 0.7rem;
}

/* Reverse layout */
.lifestyle-section.reverse .lifestyle-image {
    order: 2;
}

.lifestyle-section.reverse .lifestyle-content {
    order: 1;
}

.lifestyle-section.reverse .lifestyle-content::before {
    left: auto;
    right: 0;
}

/* Alt background */
.lifestyle-section.alt .lifestyle-content {
    background: var(--cream);
}

/* ===== FEATURE IMAGE SECTION ===== */
.feature-section {
    padding: 150px 5%;
}

.feature-container {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    cursor: pointer;
}

.feature-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-image-wrapper:hover .feature-image img {
    transform: scale(1.03);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(30px);
    opacity: 0;
    transition: all var(--transition-smooth);
}

.feature-image-wrapper:hover .feature-overlay {
    transform: translateY(0);
    opacity: 1;
}

.feature-overlay h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.feature-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: 'AMENITIES';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 15vw;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
}

.amenities-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        linear-gradient(var(--primary-gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.amenity-card {
    padding: 50px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 151, 95, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.amenity-card:hover::after {
    transform: scaleX(1);
}

.amenity-card:hover {
    transform: translateY(-15px);
    border-color: rgba(196, 151, 95, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.amenity-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(196, 151, 95, 0.3);
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.amenity-card:hover .amenity-icon::before {
    transform: scale(1.3);
    opacity: 0;
}

.amenity-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-gold);
    stroke-width: 1.5;
    transition: transform var(--transition-fast);
}

.amenity-card:hover .amenity-icon svg {
    transform: scale(1.1);
}

.amenity-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-white);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* ===== UNIT TYPES SECTION ===== */
.units-section {
    background: var(--cream);
    position: relative;
}

.units-section::before {
    content: 'RESIDENCES';
    position: absolute;
    bottom: 100px;
    right: 5%;
    font-family: var(--font-display);
    font-size: 10vw;
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    pointer-events: none;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.unit-card {
    background: var(--primary-white);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.unit-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-strong);
}

.unit-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.unit-card:hover .unit-image img {
    transform: scale(1.1);
}

.unit-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.unit-card:hover .unit-image-overlay {
    opacity: 1;
}

.unit-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.unit-quick-view {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary-white);
    color: var(--primary-dark);
    padding: 12px 25px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transition: all var(--transition-fast);
}

.unit-card:hover .unit-quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.unit-quick-view:hover {
    background: var(--primary-gold);
}

.unit-info {
    padding: 40px;
}

.unit-type {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 25px;
}

.unit-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 25px;
}

.spec-item {
    text-align: center;
    padding: 15px 10px;
    background: var(--bg-light);
    transition: background var(--transition-fast);
}

.spec-item:hover {
    background: var(--cream);
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.unit-price {
    text-align: center;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.units-total {
    text-align: center;
    margin-top: 60px;
    font-size: 1rem;
    color: var(--text-light);
}

.units-total strong {
    color: var(--primary-dark);
}

/* ===== PAYMENT PLAN SECTION ===== */
.payment-section {
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--cream);
    z-index: 0;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.payment-info {
    padding-right: 40px;
}

.payment-info .section-label {
    justify-content: flex-start;
}

.payment-info .section-label::after {
    display: none;
}

.payment-info .section-title {
    text-align: left;
    font-size: 3rem;
}

.payment-info .section-subtitle {
    text-align: left;
    margin: 0 0 40px 0;
}

.payment-highlight {
    padding: 40px;
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.payment-highlight h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.payment-highlight p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.payment-timeline {
    background: var(--primary-white);
    padding: 50px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.payment-timeline::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 25px;
    width: 2px;
    height: calc(100% - 140px);
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--cream) 100%);
}

.payment-item {
    position: relative;
    padding: 20px 0 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.payment-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-white);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    transition: all var(--transition-fast);
    z-index: 1;
}

.payment-item:hover::before {
    background: var(--primary-gold);
    transform: translateY(-50%) scale(1.3);
}

.payment-item:hover {
    background: var(--bg-lighter);
    padding-left: 60px;
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 10px;
}

.payment-item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.payment-item-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.payment-item-details {
    display: flex;
    gap: 30px;
    align-items: center;
}

.payment-percentage {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-gold);
    min-width: 70px;
    text-align: right;
}

.payment-date {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 8px 18px;
    background: var(--cream);
    border-radius: 20px;
    min-width: 90px;
    text-align: center;
}

/* ===== DEVELOPER SECTION ===== */
.developer-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.developer-section::before {
    content: 'EMAAR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 20vw;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
}

.developer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: radial-gradient(var(--primary-gold) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.developer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.developer-logo {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--primary-gold);
    letter-spacing: 0.4em;
    margin-bottom: 15px;
}

.developer-tagline {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.developer-text {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
}

.stat-card {
    padding: 45px 35px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.01);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(196, 151, 95, 0.3);
    transform: translateY(-10px);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.developer-note {
    margin-top: 60px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 150px 0;
    background: var(--cream);
    overflow: hidden;
}

.gallery-header {
    padding: 0 5%;
    margin-bottom: 80px;
}

.gallery-track {
    display: flex;
    gap: 30px;
    animation: slideGallery 50s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes slideGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex-shrink: 0;
    width: 500px;
    height: 350px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-white);
    margin-bottom: 5px;
}

.gallery-item-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--primary-dark) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 151, 95, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-info h2 span {
    color: var(--primary-gold);
    font-family: var(--font-elegant);
    font-style: italic;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(196, 151, 95, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.contact-icon i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.contact-item:hover .contact-icon {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.contact-item:hover .contact-icon i {
    color: var(--primary-dark);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.contact-social a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    padding: 55px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-white);
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 50%);
    border-color: var(--primary-gold);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666a3;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(196, 151, 95, 0.05);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C4975F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}



.form-group select option {
    background: var(--primary-dark);
    color: var(--primary-white);
}

.form-submit {
    margin-top: 15px;
}

.form-submit .btn {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    padding: 100px 5% 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-brand .footer-logo span {
    color: var(--primary-gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-newsletter-form input {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.footer-newsletter-form button {
    padding: 16px 25px;
    background: var(--primary-gold);
    border: none;
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.footer-newsletter-form button:hover {
    background: var(--gold-dark);
    color: var(--primary-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 50px auto 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 998;
    font-size: 1.1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    color: var(--primary-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1200px) {
    .intro-grid {
        gap: 60px;
    }

    .intro-content {
        padding-right: 20px;
    }

    .lifestyle-content {
        padding: 70px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media screen and (max-width: 992px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-side-text {
        display: none;
    }

    .section {
        padding: 100px 5%;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .intro-images {
        height: 550px;
        order: -1;
    }

    .intro-content {
        padding-right: 0;
        text-align: center;
    }

    .intro-label {
        justify-content: center;
    }

    .intro-features {
        justify-content: center;
    }

    .connectivity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .connect-item:nth-child(2n) {
        border-left: 1px solid var(--border-light);
    }

    .connect-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .lifestyle-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lifestyle-image {
        height: 500px;
    }

    .lifestyle-section.reverse .lifestyle-image {
        order: 1;
    }

    .lifestyle-section.reverse .lifestyle-content {
        order: 2;
    }

    .lifestyle-content::before {
        display: none;
    }

    .lifestyle-number {
        font-size: 5rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-section::before {
        display: none;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .payment-info {
        padding-right: 0;
        text-align: center;
    }

    .payment-info .section-label {
        justify-content: center;
    }

    .payment-info .section-title {
        text-align: center;
    }

    .payment-info .section-subtitle {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-social {
        justify-content: center;
    }

    .cursor-outer,
    .cursor-inner {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 80px 5%;
    }

    .hero {
        min-height: 700px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-label::before,
    .section-label::after {
        width: 30px;
    }

    .intro-images {
        height: 450px;
    }

    .intro-image-main {
        width: 100%;
        height: 300px;
    }

    .intro-image-secondary {
        width: 70%;
        height: 250px;
    }

    .intro-badge {
        padding: 25px 30px;
    }

    .intro-badge h3 {
        font-size: 2.8rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .connectivity-grid {
        grid-template-columns: 1fr;
    }

    .connect-item {
        border-left: none !important;
        border-bottom: 1px solid var(--border-light);
    }

    .connect-item:last-child {
        border-bottom: none;
    }

    .lifestyle-content {
        padding: 50px 25px;
    }

    .lifestyle-number {
        font-size: 4rem;
        top: 15px;
        right: 15px;
    }

    .lifestyle-image {
        height: 350px;
    }

    .lifestyle-features {
        gap: 15px;
    }

    .lifestyle-feature {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .feature-image {
        height: 400px;
    }

    .feature-overlay {
        padding: 40px 30px;
    }

    .feature-overlay h3 {
        font-size: 1.8rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .amenity-card {
        padding: 35px 20px;
    }

    .amenity-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .amenity-icon svg {
        width: 30px;
        height: 30px;
    }

    .amenity-name {
        font-size: 0.85rem;
    }

    .units-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .unit-info {
        padding: 35px;
    }

    .unit-type {
        font-size: 1.8rem;
    }

    .payment-timeline {
        padding: 40px 25px;
    }

    .payment-timeline::before {
        left: 15px;
    }

    .payment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-left: 40px;
    }

    .payment-item::before {
        left: -15px;
    }

    .payment-item-details {
        gap: 15px;
        width: 100%;
        justify-content: space-between;
    }

    .payment-percentage {
        font-size: 1.5rem;
        min-width: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-card {
        padding: 35px 25px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .developer-logo {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }

    .developer-tagline {
        font-size: 1.2rem;
    }

    .gallery-item {
        width: 320px;
        height: 250px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 18px 35px;
    }

    .section-label {
        flex-direction: column;
        gap: 10px;
    }

    .section-label::before,
    .section-label::after {
        display: none;
    }

    .intro-images {
        height: 350px;
    }

    .intro-image-main {
        height: 220px;
    }

    .intro-image-secondary {
        height: 180px;
    }

    .intro-badge {
        padding: 20px;
    }

    .intro-badge h3 {
        font-size: 2.2rem;
    }

    .connect-time {
        font-size: 2.5rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .unit-specs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-image {
        height: 280px;
    }

    .payment-highlight {
        padding: 30px 25px;
    }

    .payment-highlight h4 {
        font-size: 1.4rem;
    }

    .gallery-item {
        width: 280px;
        height: 200px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .mobile-menu a {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-form {
        padding: 30px 20px !important;
    }

    .hero-form>form>div[style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .hero-form .form-group>div[style*="display: flex; gap: 15px"] {
        flex-direction: column !important;
        gap: 15px !important;
    }
}


/* ===== GALLERY SLIDER STYLES (Professional 600px Height) ===== */
.gallery-slider-section {
    padding: 80px 0;
    background: #FAFAF8;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 65%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* Slider Main Window */
.slider-window {
    position: relative;
    width: 100%;
    height: 600px;
    /* Compact professional height */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border: 1px solid rgba(196, 151, 95, 0.2);
    display: flex;
    flex-direction: column;
}

/* The Track */
.slider-track-new {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Slide */
.gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* Image Area (Top 82%) */
.slide-image-wrapper {
    width: 100%;
    height: 82%;
    position: relative;
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Ensures FULL image is visible */
    cursor: zoom-in;
    transition: opacity 0.5s ease;
    opacity: 0.5;
    /* Inactive slides are dimmed */
}

.gallery-slide.active img {
    opacity: 1;
    /* Active slide is bright */
}

/* Text Area (Bottom 18%) */
.slide-caption {
    width: 100%;
    height: 18%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 20px;
    border-top: 3px solid #C4975F;
    position: relative;
    z-index: 25;
}

.slide-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #C4975F;
    margin-bottom: 2px;
}

.slide-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #ccc;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Slider Controls (Arrows) */
.slider-btn {
    position: absolute;
    top: 41%;
    /* Vertically centered relative to image area */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(196, 151, 95, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
    border: none;
}

.slider-btn:hover {
    background: #1a1a1a;
    color: #C4975F;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 40;
}

.progress-fill {
    height: 100%;
    background: #C4975F;
    width: 0;
    transition: width 0.1s linear;
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    /* White bg for better readability */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zoomOpen 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #1a1a1a;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    z-index: 100001;
}

.lightbox-close:hover {
    color: #C4975F;
}

/* Lightbox Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.1);
    color: #1a1a1a;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 100000;
}

.lightbox-nav:hover {
    background: #C4975F;
    color: white;
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

@keyframes zoomOpen {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .slider-window {
        height: 500px;
    }

    .slide-image-wrapper {
        height: 75%;
    }

    .slide-caption {
        height: 25%;
        padding: 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }
}


/* ===== EXTRA STYLES (Extracted from inline) ===== */
.flag-select {
    position: relative;
    cursor: pointer;
}

.country-code-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.flag-caret {
    font-size: 0.7em;
    margin-left: 5px;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

/* Form 2 Styles */
.form-card-white {
    background: #fff;
    padding: 60px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.pdf-snippet-title-main {
    margin-bottom: 10px;
}

.form-subtitle-span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #C4975F;
}

.pdf-snippet-subtitle {
    margin-top: 20px;
    margin-bottom: 0;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.form-label-bold {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.text-danger {
    color: #d9534f;
}

.flex-gap-15 {
    display: flex;
    gap: 15px;
}

.flex-1 {
    flex: 1;
}

.input-styled {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 5px;
    outline: none;
    transition: border 0.3s;
}

.input-hint {
    color: #666;
    font-size: 0.75rem;
}

.phone-input-group {
    display: flex;

    overflow: hidden;
}

.phone-flag-wrapper {
    display: flex;
    align-items: center;

    border-right: 1px solid #ddd;
}

.phone-select {
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    padding: 5px 0;
}

.phone-input-field {
    flex: 1;
    padding: 16px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
}

.select-styled {
    width: 100%;
    padding: 16px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    outline: none;
    cursor: pointer;
}

.btn-submit-gold {
    padding: 18px 80px;
    background: #C4975F;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(196, 151, 95, 0.3);
}

.form-message-box {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
    font-family: 'Montserrat', sans-serif;
}

.contact-direct {
    text-align: center;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
}

.contact-text-hint {
    color: #666;
    font-size: 0.95rem;
}

.contact-phone-link {
    color: #C4975F;
    font-weight: 600;
    text-decoration: none;
}

.zoom-hint {
    color: #C4975F;
    font-size: 0.85rem;
}

/* Media Queries for Form 2 */
@media screen and (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .flex-gap-15 {
        flex-direction: column;
    }
}


.mt-25 {
    margin-top: 25px;
}

.mt-8-block {
    margin-top: 8px;
    display: block;
}

/* Responsive fixes for new classes */
@media screen and (max-width: 768px) {
    .hero-form>form>.form-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .hero-form .form-group>.flex-gap-15 {
        flex-direction: column !important;
        gap: 15px !important;
    }
}

/* =========================================
   FOOTER CONTACT FORM (FORM 3) FIX
   ========================================= */

.contact-form-wrapper form {
    width: 100%;
}

/* Two-column rows */
.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

/* Single column groups */
.contact-form-wrapper .form-group1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Labels */
.contact-form-wrapper .form-group1 label {
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.75);
}

/* Inputs, select, textarea */
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    height: 52px;
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Textarea fix */
.contact-form-wrapper textarea {
    height: auto;
    min-height: 130px;
    resize: vertical;
}

/* Interest + Message spacing */
.contact-form-wrapper .form-group1:not(.form-row *) {
    margin-bottom: 20px;
}

/* Submit button alignment */
.contact-form-wrapper .form-submit {
    margin-top: 30px;
}

.contact-form-wrapper .btn-form-submit {
    width: 100%;
    height: 56px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Success / error message */
.contact-form-wrapper .form-message-box {
    margin-top: 16px;
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile fix */
@media (max-width: 768px) {
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }
}



/* =========================================
   3CX CHAT – LEFT SIDE ALIGNMENT FIX
   ========================================= */

/* Fix internal header controls */
call-us::part(header) {
    display: flex !important;
    justify-content: space-between !important;
}

/* Fix close / collapse arrow */
call-us::part(close),
call-us::part(minimize) {
    right: auto !important;
    left: 12px !important;
}

/* Fix footer button alignment */
call-us::part(footer) {
    text-align: center !important;
}

/* Prevent visual overflow */
call-us {
    overflow: hidden !important;
}

/* =========================================
   FEATURED PROJECTS SECTION
   ========================================= */

.featured-projects-section {
    background: var(--cream);
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-project-card {
    display: block;
    text-decoration: none;
    background: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
}

.featured-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.featured-project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.featured-project-card:hover .featured-project-image img {
    transform: scale(1.1);
}

.featured-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    pointer-events: none;
}

.featured-project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
}

.featured-project-info {
    padding: 25px;
}

.featured-project-developer {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.featured-project-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.featured-project-card:hover .featured-project-info h3 {
    color: var(--primary-gold);
}

.featured-project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured-project-location i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.featured-projects-cta {
    text-align: center;
    margin-top: 60px;
}

.featured-projects-cta .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.featured-projects-cta .btn-hero-primary i {
    transition: transform var(--transition-fast);
}

.featured-projects-cta .btn-hero-primary:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .featured-projects-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

.featured-project-image {
        height: 220px;
    }
}

/* ===== Phase 2 SEO: Explore More + Language Switch ===== */
.language-switch a, a.language-switch {
    border: 1px solid rgba(196, 151, 95, 0.4);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.explore-more-section {
    background: var(--bg-light);
}

.explore-more-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.explore-more-link {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--primary-white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-gold);
    padding: 16px 18px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.explore-more-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    color: var(--gold-dark);
}