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

:root {
    --primary-color: #208CFF;
    --primary-dark: #1670D5;
    --primary-light: #E8F3FF;
    --secondary-color: #FFB800;
    --success-color: #00D084;
    --text-dark: #2C2E35;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-gray: #F9FAFB;
    --bg-light: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.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(--primary-color);
    border-color: var(--primary-color);
}

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

.btn--full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scroll {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

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

.nav__toggle,
.nav__close {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 140, 255, 0.85) 0%, rgba(22, 112, 213, 0.75) 100%);
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero__badge svg {
    fill: var(--secondary-color);
}

.hero__title {
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.hero__stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero__actions {
    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: 8px;
    color: white;
    font-size: 14px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Section Header */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section__title {
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* Tours Section */
.tours {
    padding: 120px 0;
    background: var(--bg-gray);
}

.tours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.tour-card--featured {
    border: 2px solid var(--primary-color);
}

.tour-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tour-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--success-color);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.tour-card__badge--popular {
    background: var(--secondary-color);
}

.tour-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card__tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.tour-card__title {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.tour-card__description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-card__features {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.feature svg {
    color: var(--primary-color);
}

.tour-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: auto;
}

.tour-card__price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tour-card__price-from {
    font-size: 14px;
    color: var(--text-gray);
}

.tour-card__price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.tour-card__price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.tour-card__price-label {
    font-size: 14px;
    color: var(--text-gray);
}

.tour-card__details {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.tour-card__details:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 120px 0;
}

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

.about__text {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about__features {
    margin: 40px 0;
}

.about__feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature-icon svg {
    color: var(--primary-color);
}

.about__feature-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.about__feature-text {
    color: var(--text-gray);
}

.about__badge {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
}

.about__badge img {
    width: 120px;
    height: auto;
}

.about__badge-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.about__video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 24px;
}

.about__video img {
    width: 100%;
}

.about__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(32, 140, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.about__play-btn:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

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

.about__stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.about__stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.about__stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Expect Section */
.expect {
    padding: 120px 0;
    background: var(--bg-gray);
}

.expect__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.expect__item {
    text-align: center;
}

.expect__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.expect__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.expect__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.expect__description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
}

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__zoom {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: var(--bg-gray);
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.reviews__stars {
    display: flex;
    gap: 4px;
}

.reviews__rating-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-card__name {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.review-card__meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-card__stars {
    color: var(--secondary-color);
    font-size: 14px;
}

.review-card__date {
    color: var(--text-light);
    font-size: 14px;
}

.review-card__text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-card__tour {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
}

.faq__grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border-color);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--primary-color);
}

.faq__question svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq__answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Booking Section */
.booking {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.booking__description {
    font-size: 1.125rem;
    margin: 24px 0 40px;
    opacity: 0.95;
}

.booking__features {
    margin-bottom: 40px;
}

.booking__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.booking__feature svg {
    flex-shrink: 0;
}

.booking__contact {
    margin-top: 40px;
}

.booking__contact p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.booking__phone {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
}

.booking__phone:hover {
    opacity: 0.8;
}

.booking__form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: white;
    padding-left: 4px;
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer__bottom-links a:hover {
    color: white;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-gray);
    transition: var(--transition);
}

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

.modal__header {
    margin-bottom: 32px;
}

.modal__title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.modal__subtitle {
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .booking__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        padding: 80px 40px;
        transition: var(--transition);
        align-items: flex-start;
        gap: 20px;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .nav__toggle,
    .nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .nav__close {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav__cta {
        width: 100%;
        text-align: center;
    }
    
    .hero__stats {
        gap: 32px;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .tours__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .reviews__slider {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .expect__grid {
        grid-template-columns: 1fr;
    }
    
    .booking__form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__stat-number {
        font-size: 2rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .modal__content {
        padding: 24px;
    }
    
    .tour-card__content {
        padding: 20px;
    }
    
    .about__badge {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-24 {
    margin-top: 24px;
}

