/* ===== CSS Variables & Reset ===== */
:root {
    --color-bg: #FEFCFA;
    --color-bg-alt: #F8F5F1;
    --color-bg-dark: #2C2825;
    --color-text: #3A3330;
    --color-text-light: #7A7068;
    --color-text-lighter: #A89E95;
    --color-accent: #C4A882;
    --color-accent-dark: #A68B6B;
    --color-accent-light: #E8D8C4;
    --color-rose: #D4A5A5;
    --color-rose-light: #F0DEDE;
    --color-sage: #A8B5A0;
    --color-sage-light: #DCE4D8;
    --color-white: #FFFFFF;
    --color-border: #E8E2DC;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(44, 40, 37, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 40, 37, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-white);
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}

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

.navbar.scrolled .nav-menu a {
    color: var(--color-text-light);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--color-text);
}

.nav-cta {
    padding: 10px 24px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50px !important;
}

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

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.navbar.scrolled .nav-cta {
    border-color: var(--color-accent) !important;
    color: var(--color-accent-dark) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--color-accent);
    color: var(--color-white) !important;
}

.nav-lang {
    font-size: 0.75rem !important;
    letter-spacing: 0.08em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-lang:hover {
    opacity: 1;
}

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

.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(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-text);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&h=1080&fit=crop&auto=format&q=85') center/cover no-repeat;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 40, 37, 0.35) 0%,
        rgba(44, 40, 37, 0.25) 50%,
        rgba(44, 40, 37, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== Why Choose Us / Features ===== */
.why-us {
    background: var(--color-bg);
}

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

.feature-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== Editing Styles ===== */
.styles-section {
    background: var(--color-bg-alt);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.style-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.style-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.style-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-card:hover .style-image img {
    transform: scale(1.05);
}

.style-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
}

.style-info {
    padding: 24px;
}

.style-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.style-info p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.styles-note {
    display: flex;
    gap: 16px;
    padding: 28px 32px;
    background: var(--color-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--color-accent);
}

.styles-note-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-top: 2px;
}

.styles-note-icon svg {
    width: 100%;
    height: 100%;
}

.styles-note p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.styles-note strong {
    color: var(--color-text);
}

.styles-note-secondary {
    margin-top: 10px;
    font-style: italic;
    color: var(--color-text-lighter) !important;
}

/* ===== Gallery Divider ===== */
.gallery-divider {
    overflow: hidden;
    padding: 0;
}

.gallery-row {
    display: flex;
    animation: galleryScroll 30s linear infinite;
}

.gallery-row img {
    flex-shrink: 0;
    width: 350px;
    height: 240px;
    object-fit: cover;
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1750px); }
}

/* ===== Pricing ===== */
.pricing-section {
    background: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card-featured {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    padding-top: 52px;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-from {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1;
}

.pricing-unit {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-sage);
    margin-top: 2px;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    font-style: italic;
    margin-bottom: 24px;
}

.pricing-card .btn {
    width: 100%;
}

/* ===== Team ===== */
.team-section {
    background: var(--color-bg-alt);
}

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

.team-image {
    position: relative;
}

.team-image img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
}

.team-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-accent-light);
    border-radius: var(--radius);
    z-index: -1;
}

.team-content .section-label {
    text-align: left;
}

.team-content .section-title {
    text-align: left;
}

.team-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-languages {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.team-languages-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-lighter);
    margin-bottom: 12px;
}

.team-language-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.language-tag {
    padding: 6px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ===== Booking Form ===== */
.booking-section {
    background: var(--color-bg);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.booking-info .section-label {
    text-align: left;
}

.booking-info .section-title {
    text-align: left;
}

.booking-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.booking-promise {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.promise-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-sage);
}

.booking-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A89E95' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.88rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    padding: 14px 18px;
    background: var(--color-sage-light);
    border-radius: var(--radius-sm);
}

.form-note-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-sage);
    margin-top: 1px;
}

.form-note span {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.form-success {
    display: none;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    padding: 20px 24px;
    background: var(--color-sage-light);
    border-radius: var(--radius-sm);
}

.form-success.visible {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--color-sage);
}

