/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    background: #0a1628;
    color: #f0f4f8;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== COLORS ========== */
:root {
    --midnight: #0a1628;
    --midnight-light: #111f38;
    --midnight-mid: #162544;
    --mint: #34d4b0;
    --mint-light: #5eead4;
    --mint-dark: #2bb89a;
    --sand: #f5e6c8;
    --white: #ffffff;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
}

.text-mint { color: var(--mint); }

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}
.nav-logo-icon { color: var(--mint); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
    transition: color 0.3s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width 0.3s;
}
.nav-menu a:hover { color: var(--mint); }
.nav-menu a:hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
    background: var(--mint);
    color: var(--midnight);
    border-color: var(--mint);
}
.btn-primary:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 212, 176, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--midnight);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(22, 37, 68, 0.7) 40%,
        rgba(52, 212, 176, 0.2) 100%
    );
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 22, 40, 0.3) 0%,
        transparent 50%,
        rgba(10, 22, 40, 0.8) 100%
    );
}
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    opacity: 0.15;
}
.shape-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--mint);
    top: -100px;
    right: -80px;
    filter: blur(60px);
}
.shape-circle-2 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--sand);
    bottom: 10%;
    left: 5%;
    filter: blur(40px);
}
.shape-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--mint);
    top: 20%;
    left: 8%;
    opacity: 0.08;
    transform: rotate(-15deg);
}
.shape-dots {
    width: 120px;
    height: 120px;
    bottom: 25%;
    right: 10%;
    background-image: radial-gradient(circle, var(--mint) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.3;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 212, 176, 0.15);
    border: 1px solid rgba(52, 212, 176, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--mint);
    margin-bottom: 28px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.stat {
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gray);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mint);
    background: rgba(52, 212, 176, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 520px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ========== INTRO ========== */
.intro {
    padding: 120px 0;
    background: var(--midnight);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-visual {
    position: relative;
}
.intro-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 6/7;
}
.intro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--mint);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
}
.intro-text .section-title { margin-top: 8px; }
.intro-text p {
    color: var(--gray-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.intro-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--white);
    font-size: 0.95rem;
}
.if-icon {
    width: 36px;
    height: 36px;
    background: rgba(52, 212, 176, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

/* ========== ROOMS ========== */
.rooms {
    padding: 120px 0;
    background: var(--midnight-light);
    position: relative;
    overflow: hidden;
}
.rooms-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--mint);
    opacity: 0.03;
    top: -100px;
    right: -100px;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.room-card {
    background: var(--midnight);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s, box-shadow 0.4s;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.room-card-img {
    position: relative;
    aspect-ratio: 14/10;
    overflow: hidden;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--mint);
    color: var(--midnight);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.room-card-body {
    padding: 28px;
}
.room-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.room-card-body p {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.room-amenities li {
    background: var(--midnight-mid);
    color: var(--gray-light);
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* ========== EXPERIENCE ========== */
.experience {
    padding: 120px 0;
    background: var(--midnight);
}
.exp-header {
    text-align: center;
    margin-bottom: 64px;
}
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.exp-card {
    background: var(--midnight-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
}
.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mint), var(--mint-light));
    opacity: 0;
    transition: opacity 0.4s;
}
.exp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 212, 176, 0.2);
}
.exp-card:hover::before { opacity: 1; }
.exp-card-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(52, 212, 176, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.exp-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(52, 212, 176, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    margin-bottom: 20px;
}
.exp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.exp-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ========== LOCATION ========== */
.location {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.location-bg {
    position: absolute;
    inset: 0;
}
.location-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(22, 37, 68, 0.85) 100%
    );
}
.location-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.location-details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.loc-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.loc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(52, 212, 176, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}
.loc-item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}
.loc-item p, .loc-item a {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}
.loc-item a:hover { color: var(--mint); }

/* ========== REVIEWS ========== */
.reviews {
    padding: 120px 0;
    background: var(--midnight-light);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.review-card {
    background: var(--midnight);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s;
}
.review-card:hover { transform: translateY(-6px); }
.review-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--mint), var(--mint-light), var(--sand));
}
.review-card-body {
    padding: 32px;
}
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--mint);
}
.review-card-body p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(52, 212, 176, 0.3);
}
.review-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}
.review-author span {
    color: var(--gray);
    font-size: 0.82rem;
}

/* ========== CTA ========== */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-mid) 50%, rgba(52, 212, 176, 0.15) 100%);
    position: relative;
    overflow: hidden;
}
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
.csa-1 {
    width: 300px;
    height: 300px;
    background: var(--mint);
    opacity: 0.06;
    top: -80px;
    left: -80px;
}
.csa-2 {
    width: 200px;
    height: 200px;
    background: var(--sand);
    opacity: 0.05;
    bottom: -60px;
    right: 10%;
}
.csa-3 {
    width: 120px;
    height: 120px;
    background: var(--mint-light);
    opacity: 0.08;
    top: 30%;
    right: 5%;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-text {
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
    background: var(--midnight);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-title { margin-top: 8px; }
.contact-info > p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.cd-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.cd-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(52, 212, 176, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}
.cd-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.cd-item p, .cd-item a {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}
.cd-item a:hover { color: var(--mint); }

/* FORM */
.contact-form-wrap {
    background: var(--midnight-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px;
}
.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--midnight);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(52, 212, 176, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(52, 212, 176, 0.1);
    border: 1px solid rgba(52, 212, 176, 0.3);
    border-radius: 12px;
    color: var(--mint);
    font-weight: 500;
    margin-top: 16px;
}
.form-success.show { display: flex; }

/* ========== FOOTER ========== */
.footer {
    background: var(--midnight);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}
.footer-logo svg { color: var(--mint); }
.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links strong, .footer-contact strong {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.footer-links a, .footer-contact a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--mint); }
.footer-contact p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--gray);
    font-size: 0.82rem;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--midnight);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.4s;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    .nav-menu.open { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-visual { order: -1; }
    .intro-img-wrap { aspect-ratio: 4/3; }
    .rooms-grid { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .contact-form-wrap { padding: 24px; }
}
