﻿:root {
    --primary: #0f172a;
    --secondary: #b8860b;
    --accent: #d4a017;
    --dark: #020617;
    --light: #f8fafc;
    --surface: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gold-gradient: linear-gradient(135deg, #b8860b 0%, #d4a017 50%, #daa520 100%);
    --radius: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 1002;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease;
}

.top-bar a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s;
}

.top-bar a:hover { color: #fff; }

/* Header */
header {
    background: transparent;
    padding: 16px 0;
    position: fixed;
    top: 38px; left: 0; width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 36px; width: auto; }

.header-cta { display: flex; align-items: center; gap: 16px; }

.header-phone {
    display: flex; align-items: center; gap: 8px;
    color: var(--white); text-decoration: none;
    font-weight: 600; font-size: 14px;
    transition: color 0.3s;
}

.header-phone:hover { color: var(--accent); }

/* Buttons */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 12px 24px;
    padding-right: 12px;
    border: none;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary .btn-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

.btn-primary .btn-arrow svg {
    width: 14px; height: 14px;
    stroke: var(--white);
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
}

.btn-primary:hover .btn-arrow svg { transform: translateX(3px); }

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 12px 24px;
    padding-right: 12px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 60px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary .btn-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

.btn-secondary .btn-arrow svg {
    width: 14px; height: 14px;
    stroke: var(--white);
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover .btn-arrow {
    border-color: var(--primary);
}

.btn-secondary:hover .btn-arrow svg {
    stroke: var(--primary);
    transform: translateX(3px);
}

/* Hero Section */
.hero {
    background: url('images/bg.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(2,6,23,0.85) 0%, rgba(15,23,42,0.7) 50%, rgba(2,6,23,0.8) 100%);
}

.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 200px;
    background: linear-gradient(transparent, rgba(2,6,23,0.5));
}

.hero-content {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text { color: var(--white); }

.hero-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-text h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.8;
    max-width: 480px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.hero-stat {
    text-align: center;
    padding: 22px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-2px);
}

.hero-stat h3 {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 4px;
    font-weight: 700;
}

.hero-stat p {
    font-size: 10px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

/* Hero Form */
.hero-form {
    background: rgba(255,255,255,0.97);
    padding: 40px 36px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.hero-form h3 {
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 6px;
}

.hero-form p.form-subtitle {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.08);
}

.form-consent {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.6;
}

.form-consent a { color: var(--secondary); text-decoration: underline; }

.btn-submit {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 6px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

/* Section Styles */
.section { padding: 110px 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-light { background: var(--light); }

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title .tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.section-title h2 {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-dark .section-title h2 { color: var(--white); }

.section-title p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-title p { color: rgba(255,255,255,0.65); }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    pointer-events: none;
}

.about-image img {
    width: 100%; height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img { transform: scale(1.03); }

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
}

.about-highlight svg {
    width: 20px; height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Why Buildtown Section */
.why-section {
    position: relative;
    padding: 110px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.why-section .bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.why-section::after {
    content: '';
    position: absolute; inset: 0;
        background: linear-gradient(135deg, rgb(0 0 0 / 57%) 0%, rgb(0 0 0 / 67%) 100%);
    z-index: 1;
}

.why-section .container { position: relative; z-index: 2; }

.why-section .section-title h2 {
    color: var(--white);
    font-size: 44px;
}

.why-section .section-title p {
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    margin: 0 auto;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px 24px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.why-card-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(184,134,11,0.08), rgba(184,134,11,0.15));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
}

.why-card-icon svg { width: 28px; height: 28px; stroke: var(--secondary); }

.why-card h4 {
    font-size: 18px; color: var(--primary);
    margin-bottom: 12px; font-weight: 600;
}

.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 36px 20px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.advantage-card .adv-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(184,134,11,0.08), rgba(184,134,11,0.15));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.advantage-card svg {
    width: 24px; height: 24px;
    color: var(--secondary);
    stroke: var(--secondary);
}

.advantage-card h4 {
    font-size: 15px; margin-bottom: 10px;
    font-weight: 600; color: var(--primary);
}

.advantage-card p {
    font-size: 13px; color: var(--text-light); line-height: 1.7;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    pointer-events: none;
}

/* Pricing Section - Modern Redesign */
.pricing-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-main {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(212,160,23,0.1));
    border: 1px solid rgba(184,134,11,0.25);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.pricing-badge svg {
    width: 14px; height: 14px;
    fill: var(--secondary);
}

.pricing-plan-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.pricing-amount .currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.pricing-amount .value {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-amount .asterisk {
    font-size: 20px;
    color: var(--text-light);
}

.pricing-unit {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.pricing-booking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,134,11,0.06);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 32px;
}

/* Payment Schedule */
.payment-schedule {
    background: var(--light);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 28px;
}

.payment-schedule h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-schedule h4::before {
    content: '';
    width: 3px; height: 16px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.schedule-items { list-style: none; }

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.schedule-item:last-child { border-bottom: none; }

.schedule-item .label { color: var(--text); font-weight: 500; }

.schedule-item .percent {
    font-weight: 700;
    color: var(--primary);
    background: rgba(184,134,11,0.08);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
}

/* Pricing Features */
.pricing-features-list {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
}

.pricing-features-list li svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
}

/* Pricing Sidebar */
.pricing-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-highlight-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 36px 30px;
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-highlight-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.pricing-highlight-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pricing-highlight-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-points { list-style: none; }

.location-points li {
    padding: 14px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
}

.location-points li svg {
    width: 20px; height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.location-map img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.distance-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.distance-badge {
    background: rgba(184,134,11,0.08);
    border: 1px solid rgba(184,134,11,0.2);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    text-align: center;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.distance-badge:hover {
    background: rgba(184,134,11,0.12);
    transform: translateY(-2px);
}

.distance-badge strong { color: var(--accent); }

/* Virtual Tour */
.tour-section { text-align: center; }

.tour-frame {
    width: 100vw;
    height: 700px;
    border: none;
    margin-left: calc(-50vw + 50%);
    display: block;
    border-radius: 0;
}

/* Layout Section */
.layout-section img {
    width: 100%; max-width: 100%;
    margin: 0 auto; display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Video Section */
.video-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper img { width: 100%; display: block; }

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.4);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 15px 50px rgba(184, 134, 11, 0.5);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(184,134,11,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(184,134,11,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    max-width: 580px;
}

.cta-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 520px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.cta-contact-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.cta-link:hover { color: var(--accent); }
.cta-link svg { flex-shrink: 0; }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Footer */
footer {
    background: #020617;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 22px; color: var(--white); margin-bottom: 15px;
}

.footer-brand p { font-size: 14px; line-height: 1.8; }

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }

.footer-links ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links ul li a:hover { color: var(--accent); transform: translateX(3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--accent); }

/* Disclaimer */
.disclaimer {
    background: #010313;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.disclaimer p {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    text-align: center;
}

/* Floating WhatsApp & Call */
.floating-btns {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-btn:hover { transform: scale(1.1) translateY(-3px); }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--gold-gradient); }

/* Our Project Section */
.project-section {
    background: var(--light);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.project-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40%; height: 100%;
    background: url('https://buildtown.in/farmhouse/images/IMG%2025.webp') center/cover;
    opacity: 0.04;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.project-left { position: relative; z-index: 2; }

.project-left .tag-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.project-left .tag-line::after {
    content: '';
    width: 40px; height: 2px;
    background: var(--secondary);
}

.project-left h2 {
    font-size: 48px;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.project-left p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
}

.project-card {
    background: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 420px;
    margin-left: auto;
    transition: transform 0.4s ease;
}

.project-card:hover { transform: translateY(-5px); }

.project-card-image {
    width: 100%; height: 240px;
    object-fit: cover;
}

.project-card-content {
    padding: 36px 30px;
    text-align: center;
}

.project-card-content h3 {
    font-size: 22px; color: var(--white); margin-bottom: 8px;
}

.project-card-content .dot-divider {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin: 12px auto;
}

.project-card-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-card-btn {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.project-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

.project-card-btn svg { vertical-align: middle; margin-left: 6px; }

/* Premier Offerings Tabs & Slider */
.offerings-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 40px;
    margin-top: 35px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.offerings-tabs::-webkit-scrollbar { display: none; }

.filter-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--border);
    border-radius: 60px;
    background: transparent;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.amenities-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.amenities-track {
    display: flex;
    gap: 20px;
    animation: scrollSlider 20s linear infinite;
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.amenities-track:hover { animation-play-state: paused; }

.amenity-slide {
    min-width: 380px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    display: none;
}

.amenity-slide.visible { display: block; }

.amenity-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-slide:hover img { transform: scale(1.06); }

.offering-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 28px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.offering-overlay h4 {
    font-size: 20px; margin-bottom: 5px; font-weight: 600;
}

.offering-overlay p { font-size: 13px; opacity: 0.8; line-height: 1.5; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding-top: 130px; padding-bottom: 60px; min-height: auto; }
    .hero-text h1 { font-size: 38px; }
    .about-grid, .location-grid, .project-grid { grid-template-columns: 1fr; }
    .project-card { margin-left: 0; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .why-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-section-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .pricing-sidebar { position: static; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 32px; }
    .hero-form { padding: 30px 24px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .hero-stat h3 { font-size: 24px; }
    .hero-stat { padding: 16px 10px; }
    .section { padding: 80px 0; }
    .section-title h2 { font-size: 30px; }
    .section-title { margin-bottom: 50px; }
    .advantages-grid, .gallery-grid { grid-template-columns: 1fr; }
    .why-cards { grid-template-columns: 1fr; }
    .pricing-main { padding: 32px 24px; }
    .pricing-amount .value { font-size: 42px; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-cta .btn-primary { display: none; }
    .distance-badges { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 30px; }
    .tour-frame { height: 350px; }
    .project-left h2 { font-size: 36px; }
    .project-grid { gap: 40px; }
    .about-image img { height: 300px; }
    .offerings-tabs { gap: 8px; }
    .filter-btn { padding: 8px 14px; font-size: 10px; }
    .amenity-slide { min-width: 280px; height: 240px; }
    .why-section .section-title h2 { font-size: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text h1 { font-size: 28px; }
    .hero-badge { font-size: 10px; padding: 6px 14px; }
    .pricing-amount .value { font-size: 36px; }
    .pricing-amount .currency { font-size: 22px; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge, .hero-text h1, .hero-text > p, .hero-stats {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-text h1 { animation-delay: 0.1s; }
.hero-text > p { animation-delay: 0.2s; }
.hero-stats { animation-delay: 0.3s; }

/* Selection color */
::selection {
    background: rgba(184, 134, 11, 0.2);
    color: var(--primary);
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb {
    background: rgba(184, 134, 11, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* Amenity card fallback for older code */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.amenity-card img { width: 100%; height: 200px; object-fit: cover; }

.amenity-card .amenity-info { padding: 22px; }

.amenity-card h4 {
    font-size: 16px; margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; color: var(--primary);
}

.amenity-card p { font-size: 13px; color: var(--text-light); }

/* Pricing card fallback */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: 'VALID FOR FIRST 10 BOOKINGS';
    position: absolute; top: 20px; right: -35px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 5px 40px;
    font-size: 11px; font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card .price {
    font-size: 52px; font-weight: 700;
    color: var(--primary);
    margin: 20px 0 5px;
    font-family: 'Poppins', sans-serif;
}

.pricing-card .price-unit {
    font-size: 16px; color: var(--text-light);
}

.pricing-card .booking-amount {
    font-size: 18px; color: var(--secondary);
    font-weight: 600; margin: 10px 0 25px;
}

.payment-plan {
    text-align: left;
    margin: 25px 0;
    padding: 25px;
    background: var(--light);
    border-radius: 12px;
}

.payment-plan h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.payment-plan ul { list-style: none; }

.payment-plan ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.payment-plan ul li:last-child { border-bottom: none; }

.pricing-features {
    text-align: left; margin: 20px 0; list-style: none;
}

.pricing-features li {
    padding: 8px 0; font-size: 14px;
    display: flex; align-items: center; gap: 10px;
}

/* Location Section - Modern Redesign */
.location-section {
    background: var(--light);
    padding: 110px 0 80px;
}

.location-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.location-list li:last-child { border-bottom: none; }

.location-list li:hover {
    padding-left: 6px;
}

.location-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: var(--gold-gradient);
    margin-top: 7px;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.location-map-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.location-map-modern img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.location-map-modern:hover img {
    transform: scale(1.02);
}

/* Distance Badges - Modern Row */
.distance-badges-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.distance-badge-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.distance-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.3);
}

.badge-time {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
}

.badge-arrow {
    font-size: 14px;
    color: var(--text-light);
    margin: 2px 0;
}

.badge-place {
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* Location Responsive */
@media (max-width: 992px) {
    .location-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .distance-badges-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .distance-badges-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-list li {
        font-size: 14px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .distance-badges-modern {
        grid-template-columns: 1fr 1fr;
    }
}

/* Enquiry Popup Modal */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--white);
    border-radius: 24px;
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text);
}

.popup-close:hover {
    background: #fee2e2;
    color: #dc2626;
    transform: rotate(90deg);
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.popup-left {
    background: var(--primary);
    padding: 48px 36px;
    border-radius: 24px 0 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 60px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    width: fit-content;
}

.popup-left h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.popup-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.popup-feature svg { flex-shrink: 0; }

.popup-right {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-right .form-group { margin-bottom: 18px; }

.popup-right .btn-submit { margin-top: 8px; }

.popup-right .form-consent { margin-top: 14px; }

/* Popup Responsive */
@media (max-width: 768px) {
    .popup-content {
        grid-template-columns: 1fr;
    }
    .popup-left {
        border-radius: 24px 24px 0 0;
        padding: 32px 24px;
    }
    .popup-right {
        padding: 28px 24px;
    }
    .popup-container {
        max-height: 95vh;
        border-radius: 20px;
    }
    .popup-left h3 { font-size: 22px; }
}

/* CTA Section Responsive */
@media (max-width: 992px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .cta-actions { align-items: center; }
    .cta-section h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .cta-section { padding: 80px 0; }
    .cta-section h2 { font-size: 30px; }
    .cta-contact-row { justify-content: center; }
}

/* Form Button States */
.btn-submit.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-submit.btn-loading {
    opacity: 0.8;
    cursor: wait;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit.btn-success {
    background: linear-gradient(135deg, #059669, #10b981) !important;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
