/* City Suggestion Dropdown for Destination */
.suggestion-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 260px;
    background: rgba(26, 15, 8, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.7);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.95);
    z-index: 1000;
    overflow-y: auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--cream);
    margin-top: 2px;
    pointer-events: auto;
}

.suggestion-item {
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
}
.suggestion-item:last-child {
    border-bottom: none;
}
.suggestion-item:hover, .suggestion-item.active {
    background: rgba(201, 169, 98, 0.12);
    color: var(--gold-light);
}
.suggestion-dropdown .no-results {
    padding: 18px;
    color: rgba(245,230,200,0.5);
    text-align: center;
}
#screen-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

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

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --glowColor {
    syntax: "<color>";
    initial-value: #c9a962;
}

@keyframes rotate {
    0% {
        --angle: 0deg;
        --glowColor: #c9a962;
    }

    100% {
        --angle: 360deg;
        --glowColor: #c9a962;
    }
}

:root {
    --gold-primary: #c9a962;
    --gold-light: #e8d5a3;
    --gold-dark: #8b7355;
    --cream: #f5e6c8;
    --brown-dark: #2a1810;
    --brown-medium: #4a3828;
    --glow-gold: rgba(201, 169, 98, 0.6);
    --size-default: 32px;
    --size-sm: 16px;
}

html,
body {
    height: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: #1a0f08;
    color: var(--cream);
}

/* Landing Section - First Screen */
.landing-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.landing-section .screen-content {
    max-width: 600px;
    margin: 0 auto;
}

.landing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.05) 70%,
            rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Fullscreen Form Overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #1a0f08;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-container {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
}

/* Form Navigation Controls */
.form-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    z-index: 10;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.5);
    background: rgba(26, 15, 8, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gold-primary);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.4), 0 0 30px rgba(201, 169, 98, 0.2);
    background: rgba(26, 15, 8, 0.8);
    transform: scale(1.05);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 4px rgba(201, 169, 98, 0.6));
    position: relative;
    z-index: 1;
}

.nav-btn.back-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-btn.back-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.screen.active {
    opacity: 1;
    visibility: visible;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.05) 70%,
            rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Darker overlay for Destination screen to improve text contrast */
#screen-7::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.35) 70%,
            rgba(0, 0, 0, 0.6) 100%);
}

#screen-8::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.35) 70%,
            rgba(0, 0, 0, 0.6) 100%);
}

.screen-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 20px 24px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Progress Bar - Premium Design */
.progress-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 0 18px 0;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.6s ease forwards;
}

/* Hide the inline divider */
.progress-container>div[style*="width:48px"] {
    display: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

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

.progress-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    box-shadow: 0 0 8px var(--glow-gold), 0 0 15px rgba(201, 169, 98, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 8px var(--glow-gold), 0 0 15px rgba(201, 169, 98, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 12px var(--glow-gold), 0 0 25px rgba(201, 169, 98, 0.5);
    }
}

.progress-bar {
    width: 100px;
    height: 4px;
    background: rgba(30, 20, 15, 0.8);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.25);
    position: relative;
    order: 1;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--glow-gold);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold-primary), 0 0 12px var(--glow-gold);
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 0.8;
    }
}

.progress-text {
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 1.2px;
    white-space: nowrap;
    text-transform: uppercase;
    opacity: 0.9;
    order: 2;
}

.progress-star {
    width: 16px;
    height: 16px;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 4px var(--glow-gold));
    animation: starTwinkle 2s ease-in-out infinite;
    order: 3;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 4px var(--glow-gold));
    }

    50% {
        transform: scale(1.1) rotate(10deg);
        filter: drop-shadow(0 0 8px var(--glow-gold)) drop-shadow(0 0 12px rgba(201, 169, 98, 0.4));
    }
}

.progress-star svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Typography */
h1 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: rgba(245, 230, 200, 0.85);
    margin-bottom: 24px;
    line-height: 1.5;
    font-style: italic;
}

