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

:root {
    --cream: #FAF8F5;
    --white: #ffffff;
    --charcoal: #1C1C1E;
    --mid: #555555;
    --light: #999999;
    --gold: #B89B6A;
    --gold-dark: #9A7E52;
    --gold-light: #f5ede0;
    --sage: #3D6B5F;
    --sage-light: #EAF2EF;
    --border: #E5E0D8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Heebo', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 64px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.logo {
    font-size: 1.65rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.4s;
}

nav.scrolled .logo { color: var(--charcoal); }

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

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

nav.scrolled .nav-links a { color: var(--mid); }
nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
    background: var(--gold) !important;
    color: white !important;
    padding: 10px 26px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(184,155,106,0.35);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(184,155,106,0.45) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

nav.scrolled .hamburger span { background: var(--charcoal); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
    position: absolute;
    top: 24px;
    left: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* ─── HERO ─── */
.hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 12s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            160deg,
            rgba(28, 28, 30, 0.65) 0%,
            rgba(28, 28, 30, 0.45) 40%,
            rgba(61, 107, 95, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 28px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.12;
    margin-bottom: 22px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.hero h1 em {
    font-style: normal;
    color: #D4AF6A;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 44px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: white;
    padding: 17px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(184,155,106,0.45);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(184,155,106,0.5);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: white;
    padding: 17px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: all 0.3s;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-3px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 1px;
    animation: floatUp 2.4s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.6));
}

@keyframes floatUp {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--charcoal);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.stat-item {
    text-align: center;
    padding: 10px 24px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-left: none; }

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
}

/* ─── SHARED LAYOUT ─── */
section { padding: 110px 0; }

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

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 18px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--mid);
    max-width: 580px;
    font-weight: 300;
    line-height: 1.8;
}

/* ─── ABOUT ─── */
.about-section { background: var(--white); }

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.about-badge {
    position: absolute;
    bottom: 32px;
    left: -28px;
    background: var(--gold);
    color: white;
    padding: 22px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(184,155,106,0.45);
}

.about-badge .big { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.about-badge .small { font-size: 0.85rem; font-weight: 500; opacity: 0.9; }

.about-text { padding: 10px 0; }

.about-text p {
    color: var(--mid);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.amenities {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--mid);
    font-weight: 400;
}

.amenity-icon {
    width: 38px;
    height: 38px;
    background: var(--sage-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.about-cta {
    margin-top: 40px;
}

/* ─── SPACES ─── */
.spaces-section { background: var(--cream); }

.spaces-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Space panels — alternating horizontal layout */
.space-panels { display: flex; flex-direction: column; gap: 6px; }

.space-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.space-panel:hover {
    box-shadow: 0 16px 56px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.space-panel.reverse { direction: ltr; }
.space-panel.reverse .space-panel-content { direction: rtl; }

.space-panel-img {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.space-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.space-panel:hover .space-panel-img img { transform: scale(1.05); }

.space-panel-content {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.space-tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    align-self: flex-start;
}

.space-panel-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.15;
}

.space-panel-desc {
    font-size: 0.95rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Feature chips */
.space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.space-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--mid);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* Price block */
.space-price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--charcoal);
    border-radius: 18px;
    margin-bottom: 20px;
}

.space-price-block .price-from {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.space-price-block .price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.space-price-block .price-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.space-price-block .price-unit {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
}

.space-price-block .price-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    margin-top: 2px;
}

.space-price-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.space-price-cta {
    margin-right: auto;
}

.space-price-block .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.space-price-block .btn-wa:hover {
    background: #1cb657;
    transform: translateY(-2px);
}

.space-price-block .price-request {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

/* ─── FEATURES ─── */
.features-section {
    background: var(--sage);
    padding: 110px 0;
}

.features-section .section-label { color: rgba(255,255,255,0.5); }
.features-section .section-title { color: white; }
.features-section .section-sub { color: rgba(255,255,255,0.65); }

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 24px;
}

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

.feature-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 38px;
    transition: all 0.35s ease;
    cursor: default;
}

.feature-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-emoji {
    font-size: 2.6rem;
    margin-bottom: 22px;
    display: block;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.75;
}

/* ─── QUOTE BAND ─── */
.quote-band {
    background: var(--gold-light);
    padding: 80px 0;
    text-align: center;
}

.quote-band blockquote {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.5;
}

.quote-band cite {
    display: block;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ─── FAQ SECTION ─── */
.faq-section {
    background: var(--cream);
    padding: 110px 0;
    border-top: 1px solid var(--border);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 22px;
    cursor: default;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.faq-answer {
    color: var(--mid);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── CONTACT ─── */
.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.contact-left { padding-top: 8px; }

.contact-info-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.ci-icon {
    width: 50px;
    height: 50px;
    background: var(--sage-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ci-text h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 5px;
}

.ci-text p, .ci-text a {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.ci-text a:hover { color: var(--gold); }

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

.wa-btn:hover {
    background: #1cb657;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37,211,102,0.4);
}

/* Contact Form */
.contact-form {
    background: var(--cream);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--charcoal);
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--mid);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: white;
    transition: border-color 0.3s, box-shadow 0.3s;
    direction: rtl;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,155,106,0.12);
}

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

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

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-family: 'Heebo', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184,155,106,0.4);
}

/* ─── FOOTER ─── */
footer {
    background: var(--charcoal);
    padding: 64px 0 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand .logo-f {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-nav h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav ul a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
}

.footer-nav ul a:hover { color: white; }

.footer-social h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.soc-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.soc-link:hover { background: var(--gold); transform: translateY(-3px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
}

.footer-by {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
}

.footer-by a {
    color: var(--gold);
    text-decoration: none;
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .container { padding: 0 24px; }
    section { padding: 72px 0; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
    .stat-item:nth-child(2) { border-left: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrap img { height: 360px; }
    .about-badge { left: 16px; bottom: 20px; }
    .amenities { grid-template-columns: 1fr; }

    .space-panel { grid-template-columns: 1fr; }
    .space-panel.reverse { direction: rtl; }
    .space-panel-img { min-height: 260px; }
    .space-panel-content { padding: 36px 28px; }
    .space-price-block { flex-wrap: wrap; gap: 14px; }
    .space-price-divider { display: none; }
    .space-price-cta { margin-right: 0; }

    .features-grid { grid-template-columns: 1fr 1fr; }
    .features-header { flex-direction: column; align-items: flex-start; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
}