/* CSS Variables */
:root {
    --primary-red: #da251d;
    --primary-red-hover: #b81c15;
    --dark-bg: #0d0d0d;
    --card-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #111111;
    --text-light: #cccccc;
    --border-color: #333333;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.text-red {
    color: var(--primary-red) !important;
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.font-weight-bold {
    font-weight: 700;
}

.font-weight-900 {
    font-weight: 900;
}

.uppercase {
    text-transform: uppercase;
}

/* Layout Utilities */
.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.py-50 {
    padding: 50px 0;
}

.py-70 {
    padding: 70px 0;
}

.py-100 {
    padding: 100px 0;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.auto-margin {
    margin-left: auto;
    margin-right: auto;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.w-100 {
    width: 100%;
}

/* Backgrounds & Borders */
.bg-red {
    background-color: var(--primary-red);
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
}

.shadow-lg {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.border-top-light {
    border-top: 1px solid #eaeaea;
}

.border-none {
    border: none !important;
}

.container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    color: var(--white);
}

.btn-white-btn {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-white-btn:hover {
    background-color: #f0f0f0;
}

.rounded-pill-btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
}

.btn-submit {
    background-color: var(--primary-red);
    color: var(--white);
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
}

.btn-submit:hover {
    background-color: var(--primary-red-hover);
}

/* Badges */
.badge-red {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.badge-white {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-red);
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.badge-black {
    display: inline-block;
    background-color: #000;
    color: var(--white);
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Header */
.site-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    max-width: 1540px;
    margin: 0 auto;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.btn-join {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-red);
    padding: 8px 0;
    color: var(--white);
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0 90px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #050505;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.75);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/2093323/pexels-photo-2093323.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-left {
    color: var(--white);
    flex: 1;
    max-width: 650px;
    padding-top: 10px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat-item {
    padding-right: 30px;
}

.stat-item.border-left-red {
    border-left: 2px solid var(--primary-red);
    padding-left: 30px;
}

.stat-item h3 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.stat-sub {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.hero-registration-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-list li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: #e0e0e0;
}

.hero-list i {
    font-size: 0.9rem;
    margin-right: 8px;
}

/* Form Card */
.hero-right {
    width: 480px;
    flex-shrink: 0;
}

.form-card {
    background-color: rgba(28, 28, 28, 0.95);
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-card h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-icon {
    font-size: 1.1rem;
    transform: rotate(15deg);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border-radius: 6px;
    border: none;
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-red);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
}

/* Base Sections */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Promises Section */
.promises-section {
    background-color: #fcfcfc;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.promise-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: var(--transition);
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-outline {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.promise-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promise-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Introducing Section */
.introducing-section {
    padding: 80px 0;
}

.introducing-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.intro-left,
.intro-right {
    flex: 1;
}

.premium-township-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #222;
}

.feature-list li i {
    font-size: 1.1rem;
}

.rounded-image {
    border-radius: 12px;
}

/* Neighbourhood Banner */
.neighbourhood-banner {
    position: relative;
    z-index: 10;
    margin-bottom: -20px;
}

.banner-badge {
    background-color: var(--primary-red);
    color: var(--white);
    display: inline-block;
    padding: 10px 40px 10px 30px;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 800;
    font-size: 1.4rem;
    position: relative;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
}

/* Why Waitlist Section */
.why-waitlist-section {
    padding: 60px 0 100px;
    background-color: #f9f9f9;
}

.waitlist-banner {
    background-color: var(--primary-red);
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 15px 35px rgba(218, 37, 29, 0.2);
}

.waitlist-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.waitlist-features {
    background-color: #b31611;
    border-radius: 8px;
    padding: 25px 30px;
    max-width: 450px;
    margin: 0 auto;
}

.waitlist-features li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.waitlist-features li:last-child {
    margin-bottom: 0;
}

/* Steps Section */
.steps-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.steps-subtitle {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.step-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 35px 25px;
    border: 1px solid #2a2a2a;
    transition: var(--transition);
}

.step-card:hover {
    border-color: #444;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.step-list {
    margin-top: 15px;
}

.step-list li {
    margin-bottom: 8px;
    color: #d0d0d0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.step-list li i {
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--primary-red);
}

/* HoABL Section */
.hoabl-section {
    padding: 90px 0;
}

.hoabl-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hoabl-left,
.hoabl-right {
    flex: 1;
}

.hoabl-logo {
    max-height: 90px;
}

.hoabl-desc {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 90%;
}

.rounded-image-large {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-height: 480px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #20C35B;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content-wrapper {
        flex-direction: column;
    }

    .hero-right {
        width: 100%;
        max-width: 460px;
        margin: 20px auto 0;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hoabl-content {
        flex-direction: column;
    }

    .hoabl-left {
        margin-bottom: 40px;
        text-align: center;
    }

    .hoabl-logo {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-action {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item.border-left-red {
        border-left: none;
        padding-left: 0;
    }

    .promises-grid {
        grid-template-columns: 1fr;
    }

    .introducing-content {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .banner-badge {
        font-size: 1.1rem;
        padding: 8px 25px 8px 15px;
    }

    .waitlist-banner {
        padding: 30px 20px;
    }

    .waitlist-title {
        font-size: 1.8rem;
    }
}