.helper-text {
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    color: rgba(245, 230, 200, 0.6);
    margin-bottom: 20px;
    line-height: 1.4;
}

.inline-message {
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    color: rgba(245, 230, 200, 0.7);
    margin-top: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(245, 230, 200, 0.05);
}

.poetic-text {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    line-height: 1.8;
    color: var(--cream);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.5);
}

#screen-17 .poetic-text {
    margin-top: 60px;
}

.poetic-text p {
    margin-bottom: 20px;
}

/* Form Elements */
.input-group {
    position: relative;
    margin-bottom: 20px;
    z-index: 100;
}

.input-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--cream);
}

.text-input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    background: rgba(30, 20, 15, 0.7);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 8px;
    color: var(--cream);
    outline: none;
    transition: all 0.3s ease;
}

.text-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
}

.text-input::placeholder {
    color: rgba(245, 230, 200, 0.4);
}

/* ========================================
   FORM VALIDATION STYLES
   ======================================== */

/* Error state for inputs */
.text-input.input-error,
.phone-input-container:has(.input-error),
.email-input-container:has(.input-error) {
    border-color: #e74c3c;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
}

.phone-number.input-error,
.email-input.input-error {
    color: var(--cream);
}

/* Validation error message */
.validation-error {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(180, 50, 50, 0.85);
    border: 1px solid rgba(255, 100, 100, 0.6);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(180, 50, 50, 0.4);
    animation: errorFadeIn 0.3s ease;
}

.validation-error svg {
    flex-shrink: 0;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.validation-error span {
    line-height: 1.4;
}

@keyframes errorFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake animation for invalid inputs */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease;
}

/* Success state (optional - for when field is valid) */
.text-input.input-valid,
.phone-number.input-valid,
.email-input.input-valid {
    border-color: rgba(39, 174, 96, 0.6);
}

/* Phone Input */
.phone-input-container {
    display: flex;
    gap: 12px;
    background: rgba(30, 20, 15, 0.7);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 8px;
    padding: 4px;
    overflow: visible;
    transition: all 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
}

/* Country Code Selector */
.country-code-selector {
    position: relative;
    min-width: 120px;
}

.country-code-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--cream);
    background: transparent;
    border: none;
    border-right: 1px solid rgba(201, 169, 98, 0.3);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.country-code-button:hover {
    background: rgba(201, 169, 98, 0.1);
}

.country-code-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.country-code-dropdown.open + .country-code-button svg,
.country-code-button:focus svg {
    transform: rotate(180deg);
}

/* Country Code Dropdown */
.country-code-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 300px;
    max-height: 0;
    background: rgba(20, 15, 10, 0.98);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.country-code-dropdown.open {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

/* Country Search Input */
.country-search {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--cream);
    background: rgba(30, 20, 15, 0.7);
    border: none;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
    outline: none;
}

.country-search::placeholder {
    color: rgba(245, 230, 200, 0.4);
}

.country-search:focus {
    background: rgba(30, 20, 15, 0.9);
}

/* Country List */
.country-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px 0;
}

.country-list::-webkit-scrollbar {
    width: 8px;
}

.country-list::-webkit-scrollbar-track {
    background: rgba(30, 20, 15, 0.5);
}

.country-list::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 98, 0.4);
    border-radius: 4px;
}

.country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 169, 98, 0.6);
}

/* Country Item */
.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.country-item:hover {
    background: rgba(201, 169, 98, 0.15);
}

.country-flag {
    font-size: 24px;
    flex-shrink: 0;
}

.country-name {
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--cream);
}

.country-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.no-results {
    padding: 20px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(245, 230, 200, 0.5);
}

.phone-number {
    flex: 1;
    padding: 14px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--cream);
    background: transparent;
    border: none;
    outline: none;
}

.phone-number::placeholder {
    color: rgba(245, 230, 200, 0.4);
}

/* Trust Message - Separate from Validation Errors */
.input-hint.trust-message {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--gold-light);
}

