:root {
    --primary: #D4AF37;
    --primary-dark: #B5952F;
    --bg-main: #FFFFFF;
    --bg-alt: #F7FAFC;
    --text-main: #2D3748;
    --text-muted: #718096;
    --heading: #1A1C1E;
    
    --border-light: rgba(0, 0, 0, 0.08);
    --border-med: rgba(0, 0, 0, 0.15);
    
    --font-sans: 'Poppins', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 16px 40px rgba(0,0,0,0.1);
}

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    color: var(--heading);
    line-height: 1.2;
    font-weight: 600;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background-color: transparent;
    color: var(--heading);
    border: 1px solid var(--border-med);
}

.btn-ghost:hover {
    background-color: var(--bg-alt);
    border-color: var(--heading);
}

.btn-full { width: 100%; }

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 8px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    height: 64px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

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

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

.logo-z {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--text-muted);
    font-weight: 400;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--heading);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--primary) !important;
}

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

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--heading);
    transition: all 0.3s;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-main);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading);
}

.mobile-link.cta {
    margin-top: 16px;
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-main);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.08); /* light golden shade */
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-accent { color: var(--primary); }

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 500;
}

.sub-detail {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 12px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-med);
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* --- Value Proposition Strip --- */
.value-strip {
    background: var(--heading);
    color: #fff;
    padding: 32px 0;
}

.value-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.value-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.value-item span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

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

/* --- Solutions / Tiers --- */
.solutions {
    padding: 120px 0;
    background: var(--bg-alt);
}

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

.tier-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.tier-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.tier-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-header {
    margin-bottom: 20px;
}

.tier-for {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.tier-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.tier-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.tier-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

/* --- Long Stays --- */
.relocations {
    padding: 100px 0;
    background: var(--bg-main);
}

.relocations-card {
    background: var(--bg-alt);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.relocations-left { flex: 1; }
.relocations-divider { width: 1px; height: 200px; background: var(--border-light); }
.relocations-right { flex: 1; }

.relocations-left .tier-name { color: var(--heading); font-size: 2rem; margin: 12px 0 24px; }
.relocations-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; }

.relocations-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.relocations-plan { font-size: 1.2rem; font-weight: 600; color: var(--primary-dark); }
.relocations-price-note { font-size: 0.8rem; color: var(--text-muted); }

.relocations-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.relocations-features-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.relocations-features-grid svg { width: 20px; height: 20px; }

/* --- Why Z Hotels --- */
.why-loop {
    padding: 120px 0;
    background: var(--bg-alt);
}

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

.why-card {
    background: var(--bg-main);
    padding: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.why-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--border-light);
    margin-bottom: 20px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Social Proof --- */
.social-proof {
    padding: 80px 0;
    background: var(--bg-main);
    overflow: hidden;
    text-align: center;
}

.proof-header h2 { font-size: 1.5rem; margin-bottom: 8px; }
.proof-header p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 40px; }

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.logo-marquee::before, .logo-marquee::after {
    content: '';
    position: absolute;
    top: 0; width: 100px; height: 100%;
    z-index: 2;
}

.logo-marquee::before { left: 0; background: linear-gradient(to right, var(--bg-main), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, var(--bg-main), transparent); }

.logo-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 64px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.logo-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: default;
}

.logo-item:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Form Section --- */
.form-section {
    padding: 120px 0;
    background: rgba(212, 175, 55, 0.08); /* light golden shade */
    color: var(--text-main);
}

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

.form-title { color: var(--heading); font-size: 2.5rem; margin-bottom: 20px; letter-spacing: -0.5px; }
.form-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; }

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-icon-wrap {
    width: 32px; height: 32px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-dark);
}

.form-icon-wrap svg { width: 16px; height: 16px; }
.form-benefit span { font-weight: 500; color: var(--heading); }

.form-contact {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.form-contact p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.form-phone { display: block; font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; color: var(--heading) !important; }
.form-email { color: var(--primary-dark) !important; }
.form-email:hover { text-decoration: underline; }

.form-card {
    background: var(--bg-main);
    padding: 48px;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-hover);
}

.form-row { margin-bottom: 24px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-med);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-main);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-label input { width: auto; cursor: pointer; }
.radio-text { font-size: 0.9rem; color: var(--text-main); }

.form-success {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    border-radius: var(--radius-md);
}

.form-success.active { opacity: 1; pointer-events: all; }

.success-icon {
    width: 64px; height: 64px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}

.success-icon svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--heading); font-size: 1.8rem; margin-bottom: 16px; }
.form-success p { color: var(--text-muted); }

/* --- Footer --- */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-light);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}

/* Footer */
.footer {
    background-color: #f9fafc;
    color: var(--text-muted);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.footer-watermark {
    position: absolute;
    right: -40px;
    top: -20px;
    font-family: var(--font-head);
    font-size: 18rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -8px;
}

.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border-light); }
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: baseline; gap: 6px; }
.footer-logo-z { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--primary); }
.footer-logo-text { font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: var(--text-muted); }
.footer-logo-accent { color: var(--text-muted); }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); max-width: 260px; margin: 0; }
.footer-social { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.footer-cta-link { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-main); font-weight: 500; transition: color 0.25s ease; }
.footer-cta-link svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.footer-cta-link:hover { color: var(--primary); }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--heading); margin: 0; }
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.25s ease; }
.footer-col-links a:hover { color: var(--primary); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 8px; }
.footer-bottom-note { font-size: 0.75rem; color: var(--text-muted); }

/* --- Animations --- */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* --- Responsive Layouts --- */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .tiers-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-card.featured { transform: none; }
    .tier-card.featured:hover { transform: translateY(-8px); }
    .relocations-card { flex-direction: column; gap: 48px; text-align: center; }
    .relocations-divider { width: 100%; height: 1px; }
    .why-grid { grid-template-columns: 1fr; }
    .form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .tiers-grid { grid-template-columns: 1fr; }
    .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
    .relocations-features-grid { grid-template-columns: 1fr; text-align: left; }
    .value-strip-inner { justify-content: center; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-contact { text-align: center; }
}
