/* ===== VARIABLES ===== */
:root {
    /* Warm, hangat & profesional palette */
    --primary: #c0843c;          /* caramel gold */
    --primary-light: #e8c79a;
    --primary-dark: #9a5f23;     /* roasted brown */
    --secondary: #cf6b3f;        /* warm terracotta */
    --secondary-light: #f0c4a8;
    --accent: #e0a458;           /* honey */
    --accent-light: #f6dcb4;
    --gold: #c99a4e;
    --gold-light: #f4e3c1;

    /* Warm light surfaces */
    --bg-light: #fdfaf5;         /* soft ivory */
    --bg-lighter: #fbf5ec;       /* warm cream page bg */
    --bg-section: #f6ecde;       /* warm sand */
    --bg-card: #ffffff;
    --bg-card-hover: #fffaf2;

    /* Warm neutral text */
    --text-primary: #2e2318;     /* deep espresso */
    --text-secondary: #6e5d4c;   /* warm taupe */
    --text-muted: #a08d78;
    --border: #ece0cf;
    --border-light: #e0d0b8;

    --gradient-primary: linear-gradient(135deg, #cf9248 0%, #a8661f 100%);
    --gradient-gold: linear-gradient(135deg, #c0843c, #f4e3c1, #c99a4e, #f6dcb4, #9a5f23);
    --gradient-premium: linear-gradient(135deg, #fff8ee, #f6ecde);

    /* Soft warm-brown shadows for a light theme */
    --shadow-color: rgba(122, 84, 38, 0.10);
    --shadow-sm: 0 2px 8px rgba(122, 84, 38, 0.08);
    --shadow-md: 0 10px 28px rgba(122, 84, 38, 0.10);
    --shadow-lg: 0 18px 44px rgba(122, 84, 38, 0.14);
    --shadow-xl: 0 28px 64px rgba(122, 84, 38, 0.18);
    --shadow-glow: 0 0 40px rgba(192, 132, 60, 0.18);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    /* Smooth, gentle easing used across the page */
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Source Serif 4', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-lighter);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ===== PRELOADER ===== */
.preloader{position:fixed;top:0;left:0;width:100%;height:100%;background:var(--bg-light);display:flex;align-items:center;justify-content:center;z-index:10000;transition:opacity 0.6s ease,visibility 0.6s ease}
.preloader.hidden{opacity:0;visibility:hidden}
.preloader-inner{display:flex;align-items:center;gap:0.75rem;flex-wrap:wrap;justify-content:center}
.preloader-text-1{font-size:1.2rem;color:var(--text-secondary);font-weight:400}
.preloader-logo{width:48px;height:auto;animation:preloaderCoinSpin 1.5s ease-in-out infinite}
@keyframes preloaderCoinSpin{0%{transform:perspective(200px) rotateY(0deg)}100%{transform:perspective(200px) rotateY(360deg)}}
.preloader-text-2{font-family:var(--font-serif);font-size:1.2rem;font-weight:700;color:var(--primary-dark);animation:preloaderBlink 1.2s ease-in-out infinite}
@keyframes preloaderBlink{0%,100%{opacity:1}50%{opacity:0.3}}

/* ===== BACKGROUND ANIMATION ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.45;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -8s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(40px, 40px) scale(1.05); }
}

/* ===== PARTICLES CANVAS ===== */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    backdrop-filter: blur(20px);
    background: rgba(253, 250, 245, 0.78);
    border-bottom: 1px solid rgba(192, 132, 60, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(253, 250, 245, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.75rem;
}
.logo-icon-img {
    height: 32px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
    /* warm caramel tint for the brand mark on light bg */
    filter: brightness(0) saturate(100%) invert(52%) sepia(38%) saturate(820%) hue-rotate(354deg) brightness(91%) contrast(88%);
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(191, 149, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(191, 149, 63, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 3rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-section) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(191, 149, 63, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(191, 149, 63, 0.1), transparent);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.card-price {
    bottom: -20px;
    left: -30px;
    animation: floatCard 6s ease-in-out infinite;
}

.card-rating {
    top: 20px;
    right: -20px;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: -2s;
}

.card-location {
    bottom: 80px;
    right: -40px;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-rating .card-icon {
    color: var(--accent-light);
}

.card-location .card-icon {
    color: var(--accent);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-value {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* ===== SECTION STYLES ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(191, 149, 63, 0.1);
    border: 1px solid rgba(191, 149, 63, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PROPERTIES SECTION ===== */
.properties {
    padding: 6rem 0;
    position: relative;
    background: var(--bg-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.property-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.property-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.property-card:hover::before {
    transform: scaleX(1);
}

.property-card.featured {
    border-color: var(--gold);
    background: rgba(184, 134, 11, 0.03);
}

.property-card.featured::before {
    background: var(--gradient-gold);
    transform: scaleX(1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--gradient-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.property-icon {
    width: 56px;
    height: 56px;
    background: rgba(191, 149, 63, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.property-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.property-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.property-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.property-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.375rem 0;
}

.property-features li i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.property-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.property-link:hover {
    gap: 0.75rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-section);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: rgba(191, 149, 63, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== REQUEST FORM SECTION ===== */
.request-form {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.property-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.form-section:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-section-title i {
    color: var(--primary);
    font-size: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: var(--bg-lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(191, 149, 63, 0.1);
    background: var(--bg-card-hover);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-muted);
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c0843c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.input-wrapper select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 1rem;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

/* Property Type Options */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.property-type-option {
    cursor: pointer;
}

.property-type-option input {
    display: none;
}

.option-content {
    background: var(--bg-lighter);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.property-type-option input:checked + .option-content {
    border-color: var(--primary);
    background: rgba(191, 149, 63, 0.05);
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.1);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.property-type-option input:checked + .option-content .option-icon {
    color: var(--primary);
}

.option-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.option-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Facilities Options */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.facility-option {
    cursor: pointer;
}

.facility-option input {
    display: none;
}

.facility-content {
    background: var(--bg-lighter);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.facility-option input:checked + .facility-content {
    border-color: var(--secondary);
    background: rgba(207, 107, 63, 0.06);
}

.facility-content i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.facility-option input:checked + .facility-content i {
    color: var(--secondary);
}

.facility-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Urgency Options */
.urgency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.urgency-option {
    cursor: pointer;
}

.urgency-option input {
    display: none;
}

.urgency-content {
    background: var(--bg-lighter);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.urgency-option input:checked + .urgency-content {
    border-color: var(--primary);
    background: rgba(191, 149, 63, 0.05);
}

.urgency-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 132, 60, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.urgency-icon.urgent {
    color: #ef4444;
}

.urgency-icon.relaxed {
    color: var(--accent);
}

.urgency-icon.cool {
    color: var(--secondary);
}

.urgency-option input:checked + .urgency-content .urgency-icon {
    background: rgba(191, 149, 63, 0.1);
    color: var(--primary);
}

.urgency-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.urgency-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form Submit */
.form-submit {
    text-align: center;
}

.btn-submit {
    width: 100%;
    max-width: 400px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.btn-submit i {
    font-size: 1.25rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-note i {
    color: var(--secondary);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    animation: modalSlideUp 0.5s ease;
    box-shadow: var(--shadow-xl);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 152, 92, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #4c985c;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-section);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 1rem);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

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

.author-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-property {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--primary);
}

.testimonial-property i {
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(191, 149, 63, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #bf953f 0%, #aa771c 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: white;
}

.cta .gradient-text {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-lighter);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-logo{height:48px;width:auto;opacity:.6;margin-bottom:8px}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-credit {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-credit span {
    color: var(--primary);
    font-weight: 600;
}

.sub-footer{text-align:center;padding:2rem 0}
.sub-footer-copy{font-size:0.82rem;color:var(--text-muted);margin-bottom:0.75rem}
.sub-footer-links{font-size:0.82rem;color:var(--text-muted);margin-bottom:0.75rem}
.sub-footer-links a{color:var(--text-muted);text-decoration:none;transition:var(--transition)}
.sub-footer-links a:hover{color:var(--primary)}
.sub-footer-credit{font-size:0.78rem;color:var(--text-muted);margin-bottom:1rem}
.sub-footer-credit a{color:var(--gold);font-weight:600;text-decoration:none}
.sub-footer-disclaimer{font-size:0.72rem;color:rgba(150,150,150,0.7);max-width:800px;margin:0 auto;line-height:1.6}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 16px rgba(191, 149, 63, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(191, 149, 63, 0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
    will-change: opacity, transform;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Directional reveal variants for richer, smoother entrances */
.reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
    will-change: opacity, transform;
}
.reveal.reveal-left  { transform: translateX(-48px); }
.reveal.reveal-right { transform: translateX(48px); }
.reveal.reveal-scale { transform: scale(0.94); }
.reveal.in {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .property-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

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

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

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

    .testimonial-card {
        min-width: calc(100% - 0rem);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .property-type-grid {
        grid-template-columns: 1fr;
    }

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

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

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

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(192, 132, 60, 0.22);
    color: var(--text-primary);
}

/* ===== LEGAL MODALS ===== */
.legal-modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:10000;backdrop-filter:blur(4px);align-items:center;justify-content:center;padding:1rem}
.legal-modal.active{display:flex}
.legal-modal-box{background:var(--bg-card);border-radius:20px;max-width:700px;width:100%;max-height:85vh;position:relative;box-shadow:0 20px 60px rgba(0,0,0,.15);display:flex;flex-direction:column;overflow:hidden}
.legal-modal-header{background:var(--bg-card);padding:1.5rem 2rem;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;flex-shrink:0}
.legal-modal-header h2{font-family:inherit;font-size:1.5rem;color:var(--primary);display:flex;align-items:center;gap:.5rem;margin:0}
.legal-modal-header h2 i{color:var(--secondary);font-size:1.1rem}
.legal-modal-close{background:none;border:none;font-size:1.5rem;color:var(--text-muted);cursor:pointer;padding:.25rem;line-height:1;transition:all .3s ease}
.legal-modal-close:hover{color:var(--primary)}
.legal-modal-body{padding:2rem;overflow-y:auto;flex:1;text-align:left}
.legal-modal-section{margin-bottom:2rem}
.legal-modal-section h3{font-size:1.05rem;font-weight:700;color:var(--primary);margin-bottom:.5rem;display:flex;align-items:center;gap:.4rem;font-family:inherit}
.legal-modal-section h3 i{color:var(--secondary);font-size:.9rem}
.legal-modal-section p{color:var(--text-secondary);font-size:.9rem;margin-bottom:.5rem;line-height:1.75}
.legal-modal-section ul{list-style:none;padding:0;margin:.5rem 0}
.legal-modal-section ul li{position:relative;padding-left:1.5rem;margin-bottom:.4rem;color:var(--text-secondary);font-size:.9rem;line-height:1.65}
.legal-modal-section ul li::before{content:'\f058';font-family:'Font Awesome 6 Free';font-weight:900;position:absolute;left:0;color:var(--secondary);font-size:.75rem;top:.1rem}
.legal-modal-highlight{background:var(--bg-lighter);border:1px solid var(--border);border-radius:12px;padding:1rem 1.25rem;margin:.75rem 0;border-left:3px solid var(--secondary)}
.legal-modal-highlight p{margin:0;color:var(--text-secondary);font-size:.85rem}
.legal-modal-date{font-size:.8rem;color:var(--text-muted);font-weight:500;margin-bottom:1.25rem}
@media(max-width:600px){.legal-modal-box{max-height:90vh;border-radius:16px}.legal-modal-header{padding:1rem 1.25rem}.legal-modal-body{padding:1.25rem}}

/* ===== ANIMATION POLISH ===== */

/* Smoother, springier easing on interactive surfaces */
.btn,
.property-card,
.feature-card,
.step,
.testimonial-card,
.form-section,
.option-content,
.facility-content,
.urgency-content,
.slider-btn,
.social-links a {
    transition: transform 0.5s var(--ease-smooth),
                box-shadow 0.5s var(--ease-smooth),
                background-color 0.45s var(--ease-smooth),
                border-color 0.45s var(--ease-smooth),
                opacity 0.8s var(--ease-smooth),
                color 0.35s var(--ease-smooth);
    will-change: transform;
}

/* Inputs: gentle, smooth focus lift */
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    transition: border-color 0.35s var(--ease-smooth),
                box-shadow 0.45s var(--ease-smooth),
                background-color 0.45s var(--ease-smooth),
                transform 0.45s var(--ease-smooth);
}
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    transform: translateY(-2px);
}
/* Icon nudges in on focus for a tactile feel */
.input-wrapper:focus-within > i {
    color: var(--primary);
    transform: translateX(2px);
    transition: color 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}

/* Animated shimmer across gold gradient text */
.gradient-text,
.logo-text,
.stat-number {
    background-size: 200% auto;
    animation: shimmerText 6s linear infinite;
}
@keyframes shimmerText {
    to { background-position: 200% center; }
}

/* Soft continuous glow pulse on the hero badge */
.hero-badge {
    animation: badgePulse 3.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192, 132, 60, 0.0); }
    50%      { box-shadow: 0 0 22px 2px rgba(192, 132, 60, 0.18); }
}

/* Section badges gently breathe into view */
.section-badge {
    transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}
.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Property/feature top-bar sweeps in more smoothly */
.property-card::before,
.feature-card::before {
    transition: transform 0.6s var(--ease-smooth);
    transform-origin: left center;
}

/* Submit button: smooth idle float to draw the eye */
.btn-submit {
    animation: ctaFloat 4s ease-in-out infinite;
}
@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}
.btn-submit:hover {
    animation-play-state: paused;
}

/* Back-to-top: smooth icon bob on hover */
.back-to-top:hover i {
    animation: bobUp 0.8s var(--ease-smooth) infinite;
}
@keyframes bobUp {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* Nav links: smoother underline + lift */
.nav-links a {
    transition: color 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}
.nav-links a:hover {
    transform: translateY(-1px);
}

/* Staggered reveal helper delays (applied via JS) */
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }
.reveal.d5 { transition-delay: 0.30s; }
.reveal.d6 { transition-delay: 0.36s; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .scroll-animate,
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