.input-hint.trust-message::before {
    content: '●';
    font-size: 8px;
}

/* Keep general input-hint for other uses */
.input-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--gold-light);
}

.input-hint::before {
    content: '●';
    font-size: 8px;
}

/* Location Card */
.location-card {
    background: rgba(30, 20, 15, 0.7);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 12px;
    padding: 20px;
    color: var(--cream);
}

.location-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.location-value {
    font-size: 18px;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 98, 0.3);
    border: 1px solid rgba(201, 169, 98, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.change-btn {
    padding: 8px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.5);
    border-radius: 20px;
    color: var(--gold-light);
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.change-btn:hover {
    background: rgba(201, 169, 98, 0.2);
    border-color: var(--gold-primary);
}

/* Image Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 10px auto;
    max-width: 320px;
    width: 100%;
}

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

/* Auto 3 columns for grids with many items */
.card-grid.auto-cols {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* Force 2-column layout on Transportation (10), Food (13), and Attractions (15) screens */
#screen-10 .card-grid.auto-cols,
#screen-13 .card-grid.auto-cols,
#screen-15 .card-grid.auto-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
}

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    border: 2px solid rgba(201, 169, 98, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 98, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.image-card.selected {
    border-color: var(--gold-primary);
    box-shadow: 0 0 25px var(--glow-gold), 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 4px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.image-card .card-title {
    font-size: 11px;
    font-weight: 500;
    color: white;
    text-align: center;
    line-height: 1.2;
}

.image-card .card-subtitle {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 2px;
    line-height: 1.2;
}

.image-card .check-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 18px;
    height: 18px;
    background: var(--gold-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card.selected .check-indicator {
    opacity: 1;
}

.check-indicator svg {
    width: 12px;
    height: 12px;
    color: white;
}

/* List Cards */
.list-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(30, 20, 15, 0.6);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.list-card:hover {
    border-color: rgba(201, 169, 98, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.list-card.selected {
    border-color: var(--gold-primary);
    background: rgba(201, 169, 98, 0.15);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.25);
}

.list-card-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.list-card-content {
    flex: 1;
}

.list-card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.list-card-subtitle {
    font-size: 14px;
    color: rgba(245, 230, 200, 0.7);
    font-style: italic;
}

/* Option Pills */
.option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.option-pill {
    padding: 12px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    background: rgba(30, 20, 15, 0.4);
    border: 1px solid rgba(201, 169, 98, 0.5);
    border-radius: 30px;
    color: var(--cream);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.option-pill:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: rgba(201, 169, 98, 0.7);
    transform: translateY(-2px);
}

.option-pill.selected {
    background: rgba(201, 169, 98, 0.25);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.35);
    color: var(--gold-light);
}

/* Radio Options */
.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 1;
}

.radio-option:last-child {
    border-bottom: none;
}

.radio-option:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.radio-option::before {
    content: '●';
    font-size: 10px;
    color: var(--gold-primary);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.radio-option:hover::before {
    opacity: 0.8;
}

.radio-option.selected {
    color: var(--gold-light);
}

.radio-option.selected::before {
    opacity: 1;
    transform: scale(1.2);
}

/* Calendar */
.calendar-container {
    background: rgba(30, 20, 15, 0.75);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 16px;
    padding: 16px;
    margin: 15px auto;
    max-width: 320px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--cream);
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gold-light);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.calendar-nav:hover {
    color: var(--gold-primary);
}

.calendar-month {
    font-size: 18px;
    font-weight: 500;
    color: var(--cream);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekday {
    text-align: center;
    font-size: 12px;
    color: var(--gold-light);
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--cream);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 28px;
    min-height: 28px;
}

.calendar-day:hover {
    background: rgba(201, 169, 98, 0.2);
}

.calendar-day.selected {
    background: var(--gold-primary);
    color: var(--brown-dark);
    font-weight: 600;
}

.calendar-day.selected.weekend {
    background: var(--gold-primary);
    color: var(--brown-dark);
    font-weight: 600;
}

.calendar-day.in-range {
    background: rgba(201, 169, 98, 0.3);
    border-radius: 0;
}

.calendar-day.weekend {
    color: var(--gold-primary);
}

/* Textarea */
.textarea-container {
    position: relative;
    margin: 20px 0;
}

.form-textarea {
    width: 100%;
    min-height: 200px;
    padding: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    background: rgba(30, 20, 15, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 12px;
    color: var(--cream);
    outline: none;
    resize: none;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

.form-textarea::placeholder {
    color: rgba(245, 230, 200, 0.4);
}

.textarea-star {
    position: absolute;
    bottom: 16px;
    right: 16px;
    color: var(--gold-primary);
    opacity: 0.5;
}

/* Close form button on final screen */
.close-form-btn {
    margin-top: 50px;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.5);
}

.close-form-btn:hover {
    background: rgba(201, 169, 98, 0.3);
    border-color: var(--gold-primary);
}

.close-form-btn .btnInner {
    gap: 10px;
}

.close-form-btn svg {
    opacity: 0.8;
}

/* Email Input */
.email-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 20, 15, 0.7);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 8px;
    padding: 4px 16px;
}

.email-icon {
    color: var(--gold-primary);
    opacity: 0.7;
}

.email-input {
    flex: 1;
    padding: 14px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    background: transparent;
    border: none;
    color: var(--cream);
    outline: none;
}

.email-input::placeholder {
    color: rgba(245, 230, 200, 0.4);
}

/* Primary Button */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: none;
    background: none;
    position: relative;
    padding: 2px;
    text-decoration: none;
    transition: all 0.18s ease-in-out;
    transform: translate3d(0, 0, 0);
    width: 100%;
    max-width: 280px;
    margin: auto auto 40px;
    cursor: pointer;
}

.btn-primary:after,
.btn-primary:before {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 100px;
    background: radial-gradient(circle at 50% 50%, var(--glowColor) 0%, transparent 70%);
    z-index: 0;
    opacity: 0;
}

.btn-primary:before {
    filter: blur(15px);
    opacity: 0.6;
}

.btn-primary:after {
    opacity: 0.3;
}

/* Animated button effect */
.btn-primary.animated:after,
.btn-primary.animated:before {
    background-image: conic-gradient(from var(--angle) at 50% 50%, transparent 0%, transparent 33%, var(--glowColor) 50%, transparent 66%, transparent 100%);
    animation: rotate 2s infinite linear;
    opacity: 1;
}

.btn-primary.animated:before {
    filter: blur(15px);
    opacity: 0.8;
}

/* Disabled button state */
.btn-primary.btn-disabled,
.btn-primary:disabled {
    opacity: 1;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary.btn-disabled .btnInner,
.btn-primary:disabled .btnInner {
    /* background: linear-gradient(135deg, rgba(80, 60, 40, 0.9) 0%, rgba(60, 45, 30, 0.9) 100%) !important; */
    color: rgba(245, 230, 200, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.btn-primary.btn-disabled.animated:after,
.btn-primary.btn-disabled.animated:before,
.btn-primary:disabled.animated:after,
.btn-primary:disabled.animated:before {
    opacity: 0.25;
}

/* ========================================
   PREMIUM ORIGIN MAP WITH FADE-IN EFFECT
   ======================================== */

.location-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 280px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.9) 0%, rgba(42, 24, 16, 0.95) 100%);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 169, 98, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.location-card.map-visible {
    border-color: rgba(201, 169, 98, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(201, 169, 98, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Map container with premium fade-in + subtle zoom (95% → 100%) */
.location-map-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.location-card.map-visible .location-map-container {
    opacity: 1;
    transform: scale(1);
}

/* Map transition state for city change - fades out slightly */
.location-map-container.transitioning {
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.origin-map {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: rgba(30, 20, 15, 0.5);
}

/* Custom Leaflet tile styling - clean and bright */
.origin-map .leaflet-tile-pane {
    filter: none;
}

.origin-map .leaflet-control-zoom,
.origin-map .leaflet-control-attribution {
    display: none;
}

/* Light gradient overlay on map - dark at top and bottom for text readability */
.map-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to bottom,
            rgba(26, 15, 8, 0.7) 0%,
            rgba(26, 15, 8, 0.4) 15%,
            rgba(26, 15, 8, 0) 30%,
            rgba(26, 15, 8, 0) 65%,
            rgba(26, 15, 8, 0.6) 100%
        );
    pointer-events: none;
    z-index: 1;
}

/* Decorative corner accents */
.location-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-top: 1px solid rgba(201, 169, 98, 0.4);
    border-right: 1px solid rgba(201, 169, 98, 0.4);
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
    z-index: 3;
    pointer-events: none;
}

.location-card.map-visible::after {
    opacity: 1;
}

/* Location content overlay - clean styling with minimal background */
.location-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    background: linear-gradient(to top, rgba(26, 15, 8, 0.85) 0%, rgba(26, 15, 8, 0.6) 25%, rgba(26, 15, 8, 0.2) 50%, transparent 100%)
}

.location-label {
    font-size: 12px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 126px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
    /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1); */
}

.location-card.map-visible .location-label {
    opacity: 1;
    transform: translateY(0);
}

.location-value {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.location-card.map-visible .location-value {
    opacity: 1;
    transform: translateY(0);
}

.location-value span {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.location-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(201, 169, 98, 0.4), 0 0 40px rgba(201, 169, 98, 0.2);
    }
}

.change-btn {
    align-self: flex-start;
    padding: 12px 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.6);
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    margin-top: 18px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.location-card.map-visible .change-btn {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s, background 0.3s ease, border-color 0.3s ease;
}

.change-btn:hover {
    background: rgba(201, 169, 98, 0.25);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
    transform: translateY(-1px);
}

.change-btn:active {
    transform: translateY(0);
}

/* Custom map marker - gentle positioning (no bouncing or pulsing animations) */
.custom-map-marker {
    position: relative;
}

/* Marker wrapper and ripple effects */
.marker-wrapper {
    position: relative;
    width: 36px;
    height: 48px;
}

.marker-pin {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: markerFadeIn 0.6s ease-out forwards;
}

/* Gentle scale/fade animation for pin appearance - no bounce */
@keyframes markerFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Subtle glow pulse after pin appears */
.marker-pin.visible {
    animation: markerGentleGlow 3s ease-in-out infinite;
}

@keyframes markerGentleGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 8px rgba(201, 169, 98, 0.4));
    }
    50% {
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(201, 169, 98, 0.6));
    }
}

