/* 
  SPV Empire - Main Stylesheet 
  Designed for PHP Landing Page 
*/

:root {
    --primary: hsl(152, 44%, 16%);
    --primary-foreground: hsl(40, 33%, 98%);
    --background: hsl(40, 33%, 98%);
    --foreground: hsl(0, 0%, 10%);
    --card: hsl(40, 33%, 98%);
    --card-foreground: hsl(0, 0%, 10%);
    --accent: hsl(43, 62%, 50%);
    --accent-foreground: hsl(152, 44%, 16%);
    --festive: hsl(24, 95%, 53%);
    --festive-foreground: hsl(0, 0%, 100%);
    --gold-start: hsl(43, 72%, 58%);
    --gold-end: hsl(36, 60%, 42%);
    --border: hsl(40, 20%, 88%);
    --input: hsl(40, 20%, 88%);
    --ring: hsl(43, 52%, 54%);
    --radius: 0.625rem;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

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

.offer-visual img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout & Spacing */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.section-padding {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}

.section-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--primary-foreground);
}

.section-with-bg .bg-overlay {
    position: absolute;
    inset: 0;
    background-color: hsla(152, 44%, 16%, 0.92);
    z-index: 1;
}

.section-with-bg .container {
    position: relative;
    z-index: 10;
}

.section-with-bg .section-title {
    color: var(--primary-foreground);
}

.section-with-bg .about-text {
    color: hsla(40, 33%, 98%, 0.85);
}

/* Utility Classes */
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end)) !important;
}

