.elementor-24 .elementor-element.elementor-element-8c2795e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}@media(min-width:768px){.elementor-24 .elementor-element.elementor-element-8c2795e{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-8dbb3a4 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1a1a1a;
    --gold: #d1b894;
    --gold-light: #ad9c85;
    --text-light: #f1ece4;
    --text-muted: #ad9c85;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-light);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%;
    background: var(--dark-bg);
}




/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite;
}

@keyframes zoomIn {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    color: #fff;
    height: 100%;
    padding: 0 60px;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.2s both;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-down svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Location Section */
.location-section {
    max-width: 1440px;
    margin: 0 0px;
    padding-bottom: 80px;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 654px;
    gap: 0;
}

.grid-large {
    position: relative;
    height: 988px;
    overflow: hidden;
}

.grid-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-large:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.85) 0%, transparent 50%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 50px;
    z-index: 2;
}

.card-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    width: 100%;
}

.card-title {
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
}

.card-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.card-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
}

.grid-small-container {
    display: flex;
    flex-direction: column;
}

.grid-small {
    position: relative;
    height: 494px;
    overflow: hidden;
}

.grid-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-small:hover img {
    transform: scale(1.05);
}

.card-content-small {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.card-content-small h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-content-small p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Uniqueness Section */
.uniqueness-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.unique-grid {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 30px;
}

.unique-image {
    position: relative;
    height: 525px;
    overflow: hidden;
    border-radius: 16px;
}

.unique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unique-image:hover img {
    transform: scale(1.05);
}

.card-content-bottom {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.card-content-bottom h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-content-bottom p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
}

.unique-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.unique-title {
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.2;
}

.unique-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.unique-text>p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.5;
    transition: transform 0.3s ease;
}

.bullet-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.bullet-list li:hover {
    transform: translateX(8px);
}

/* Citizenship Section */
.citizenship-section {
    max-width: 1440px;
    margin: 80px auto;
    padding: 0 20px;
}

.citizenship-grid {
    display: grid;
    grid-template-columns: 734px 1fr;
    gap: 5px;
}

.citizenship-image {
    border-radius: 16px;
    overflow: hidden;
}

.citizenship-image img {
    width: 100%;
    height: 675px;
    object-fit: cover;
}

.citizenship-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 0 40px;
}

.section-badge {
    display: inline-block;
    align-self: flex-start;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.citizenship-title {
    font-size: clamp(32px, 3.5vw, 43px);
    font-weight: 400;
    line-height: 1.4;
}

.citizenship-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
}

.citizenship-text>p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 16px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Villa Section */
.villa-section {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 80px 0;
    overflow: hidden;
}

.villa-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%);
}

.villa-details {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 50px;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.section-badge-white {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.villa-title {
    font-size: clamp(40px, 5vw, 72px);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 16px;
}

.villa-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    padding-top: 32px;
    border-top: px solid rgba(255, 255, 255, 0.2);
    max-width: 1221px;
}

.spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-val {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
}

.spec-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Video Section */
.video-section {
    max-width: 1216px;
    margin: 120px auto;
    padding: 0 20px;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 60px;
}

.section-header>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    font-size: clamp(36px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.2;
}

.section-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: right;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 395px;
    gap: 40px;
}

.video-main {
    position: relative;
    height: 473px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-main:hover {
    transform: scale(1.02);
}

.video-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.3);
    transition: background 0.3s;
}

.video-main:hover .video-overlay {
    background: rgba(26, 26, 26, 0.5);
}

.play-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 28px;
    z-index: 2;
}

.video-info h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.video-small-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.video-small {
    position: relative;
    height: 222px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-small:hover {
    transform: scale(1.05);
}

.video-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-small:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(26, 26, 26, 0.7);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 2;
}

/* Infrastructure Section */
.infrastructure-section {
    max-width: 1216px;
    margin: 120px auto;
    padding: 0 20px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.infra-card {
    position: relative;
    height: 292px;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-8px);
}

.infra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.infra-card:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    max-width: 1440px;
    margin: 120px auto 0;
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 668px 1fr;

}

.contact-left {
    position: relative;
    height: 835px;
    overflow: hidden;
}

.contact-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
}

.contact-cta {
    position: absolute;
    bottom: 44px;
    left: 49px;
    right: 62px;
    z-index: 2;
}

.contact-cta h2 {
    font-size: clamp(24px, 2.5vw, 31px);
    font-weight: 400;
    line-height: 1;
}