/* Ripple effect around marker */
@keyframes markerRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.8;
        border-width: 3px;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        border-width: 1px;
    }
}

.marker-ripple {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #c9a962;
    border-radius: 50%;
    z-index: 1;
    animation: markerRipple 2s ease-out infinite;
    pointer-events: none;
}

/* Loading state - premium spinner */
.location-card:not(.map-visible)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 2px solid rgba(201, 169, 98, 0.15);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

/* Detecting location text */
.location-card:not(.map-visible) .location-value span {
    font-size: 16px;
    color: rgba(245, 230, 200, 0.6);
    font-style: italic;
}

/* Corner decoration */
.corner-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
}

.location-card.map-visible .corner-decoration {
    opacity: 1;
}

.corner-tl {
    top: 12px;
    left: 12px;
    border-top: 1px solid rgba(201, 169, 98, 0.5);
    border-left: 1px solid rgba(201, 169, 98, 0.5);
}

/* Fallback mode styles - when location cannot be detected */
.location-card.fallback-mode .location-label {
    color: rgba(245, 230, 200, 0.6);
}

.location-card.fallback-mode .location-value span,
.location-value span.placeholder-text,
#detectedCity.placeholder-text {
    font-size: 18px;
    color: rgba(245, 230, 200, 0.5);
    font-style: italic;
    font-weight: 400;
}