.gold-text {
    background: linear-gradient(135deg, hsl(43, 72%, 58%), hsl(36, 60%, 48%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-dark {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.section-dark .section-title {
    color: var(--primary-foreground);
}

.section-cream {
    background-color: var(--background);
}

.section-cream .section-title {
    color: var(--foreground);
}

.glow-gold {
    box-shadow: 0 0 40px hsla(43, 52%, 54%, 0.25), 0 0 80px hsla(43, 52%, 54%, 0.1);
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(20px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid hsla(43, 62%, 50%, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-main {
    height: 50px;
    width: auto;
}

.logo-builder {
    height: 40px;
    width: auto;
    opacity: 1;
}

.logo-divider {
    width: 1.5px;
    height: 35px;
    background-color: hsla(152, 44%, 16%, 0.3);
}

@media (max-width: 640px) {
    .logo-main {
        height: 36px;
    }

    .logo-builder {
        height: 28px;
    }

    .logo-divider {
        height: 24px;
    }
}

/* Specific fix for iPhone SE and very small screens */
@media (max-width: 360px) {
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .logo-group {
        gap: 0.5rem;
    }

    .logo-main {
        height: 32px;
    }

    .logo-builder {
        height: 24px;
    }

    .navbar-actions {
        gap: 0.5rem;
    }

    .lang-switcher {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        gap: 0.25rem;
    }
}

/* Language Switcher (Unified Style) */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    background-color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid hsla(40, 33%, 98%, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.lang-switcher a {
    color: white !important;
    transition: var(--transition);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 4px;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    opacity: 1;
    color: var(--accent) !important;
}

.lang-switcher .divider {
    color: hsla(40, 33%, 98%, 0.2);
    font-weight: 300;
}

/* Position adjustment for footer language switcher */
.footer-lang.lang-switcher {
    margin-top: 1.25rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .navbar-actions {
        gap: 1.25rem;
    }

    .lang-select {
        font-size: 0.8125rem;
    }
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--primary);
    color: white !important;
    /* Ensure visibility */
    text-transform: uppercase;
    box-shadow: 0 4px 12px hsla(152, 44%, 16%, 0.3);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav i {
    width: 14px;
    height: 14px;
}

@media (max-width: 480px) {

    /* Hide call text on very small screens, keep only icon */
    .btn-nav .btn-text {
        display: none;
    }

    .btn-nav {
        padding: 0.5rem;
        aspect-ratio: 1;
        justify-content: center;
    }

    .btn-nav i {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 640px) {
    .btn-nav {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

.btn-nav.green-gradient {
    /* Ensuring this gradient works in nav */
    background: linear-gradient(135deg, var(--primary), #0a2e1f) !important;
}

.btn-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px hsla(152, 44%, 16%, 0.4);
    filter: brightness(1.1);
}

.btn-nav:active {
    transform: translateY(0) scale(0.98);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(152, 44%, 16%, 0.9), hsla(152, 44%, 16%, 0.7), hsla(152, 44%, 16%, 0.4));
}

.hero .container {
    position: relative;
    z-index: 10;
    padding-top: 100px !important;
    /* Extra 50px to offset fixed navbar */
    padding-bottom: 50px !important;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 4rem;
    }

    .hero-content {
        grid-column: span 3;
    }

    .hero-form-wrapper {
        grid-column: span 2;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid hsla(43, 62%, 50%, 0.4);
    background-color: hsla(43, 62%, 50%, 0.1);
    padding: 0.375rem 1rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.08;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-desc {
    font-size: 1.125rem;
    color: hsla(40, 33%, 98%, 0.8);
    max-width: 32rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.hero-offer-box {
    border-radius: 0.5rem;
    border: 1px solid hsla(43, 62%, 50%, 0.5);
    background-color: hsla(43, 62%, 50%, 0.1);
    padding: 1rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

.hero-offer-box .offer-title {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.125rem;
}

.hero-offer-box .offer-sub {
    color: hsla(40, 33%, 98%, 0.7);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.btn-primary {
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid hsla(40, 33%, 98%, 0.3);
    background-color: hsla(40, 33%, 98%, 0.1);
    color: var(--primary-foreground);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    font-weight: 500;
    transition: var(--transition);
}

.btn-secondary:hover {
    transform: translateY(-2px) scale(1.02);
    background-color: hsla(40, 33%, 98%, 0.15);
    border-color: hsla(40, 33%, 98%, 0.5);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-whatsapp {
    background-color: hsl(142, 70%, 35%);
    color: white;
}

/* Forms */
.lead-form-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    background-color: hsla(40, 33%, 98%, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid hsla(43, 62%, 50%, 0.2);
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--foreground);
}

.lead-form-card.variant-section {
    background-color: white;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.form-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.form-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    box-shadow: 0 0 0 2px hsla(43, 62%, 50%, 0.5);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.btn-submit:active {
    transform: translateY(0) scale(0.98);
}

.form-secure {
    font-size: 0.75rem;
    text-align: center;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

/* Grids & Cards */
.grid-2 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-stretch {
    align-items: stretch;
}

.highlights-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.highlight-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.highlight-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* About & Developer Section */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-img img {
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 20px;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    padding-top: 0.5rem;
}

.stat-item h4 {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.875rem;
    color: hsla(40, 33%, 98%, 0.6);
}

/* Offer Section */
.offer-card {
    position: relative;
    border-radius: 1.5rem;
    border: 1.5px solid hsla(43, 62%, 50%, 0.4);
    background-color: var(--primary);
    background-image:
        linear-gradient(135deg, hsla(152, 44%, 16%, 0.96), hsla(152, 44%, 18%, 0.88)),
        url('../images/festive-pattern.png');
    background-size: cover, 400px;
    background-repeat: no-repeat, repeat;
    background-position: center;
    padding: 50px !important;
    overflow: hidden;
    color: white;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.5),
        0 0 100px hsla(43, 62%, 50%, 0.15);
}

.offer-card::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, hsla(43, 62%, 50%, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.offer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIHZpZXdCb3g9IjAgMCA0IDQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjA1Ij48Y2lyY2xlIGN4PSIyIiBjeT0iMiIgcj0iLjUiLz48L2c+PC9zdmc+');
    opacity: 0.5;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .offer-card {
        padding: 4rem !important;
    }
}

.offer-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.offer-visual {
    position: relative;
}

.offer-visual::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, hsla(43, 62%, 50%, 0.25) 0%, transparent 75%);
    filter: blur(20px);
    z-index: -1;
    border-radius: 50%;
}

@media (min-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.festive-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: hsla(24, 95%, 53%, 0.2);
    padding: 0.375rem 1rem;
    margin-bottom: 1.25rem;
}

.festive-tag span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--festive);
}

.timer-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--festive);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.25rem;
}

.offer-card {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: 1.5rem;
    background-color: var(--primary);
    color: white;
}

/* Decorative Elements Styles */
.decorative-element {
    position: absolute;
    color: var(--accent);
    opacity: 0.15;
    z-index: 5;
    pointer-events: none;
    animation: float-leaf 4s ease-in-out infinite;
}

.leaf-1 {
    top: 5%;
    left: 5%;
    --rot: -15deg;
    transform: rotate(var(--rot));
}

.leaf-2 {
    bottom: 5%;
    right: 15%;
    --rot: 45deg;
    transform: rotate(var(--rot));
    animation-delay: 1s;
}

.leaf-3 {
    top: 40%;
    right: 5%;
    --rot: 120deg;
    transform: rotate(var(--rot));
    animation-delay: 2s;
}

@keyframes float-leaf {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 10deg));
    }
}

/* Specific Car Animation */
.animate-float {
    animation: float-car 4s ease-in-out infinite;
}

@keyframes float-car {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

.cta-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1023px) {
    .lead-form-card {
        margin-top: 2rem;
    }

    #lead-form .section-title {
        text-align: center !important;
    }

    #lead-form .section-label {
        display: block;
        text-align: center;
    }

    #lead-form p {
        text-align: center;
    }

    .cta-features-grid {
        align-items: center;
    }
}

/* Amenities Panel */
.amenities-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.amenity-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    padding: 1.25rem;
    transition: var(--transition);
}

.amenity-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.icon-small {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

/* Location and Plots */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid hsla(43, 62%, 50%, 0.2);
    background-color: hsla(40, 33%, 98%, 0.05);
    padding: 1rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.advantage-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.map-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    aspect-ratio: 4/3;
}

@media (min-width: 1024px) {
    .map-wrapper {
        aspect-ratio: auto;
    }
}

.plot-info-grid {
    display: grid;
    gap: 1.25rem;
}

.plot-info-item {
    display: flex;
    gap: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid hsla(43, 52%, 54%, 0.2);
    background-color: hsla(40, 33%, 98%, 0.05);
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.info-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--accent);
    font-weight: 600;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.25rem;
    color: white;
}

.info-sub {
    font-size: 0.875rem;
    color: hsla(40, 33%, 98%, 0.6);
    margin-top: 0.25rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(152, 44%, 16%, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

.gallery-label span {
    font-weight: 600;
    color: white;
}

/* Footer Section */
.footer {
    position: relative;
    border-top: 1px solid hsla(43, 62%, 50%, 0.1);
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

@media (min-width: 1024px) {
    .footer {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 0.75rem;
}

.footer-column p,
.footer-column a {
    color: hsla(40, 33%, 98%, 0.7);
    font-size: 0.875rem;
    line-height: 1.625;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid hsla(43, 62%, 50%, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: hsla(40, 33%, 98%, 0.4);
}

/* Floating Actions */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsla(152, 44%, 16%, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid hsla(43, 62%, 50%, 0.1);
    padding: 1rem;
}

@media (min-width: 640px) {
    .sticky-bar {
        display: none;
    }
}

.sticky-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-floating {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    z-index: 100;
    width: auto;
    height: 3.5rem;
    padding: 0 1.25rem;
    border-radius: 9999px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

@media (min-width: 640px) {
    .btn-floating {
        bottom: 1.5rem;
    }
}

.btn-floating:hover {
    transform: scale(1.1);
}

.btn-floating svg {
    color: white;
}

/* Side Floating Actions */
.side-actions {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: white;
    transition: all 0.3s ease;
    border-radius: 0 6px 6px 0;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
}

.side-action-btn:hover {
    width: 60px;
    padding-left: 12px;
}

.side-call.gold-gradient {
    background: linear-gradient(135deg, var(--accent), #fef08a) !important;
}

.side-call.gold-gradient i {
    color: var(--primary) !important;
}

.side-whatsapp {
    background-color: #25d366 !important;
}

@media (max-width: 1023px) {
    .side-actions {
        display: none;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: hsla(152, 44%, 16%, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    padding: 1.25rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 1.25rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 100px -20px hsla(43, 62%, 50%, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
    overflow: hidden;
    opacity: 0;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsla(0, 0%, 0%, 0.05);
    color: var(--primary);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    padding: 2.5rem 2rem 1.75rem;
    text-align: center;
    color: var(--primary);
    position: relative;
    border-bottom: 2px solid hsla(43, 62%, 50%, 0.2);
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.modal-header p {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.8;
}

.modal-body {
    padding: 2rem;
}

.modal-body .lead-form-card {
    padding: 0;
    box-shadow: none;
    border: none;
    background: transparent;
}

.modal-body .form-header {
    display: none;
}

.modal-body .form-input {
    background-color: hsla(40, 20%, 88%, 0.1);
}