/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-brand span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 1rem 0 4rem;
    background: url('ghumakka_ai_website.png') 20% center/cover no-repeat, linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

.hero .container {
    position: relative;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.travel-quote {
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
    padding: 1rem 1.25rem;
    background: rgba(255, 165, 0, 0.15);
    border-left: 4px solid #ff9500;
    border-radius: 0 10px 10px 0;
    margin-bottom: 1rem;
    color: #ffcc66;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.quote-author {
    font-style: normal;
    font-weight: 700;
    color: #ffa500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Unified Search */
.unified-search {
    margin-bottom: 1.5rem;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dream-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
    background: white;
}

.dream-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.dream-input::placeholder {
    color: var(--text-light);
    font-size: 0.85rem;
}

.search-buttons {
    display: flex;
    gap: 0.75rem;
}

.surprise-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.surprise-btn:hover {
    background: linear-gradient(135deg, #d97706, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.search-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.search-btn:hover {
    background: var(--primary-color);
    color: white;
}

.icon-btn, .upload-btn {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover, .upload-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.icon-btn.recording {
    background: #ef4444;
    border-color: #ef4444;
    animation: pulse-recording 1s infinite;
}

@keyframes pulse-recording {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.image-preview {
    margin-top: 0.75rem;
    display: none;
}

.image-preview.active {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.image-preview .remove-image {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview .remove-image:hover {
    background: #dc2626;
}

.image-preview .image-name {
    color: var(--text-dark);
    font-size: 0.8rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Attractions */
.hero-attractions {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 0, 0, 0.1);
}

.attractions-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.attractions-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.attractions-grid-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.attractions-grid-hero .attraction-placeholder {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.attractions-grid-hero .attraction-placeholder p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.attractions-grid-hero .attraction-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.attractions-grid-hero .attraction-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.attractions-grid-hero .attraction-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.attractions-grid-hero .attraction-content {
    padding: 0;
    flex: 1;
}

.attractions-grid-hero .attraction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.attractions-grid-hero .attraction-header h3 {
    font-size: 1rem;
    flex: 1;
}

.header-actions {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.speak-btn, .share-btn {
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.speak-btn:hover, .share-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

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

.speak-btn.speaking {
    background: var(--primary-color);
    color: white;
}

.speak-btn.muted {
    background: #ef4444;
    color: white;
}

.know-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.know-more-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.know-more-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.story-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.story-btn:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: scale(1.05);
}

.story-btn[data-type="instagram"] {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.story-btn[data-type="instagram"]:hover {
    background: linear-gradient(135deg, #6a2c99, #d11818, #d49a3b);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.modal-body p {
    margin: 0;
}

.attractions-grid-hero .attraction-description {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.attractions-grid-hero .attraction-footer {
    padding-top: 0.5rem;
    border: none;
}

/* Loading Animation */
.loading-skeleton {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-title {
    height: 1.25rem;
    width: 70%;
    border-radius: 4px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 0.875rem;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-footer {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.skeleton-badge {
    height: 1.5rem;
    width: 4rem;
    border-radius: 20px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Fade in animation for loaded cards */
.attractions-grid-hero .attraction-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.attractions-grid-hero .attraction-card:nth-child(1) { animation-delay: 0.1s; }
.attractions-grid-hero .attraction-card:nth-child(2) { animation-delay: 0.2s; }
.attractions-grid-hero .attraction-card:nth-child(3) { animation-delay: 0.3s; }
.attractions-grid-hero .attraction-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Attractions Section */
.attractions {
    padding: 6rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.attraction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.attraction-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.attraction-distance {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.attraction-description {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.attraction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.attraction-category {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.attraction-rating {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.attraction-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.attraction-placeholder p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Waitlist Section */
.waitlist {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.waitlist-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.waitlist-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.waitlist-form button {
    white-space: nowrap;
}

.waitlist-note {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--primary-color);
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-dark);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-attractions {
        padding: 1.25rem;
    }

    .hero-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .travel-quote {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        text-align: left;
    }

    .quote-author {
        display: block;
        margin-top: 0.5rem;
    }

    .search-input-group {
        flex-wrap: wrap;
    }

    .dream-input {
        width: 100%;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .icon-btn, .upload-btn {
        padding: 0.5rem 0.6rem;
        font-size: 1rem;
    }

    .search-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .surprise-btn, .search-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .attractions-title {
        font-size: 1.2rem;
    }

    .attractions-subtitle {
        font-size: 0.8rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a:not(.btn-nav) {
        display: none;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .waitlist-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .btn {
        text-align: center;
    }

    .attractions-grid-hero .attraction-image {
        width: 70px;
        height: 70px;
    }

    .skeleton-image {
        width: 70px;
        height: 70px;
    }
}