/* Hide loading spinner in fallback mode */
.location-card.fallback-mode:not(.map-visible)::before {
    display: none;
}

/* Label icon styling */
.location-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Change button with icon */
.change-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-btn svg {
    flex-shrink: 0;
}

.btnInner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: var(--size-sm) var(--size-default);
    border-radius: 100px;
    color: var(--cream);
    font-weight: 500;
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    z-index: 2;
    transition: all 0.18s ease;
    background: rgba(26, 15, 8, 0.9);
    backdrop-filter: blur(10px);
    backface-visibility: hidden;
    border: 2px solid rgba(201, 169, 98, 0.6);
    box-shadow:
        0 0 20px rgba(201, 169, 98, 0.3),
        inset 0 0 20px rgba(201, 169, 98, 0.1);
}

.btn-primary:hover .btnInner {
    background: rgba(26, 15, 8, 0.95);
    border-color: rgba(201, 169, 98, 0.8);
    box-shadow:
        0 0 30px rgba(201, 169, 98, 0.5),
        inset 0 0 25px rgba(201, 169, 98, 0.15);
    color: var(--gold-light);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btnInner svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 4px var(--glowColor)) drop-shadow(0 0 8px var(--glowColor));
}

/* Spacer */
.spacer {
    flex: 1;
}

