:root {
    --bg: #faf8f4;
    --white: #ffffff;
    --black: #1a1a1a;
    --text: #333;
    --text-light: #777;
    --text-muted: #aaa;
    --orange: #e67e22;
    --orange-dark: #d35400;
    --orange-light: #fdf0e2;
    --green: #27ae60;
    --green-light: #e8f8ef;
    --blue: #2980b9;
    --border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
}

.nav-brand-text span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--orange), #f39c12);
    color: #fff !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(230, 126, 34, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* HERO SLIDESHOW */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-slides::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.72) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(230, 126, 34, 0.12) 100%);
}

.hero-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

.hero-arrows {
    position: absolute;
    bottom: 100px;
    right: 48px;
    z-index: 5;
    display: flex;
    gap: 6px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #f39c12;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #f39c12);
    color: #fff;
    box-shadow: 0 6px 24px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
}

.hero-stat {
    text-align: center;
    flex: 1;
}

.hero-stat .num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* TRUST BAR */
.trust-bar {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.trust-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.trust-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* SECTIONS */
section {
    padding: 80px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--orange-light);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--orange);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 550px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 48px;
}

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

.section-header.center .section-desc {
    margin: 0 auto;
}

/* REGIONS */
.regions-section {
    background: var(--white);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.region-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.region-card-color {
    height: 5px;
}

.region-card-body {
    padding: 22px 24px;
}

.region-card .type-badge {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.region-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.region-card .desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 14px;
}

.region-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.region-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.region-plots {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    background: var(--green-light);
    padding: 4px 10px;
    border-radius: 16px;
}

.region-card .arrow {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.2s;
}

.region-card:hover .arrow {
    background: var(--orange);
    color: #fff;
}

/* MAP */
.map-section {
    padding: 80px 0;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.map-overlay-cta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
}

.map-overlay-cta .icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), #f39c12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.map-overlay-cta h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
}

.map-overlay-cta p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* WHY */
.why-section {
    background: var(--white);
}

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