.form-success strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.form-success p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-white);
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent-light);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.4;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .team-layout {
        gap: 48px;
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--color-text) !important;
        font-size: 1rem;
    }

    .nav-cta {
        border-color: var(--color-accent) !important;
        color: var(--color-accent-dark) !important;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

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

    .feature-card {
        padding: 28px 24px;
    }

    .styles-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .team-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-image-accent {
        display: none;
    }

    .team-content .section-label,
    .team-content .section-title {
        text-align: center;
    }

    .team-text {
        text-align: center;
    }

    .team-languages {
        text-align: center;
    }

    .team-language-tags {
        justify-content: center;
    }

    .team-content .btn {
        display: block;
        text-align: center;
    }

    .booking-info .section-label,
    .booking-info .section-title {
        text-align: center;
    }

    .booking-text {
        text-align: center;
    }

    .booking-promise {
        align-items: center;
        margin-bottom: 16px;
    }

    .booking-form {
        padding: 28px 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .gallery-row img {
        width: 260px;
        height: 180px;
    }

    @keyframes galleryScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-1300px); }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== How It Works / Timeline ===== */
.how-it-works {
    background: var(--color-bg-alt);
}

.timeline {
    max-width: 640px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 28px;
    padding-bottom: 64px;
    position: relative;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2.5px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-accent);
    flex-shrink: 0;
}

.timeline-icon svg {
    width: 36px;
    height: 36px;
}

.timeline-step:not(:last-child) .timeline-marker::after {
    content: '';
    width: 3px;
    flex: 1;
    background: var(--color-accent-light);
    margin-top: 12px;
}

.timeline-content {
    padding-top: 14px;
}

.step-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.timeline-cta {
    text-align: center;
    margin-top: 56px;
}

.timeline-cta-note {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    margin-top: 16px;
    font-weight: 300;
}

/* ===== Form Tabs ===== */
.form-tabs {
    display: flex;
    border: 1.5px solid var(--color-accent-light);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 28px;
    background: transparent;
}

.form-tab {
    flex: 1;
    padding: 11px 20px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    color: var(--color-text-light);
}

.form-tab.active {
    background: var(--color-bg-dark);
    color: var(--color-bg);
}

.form-tab:hover:not(.active) {
    color: var(--color-text);
}

/* ===== Form Panels ===== */
.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
}

/* ===== Form Divider ===== */
.form-divider {
    height: 1px;
    background: var(--color-border);
    margin: 8px 0 24px;
}

/* ===== Location Row ===== */
.location-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.location-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.location-arrow {
    color: var(--color-text-lighter);
    flex-shrink: 0;
    margin-bottom: 12px;
}

.location-arrow svg {
    width: 24px;
    height: 24px;
}

/* ===== Consultation Picker ===== */
.consultation-picker-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 10px;
}

.consultation-picker {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.consultation-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.consultation-card:hover {
    border-color: var(--color-accent-light);
}

.consultation-card.active {
    border-color: var(--color-accent);
    background: var(--color-bg-alt);
}

.consultation-card-icon {
    width: 28px;
    height: 28px;
    color: var(--color-text-lighter);
    transition: var(--transition);
}

.consultation-card-icon svg {
    width: 100%;
    height: 100%;
}

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

.consultation-card-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

/* ===== Consultation Reveal ===== */
.consultation-reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.consultation-reveal.visible {
    max-height: 200px;
    opacity: 1;
}

/* ===== Timeline & Form Responsive ===== */
@media (max-width: 768px) {
    .timeline {
        max-width: 100%;
    }

    .timeline-step {
        gap: 20px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
    }

    .timeline-icon svg {
        width: 30px;
        height: 30px;
    }

    .location-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

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

    .location-arrow {
        margin-bottom: 0;
        text-align: center;
        transform: rotate(90deg);
        align-self: center;
    }

    .form-tab {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .consultation-picker {
        gap: 12px;
    }

    .consultation-card {
        padding: 16px 12px;
    }
}