/* Intro Screen Special */
.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
    min-height: 100vh;
    min-height: 100dvh;
}

.intro-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Transition Screen */
.transition-screen .screen-content {
    justify-content: center;
}

/* Closing Screen */
.closing-content {
    justify-content: center;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.screen.active .animate-in,
.landing-section .animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.animate-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-delay-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-delay-5 {
    animation-delay: 0.5s;
    opacity: 0;
}

/* Scrollbar */
.screen-content::-webkit-scrollbar {
    width: 4px;
}

.screen-content::-webkit-scrollbar-track {
    background: transparent;
}

.screen-content::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 98, 0.3);
    border-radius: 2px;
}

/* Responsive - borders removed since both sections are now full width */

/* Loading state */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--cream);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile First - Small screens (default) */
@media (max-width: 480px) {
    .screen-content {
        padding: 20px 20px;
    }

    .intro-content {
        padding: 40px 20px;
        justify-content: center;
    }

    h1,
    .intro-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 17px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .poetic-text p {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .btn-primary {
        max-width: 260px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .btnInner {
        padding: 14px 28px;
        font-size: 20px;
    }

    .progress-container {
        padding: 0 0 14px 0;
        margin-bottom: 16px;
        gap: 8px;
    }

    .progress-bar {
        width: 80px;
    }

    .progress-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .progress-star {
        width: 14px;
        height: 14px;
    }

    .calendar-container {
        max-width: 100%;
        padding: 10px;
        margin: 10px 0;
    }

    .calendar-month {
        font-size: 14px;
    }

    .calendar-weekday {
        font-size: 10px;
        padding: 4px 0;
    }

    .calendar-day {
        font-size: 12px;
    }

    .card-grid {
        max-width: 280px;
        gap: 6px;
    }

    .image-card .card-title {
        font-size: 10px;
    }

    .image-card .card-subtitle {
        font-size: 8px;
    }
}

/* Medium Mobile Styles */
@media (min-width: 481px) and (max-width: 767px) {
    .intro-content {
        padding: 50px 30px;
    }

    h1,
    .intro-title {
        font-size: 34px;
    }

    .poetic-text p {
        font-size: 19px;
        line-height: 1.8;
    }

    .subtitle {
        font-size: 18px;
    }

    .btnInner {
        padding: 16px 32px;
        font-size: 21px;
    }
}

/* ========================================
           DESKTOP STYLES - CONSISTENT WIDTH
           ======================================== */

@media (min-width: 768px) {

    /* Main content container */
    .screen-content {
        padding: 80px 24px 40px;
        max-width: 540px;
        margin: 0 auto;
    }

    .landing-section .screen-content {
        max-width: 600px;
    }

    /* All direct children of screen-content get same width */
    .screen-content>* {
        width: 100%;
        max-width: 100%;
    }

    /* Typography - centered */
    h2,
    .subtitle,
    .poetic-text {
        text-align: center;
    }

    h1,
    .intro-title {
        font-size: 42px;
    }

    h2 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 17px;
    }

    .poetic-text p {
        font-size: 18px;
    }

    /* Form nav */
    .form-nav {
        padding: 20px 40px;
    }

    /* Button */
    .btn-primary {
        max-width: 300px;
    }

    .btnInner {
        padding: 14px 28px;
        font-size: 18px;
    }

    /* Progress bar */
    .progress-bar {
        width: 100px;
    }

    /* Input styling */
    .text-input {
        font-size: 16px;
        padding: 14px 16px;
    }

    .phone-input-container {
        padding: 4px;
    }

    .country-code-selector {
        min-width: 100px;
    }

    .country-code-button {
        padding: 12px 14px;
        font-size: 16px;
    }

    .country-code-dropdown {
        width: 280px;
    }

    .phone-number {
        padding: 12px 14px;
        font-size: 16px;
    }

    .email-input {
        font-size: 16px;
        padding: 12px;
    }

    .form-textarea {
        min-height: 120px;
        font-size: 16px;
        padding: 14px;
    }

    /* Card grid */
    .card-grid {
        max-width: 100%;
        gap: 10px;
    }

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

    .image-card .card-title {
        font-size: 11px;
    }

    .image-card .card-subtitle {
        font-size: 9px;
    }

    /* List cards */
    .list-card {
        padding: 12px;
        gap: 12px;
    }

    .list-card img {
        width: 60px !important;
        height: 60px !important;
    }

    .list-card-title {
        font-size: 16px;
    }

    .list-card-subtitle {
        font-size: 12px;
    }

    /* Calendar */
    .calendar-container {
        max-width: 100%;
        padding: 14px;
    }

    /* Option pills */
    .option-pill {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Radio options */
    .radio-option {
        font-size: 16px;
        padding: 10px 0;
    }
}

/* ========================================
           LARGE DESKTOP (1200px+)
           ======================================== */
@media (min-width: 1200px) {
    .screen-content {
        width: 600px;
        padding: 80px 30px 50px;
    }

    .landing-section .screen-content {
        max-width: 680px;
    }

    h1,
    .intro-title {
        font-size: 48px;
    }

    h2 {
        font-size: 30px;
    }

    .subtitle {
        font-size: 19px;
    }

    .poetic-text p {
        font-size: 20px;
    }

    /* Button */
    .btn-primary {
        max-width: 340px;
    }

    .btnInner {
        padding: 16px 34px;
        font-size: 20px;
    }

    /* Progress */
    .progress-bar {
        width: 110px;
    }

    /* Inputs */
    .text-input {
        font-size: 18px;
        padding: 16px 18px;
    }

    .country-code,
    .phone-number {
        font-size: 18px;
        padding: 14px 16px;
    }

    .email-input {
        font-size: 18px;
        padding: 14px;
    }

    .form-textarea {
        min-height: 140px;
        font-size: 18px;
        padding: 16px;
    }

    /* Card grid */
    .card-grid {
        gap: 12px;
    }

    .image-card .card-title {
        font-size: 12px;
    }

    .image-card .card-subtitle {
        font-size: 10px;
    }

    /* List cards */
    .list-card {
        padding: 14px;
        gap: 14px;
    }

    .list-card img {
        width: 70px !important;
        height: 70px !important;
    }

    .list-card-title {
        font-size: 17px;
    }

    .list-card-subtitle {
        font-size: 13px;
    }

    /* Calendar */
    .calendar-container {
        padding: 18px;
    }

    /* Option pills */
    .option-pill {
        padding: 12px 22px;
        font-size: 15px;
    }

    /* Radio options */
    .radio-option {
        font-size: 17px;
        padding: 12px 0;
    }
}