.contact-cta em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.contact-right {
    background: var(--dark-bg);
    padding: 77px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 90px;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.3;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 14px;
    color: var(--text-light);
}

.form-field input,
.form-field textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 12px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
}

.form-field textarea {
    min-height: 65px;
    resize: vertical;
}

.interest-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.interest-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.interest-btn.active,
.interest-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1a1a;
}

.submit-btn {
    background: var(--gold);
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c0a783;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 184, 148, 0.3);
}

.privacy {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1;
}

/* Footer */
.footer {
    max-width: 1341px;
    margin: 0 auto;
    padding: 32px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-content p {
    cursor: pointer;
    transition: color 0.3s;
}

.footer-content p:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1400px) {
    .grid-2col {
        grid-template-columns: 1fr 600px;
    }

    .unique-grid {
        grid-template-columns: 1fr 1fr;
    }

    .citizenship-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1200px) {
    .section-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-desc {
        text-align: left;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-left {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        gap: 24px;
        padding: 20px 30px;
    }

    .grid-2col {
        grid-template-columns: 1fr;
    }

    .grid-large {
        height: 600px;
    }

    .unique-grid {
        grid-template-columns: 1fr;
    }

    .citizenship-grid {
        grid-template-columns: 1fr;
    }

    .citizenship-image img {
        height: 500px;
    }

    .villa-specs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 30px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }

    .card-content {
        padding: 40px 30px;
    }

    .unique-image {
        height: 400px;
    }

    .villa-details {
        padding: 60px 30px;
    }

    .villa-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .infra-grid {
        grid-template-columns: 1fr;
    }

    .contact-right {
        padding: 40px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 20px;
    }

    .card-content {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 32px;
    }

    .card-text {
        font-size: 14px;
    }

    .villa-specs {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-main {
        height: 300px;
    }

    .video-small {
        height: 180px;
    }

    .contact-right {
        padding: 30px 20px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-bar {
    width: 100%;
    background: linear-gradient(180deg, #1c1c1c, #111);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 70px 20px;
    text-align: center;
}

.info-item h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.info-item p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.4;
}

/* Mobile */
@media(max-width:768px) {
    .info-bar {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {



    /* Contact Section - Mobile */
    .contact-section {
        margin: 60px auto 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-left {
        height: 300px;
    }

    .contact-cta {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .contact-cta h2 {
        font-size: 24px;
    }

    .contact-right {
        padding: 30px 20px;
        margin-top: 0;
    }

    .contact-intro {
        font-size: 14px;
    }

    .interest-btns {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .interest-btn {
        white-space: nowrap;
        font-size: 11px;
        padding: 6px 12px;
    }


}

@media (max-width: 576px) {

    /* Extra Small Devices */

}

/* Mobile Menu Fixes */
@media (max-width: 768px) {

    /* Additional mobile optimizations */
    .hero-img {
        animation: none;
        /* Remove zoom animation on mobile for performance */
    }

    /* Improve touch targets */
    .interest-btn,
    .submit-btn,
    .play-large,
    .play-small {
        min-height: 44px;
        /* Apple's recommended minimum touch target */
        min-width: 44px;
    }

    /* Prevent text overflow */
    .card-content-bottom h3,
    .video-info h3,
    .infra-card h3 {
        font-size: 18px;
    }

    /* Adjust bullet list for mobile */
    .bullet-list li {
        font-size: 14px;
        padding-left: 15px;
    }

    /* Form adjustments */
    .form-field input,
    .form-field textarea {
        font-size: 16px;
        /* Prevent iOS zoom on focus */
    }

    /* Smooth scrolling fix */
    html {
        scroll-behavior: smooth;
    }

    .citizenship-text {
        padding: 0px !important;
    }

    .villa-section {
        height: auto;
    }

    @media (max-width: 767px) {
        .villa-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .spec {
            display: flex;
            align-items: center;
            gap: 6px;
            width: 22%;
            /* 2 items per row */
            box-sizing: border-box;
        }

        .villa-title {
            font-size: 30px;
        }

        .spec-val {
            font-size: 16px;
            font-weight: 600;
            min-width: 38px;
        }

        .spec-label {
            font-size: 13px;
            line-height: 1.2;
        }
    }

}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {}

/* Tablet specific adjustments */
@media (min-width: 577px) and (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }

    .grid-large {
        height: 450px;
    }

    .grid-small-container {
        flex-direction: row;
    }

    .grid-small {
        flex: 1;
    }

    .villa-specs {
        grid-template-columns: repeat(3, 1fr);
    }

    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Performance optimizations for mobile *//* End custom CSS */