.why-card {
    padding: 28px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.about-image-badge .icon {
    font-size: 22px;
}

.about-image-badge .info {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
}

.about-image-badge .sub {
    font-size: 0.68rem;
    color: var(--text-light);
}

.about-features {
    list-style: none;
    margin-top: 24px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.about-features li:last-child {
    border-bottom: none;
}

.about-features .check {
    width: 24px;
    height: 24px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-features strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.about-features span {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.testimonial-stars {
    color: #f39c12;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-light), #e8f8ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--orange);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--black);
}

.testimonial-role {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* CTA FORM */
.form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.form-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 580px;
    box-shadow: var(--shadow-lg);
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.7) 100%);
}

.form-visual-text {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    color: #fff;
}

.form-visual-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.form-visual-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

.form-card .form-sub {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.budget-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.budget-option {
    position: relative;
}

.budget-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.budget-option label {
    display: block;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.budget-option input:checked+label {
    background: var(--orange-light);
    border-color: var(--orange);
    color: var(--orange);
    font-weight: 600;
}

.form-submit {
    width: 100%;
    padding: 15px 28px;
    background: linear-gradient(135deg, var(--orange), #f39c12);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(230, 126, 34, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.35);
}

.form-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* FOOTER */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand h3 span {
    color: var(--orange);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--orange);
    color: #fff;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ========================================== */
/* RESPONSIVE — TABLET                        */
/* ========================================== */
@media (max-width: 960px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-visual {
        height: 300px;
    }

    .hero-content {
        padding: 100px 24px 80px;
    }
}

/* ========================================== */
/* RESPONSIVE — MOBILE                        */
/* ========================================== */
@media (max-width: 640px) {

    /* --- Global Spacing & Typography --- */
    .container {
        padding: 0 16px;
    }

    section {
        padding: 48px 0;
    }

    .section-label {
        font-size: 0.65rem;
        padding: 5px 12px;
        letter-spacing: 1.2px;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .section-header {
        margin-bottom: 28px;
    }

    /* --- Navigation --- */
    .nav-inner {
        height: 56px;
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 32px;
    }

    /* --- Hero --- */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 90px 16px 70px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .hero-sub {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .hero-indicators {
        bottom: 88px;
    }

    .hero-arrows {
        display: none;
    }

    /* Hero Stats */
    .hero-stats-inner {
        flex-wrap: wrap;
        gap: 0;
        padding: 16px;
    }

    .hero-stat {
        flex: 0 0 50%;
        padding: 10px 0;
    }

    .hero-stat .num {
        font-size: 1.3rem;
    }

    .hero-stat .label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    /* --- Trust Bar --- */
    .trust-bar {
        padding: 24px 0;
    }

    .trust-inner {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .trust-item {
        width: 100%;
        padding: 12px 16px;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 12px;
        gap: 10px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 16px;
    }

    .trust-text {
        font-size: 0.82rem;
    }

    .trust-sub {
        font-size: 0.68rem;
    }

    /* --- Region Cards --- */
    .regions-grid,
    .why-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        gap: 12px;
    }

    .region-card-body {
        padding: 16px 18px;
    }

    .region-card h3 {
        font-size: 1rem;
    }

    .region-card .desc {
        font-size: 0.78rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .region-card-footer {
        padding-top: 12px;
    }

    .region-price {
        font-size: 0.88rem;
    }

    .region-plots {
        font-size: 0.72rem;
    }

    .region-card .arrow {
        top: 16px;
        right: 14px;
        width: 28px;
        height: 28px;
    }

    .region-card .type-badge {
        font-size: 0.58rem;
    }

    /* --- Map Preview --- */
    .map-wrapper {
        border-radius: 14px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-overlay-cta {
        bottom: 12px;
        left: 12px;
        padding: 12px 16px;
        border-radius: 12px;
        gap: 10px;
    }

    .map-overlay-cta .icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 16px;
    }

    .map-overlay-cta h4 {
        font-size: 0.82rem;
    }

    .map-overlay-cta p {
        font-size: 0.68rem;
    }

    /* --- Why Cards --- */
    .why-grid {
        gap: 12px;
    }

    .why-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .why-card h3 {
        font-size: 0.92rem;
        margin-bottom: 6px;
    }

    .why-card p {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    /* --- About --- */
    .about-image img {
        height: 240px;
        border-radius: 14px;
    }

    .about-image {
        border-radius: 14px;
    }

    .about-image-badge {
        bottom: 10px;
        left: 10px;
        padding: 10px 14px;
        border-radius: 10px;
        gap: 8px;
    }

    .about-image-badge .icon {
        font-size: 18px;
    }

    .about-image-badge .info {
        font-size: 0.78rem;
    }

    .about-image-badge .sub {
        font-size: 0.62rem;
    }

    .about-features li {
        padding: 10px 0;
        gap: 10px;
    }

    .about-features strong {
        font-size: 0.85rem;
    }

    .about-features span {
        font-size: 0.76rem;
    }

    .about-features .check {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        font-size: 11px;
    }

    /* --- Testimonials --- */
    .testimonials-grid {
        gap: 12px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: 14px;
    }

    .testimonial-stars {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .testimonial-name {
        font-size: 0.82rem;
    }

    .testimonial-role {
        font-size: 0.68rem;
    }

    /* --- Form --- */
    .form-section {
        padding: 48px 0;
    }

    .form-visual {
        height: 200px;
        border-radius: 14px;
    }

    .form-visual-text {
        bottom: 16px;
        left: 16px;
    }

    .form-visual-text h3 {
        font-size: 1.1rem;
    }

    .form-visual-text p {
        font-size: 0.78rem;
    }

    .form-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-card h2 {
        font-size: 1.2rem;
    }

    .form-card .form-sub {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .form-group label {
        font-size: 0.68rem;
    }

    .budget-options {
        gap: 6px;
    }

    .budget-option label {
        padding: 8px 14px;
        font-size: 0.72rem;
    }

    .form-submit {
        padding: 14px 20px;
        font-size: 0.92rem;
        border-radius: 12px;
    }

    .form-trust {
        font-size: 0.68rem;
        justify-content: center;
    }

    /* --- Footer --- */
    footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        gap: 28px;
        margin-bottom: 28px;
    }

    .footer-brand-logo {
        height: 32px;
        margin-bottom: 10px;
    }

    .footer-brand h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .footer-brand p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        font-size: 14px;
    }

    .footer-col h4 {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 0.8rem;
    }

    .footer-col li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        font-size: 0.72rem;
        padding-top: 20px;
    }

    /* --- Buttons (global mobile) --- */
    .btn {
        padding: 12px 22px;
        font-size: 0.88rem;
        border-radius: 11px;
    }

    /* --- Page Hero (inner pages) --- */
    .page-hero {
        padding: 90px 0 36px;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .page-hero p {
        font-size: 0.88rem;
    }

    /* --- FAQ --- */
    .faq-categories {
        gap: 6px;
        margin-bottom: 24px;
    }

    .faq-cat-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 18px 16px;
    }

    .faq-answer p {
        font-size: 0.82rem;
    }

    /* --- Contact --- */
    .contact-info-card {
        padding: 16px 18px;
    }

    .contact-info-card .ci-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 18px;
    }

    .contact-info-card .ci-value {
        font-size: 0.88rem;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

/* NAV DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 10px 0;
    min-width: 220px;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem !important;
    color: var(--text) !important;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: var(--orange-light);
    color: var(--orange) !important;
}

/* INNER PAGE HERO */
.page-hero {
    padding: 120px 0 60px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 12px;
}

.page-hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--orange);
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-text-muted {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* TABLE UTILITIES */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    min-width: 600px;
    /* Force scroll on mobile */
    border-collapse: collapse;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--orange);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* BTN SECONDARY */
.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* FAQ ACCORDION */
.faq-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    justify-content: center;
}

.faq-cat-btn {
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg);
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--orange);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-card .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info-card .ci-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-info-card .ci-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}

.contact-info-card .ci-value a {
    color: var(--black);
    text-decoration: none;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* REGION PAGE */
.region-hero {
    padding: 120px 0 48px;
    background: linear-gradient(135deg, var(--black) 0%, #2c1810 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.region-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(230, 126, 34, 0.15) 0%, transparent 60%);
}

.region-hero .container {
    position: relative;
    z-index: 1;
}

.region-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 10px;
}

.region-hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #f39c12;
}

.region-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.7;
}

.region-hero .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 16px;
}

.region-hero .breadcrumb,
.region-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.region-hero .breadcrumb a:hover {
    color: #f39c12;
}

.region-quick-stats {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.region-qs {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 22px;
    backdrop-filter: blur(10px);
}

.region-qs .qs-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.region-qs .qs-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.region-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.region-sidebar {
    position: sticky;
    top: 88px;
}

.region-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

.region-sidebar-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.landmark-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

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

.landmark-item .dist {
    color: var(--orange);
    font-weight: 600;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.price-table th {
    text-align: left;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 2px solid var(--border);
}

.price-table td {
    padding: 10px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
}

.price-table td:last-child {
    font-weight: 600;
    color: var(--orange);
    text-align: right;
}

.price-table th:last-child {
    text-align: right;
}

.related-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.related-region-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text);
}

.related-region-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-region-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--black);
}

.related-region-card .rr-price {
    font-size: 0.78rem;
    color: var(--orange);
    font-weight: 600;
}

/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-light), #e8f8ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.78rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.value-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    position: relative;
    counter-increment: step;
}

.process-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), #f39c12);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    margin: 0 auto 14px;
}

.process-step h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* RESPONSIVE ADD-ONS */
@media(max-width:960px) {

    .contact-grid,
    .region-content {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-regions {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-sidebar {
        position: static;
    }
}

@media(max-width:640px) {

    .team-grid,
    .values-grid,
    .related-regions,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .nav-dropdown-menu {
        display: none !important;
    }

    .region-quick-stats {
        flex-direction: column;
    }
}