* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DC2626;
    --secondary-color: #B91C1C;
    --tertiary-color: #991B1B;
    --accent-color: #EF4444;
    --accent-secondary: #F87171;
    --gold-color: #FCD34D;
    --platinum-color: #F9FAFB;
    --text-light: #ffffff;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-muted: #9CA3AF;
    --text-white: #ffffff;
    --bg-light: #FEF2F2;
    --bg-glass: rgba(255, 255, 255, 0.25);
    --bg-glass-dark: rgba(220, 38, 38, 0.1);
    --border-color: rgba(255, 255, 255, 0.3);
    --border-light: rgba(220, 38, 38, 0.2);
    --shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
    --shadow-hover: 0 16px 48px rgba(220, 38, 38, 0.25);
    --shadow-glow: 0 0 30px rgba(239, 68, 68, 0.4);
    --gradient-primary: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    --gradient-accent: linear-gradient(135deg, #EF4444 0%, #F87171 50%, #FCA5A5 100%);
    --gradient-gold: linear-gradient(135deg, #FCD34D 0%, #FDE047 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    --gradient-text: linear-gradient(135deg, #EF4444 0%, #F87171 50%, #FCA5A5 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(248, 113, 113, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(252, 211, 77, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: grain 20s linear infinite;
}

@keyframes grain {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    position: relative;
    animation: slideInUp 1s ease-out;
    margin-top: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: titleSlideIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 700;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 3rem;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-search {
    background: var(--gradient-glass);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: visible;
}

.hero-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.search-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-light);
    min-height: 60px;
}

.search-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.search-tab.active::before {
    opacity: 1;
    transform: scale(1);
}

.search-tab span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.search-tab.active span {
    color: var(--text-white);
}

.search-form {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
    min-height: 60px;
    position: relative;
    z-index: 5;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.destination-field {
    position: relative;
    z-index: 10;
    min-width: 200px;
}

.destination-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.destination-field.active .destination-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.destination-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-height: 300px;
    max-height: 400px;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.destination-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.destination-option {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
}

.destination-option:last-child {
    border-bottom: none;
}

.destination-option:hover {
    background: var(--gradient-accent);
    color: var(--text-white);
    transform: translateX(5px);
}

.destination-option:first-child {
    border-radius: 15px 15px 0 0;
}

.destination-option:last-child {
    border-radius: 0 0 15px 15px;
}

.search-field i {
    position: absolute;
    left: 15px;
    color: var(--accent-color);
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    color: var(--text-dark);
    min-height: 50px;
    box-sizing: border-box;
    cursor: pointer;
}

.search-input:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 
        0 0 0 4px rgba(233, 69, 96, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-dark);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: var(--text-white);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    min-height: 50px;
    font-size: 1rem;
    white-space: nowrap;
    justify-content: center;
    min-width: 120px;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(220, 38, 38, 0.4),
        0 0 25px rgba(239, 68, 68, 0.3);
}

.search-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 50px;
}

.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(220, 38, 38, 0.2),
        0 0 40px rgba(239, 68, 68, 0.15);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    animation: iconShine 0.6s ease-out;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.6;
    font-weight: 500;
    font-size: 1rem;
}

.popular-destinations {
    padding: 6rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.destination-card:hover::before {
    opacity: 0.1;
}

.destination-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(220, 38, 38, 0.25),
        0 0 40px rgba(239, 68, 68, 0.2);
}

.destination-card > * {
    position: relative;
    z-index: 2;
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--text-light);
}

.destination-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.destination-info p {
    margin-bottom: 1rem;
    opacity: 0.95;
    color: var(--text-white);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.destination-price {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.testimonial-card:hover::before {
    opacity: 0.03;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 45px rgba(220, 38, 38, 0.2),
        0 0 30px rgba(239, 68, 68, 0.15);
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: auto;
    }
    
    .destination-field {
        min-width: 100%;
    }
    
    .destination-dropdown {
        min-height: 250px;
        max-height: 350px;
    }
    
    .search-tabs {
        min-height: 50px;
    }
    
    .search-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .hero-image {
        height: 300px;
        border-radius: 15px;
        margin: 2rem 1rem 0;
        margin-top: 0;
    }
    
    .hero-image img {
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .destinations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-tabs {
        flex-direction: column;
        min-height: auto;
    }
    
    .search-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    .search-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 45px;
        min-width: 100px;
    }
    
    .search-input {
        min-height: 45px;
        font-size: 0.9rem;
    }
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-results i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.no-results p {
    font-size: 1.1rem;
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gradient-text {
    background: var(--gradient-accent);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-light);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.text-gradient {
    background: var(--gradient-accent);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

.shadow-soft {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.shadow-strong {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
}

/* Advanced 3D Effects */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
    transform: rotateY(8deg) rotateX(8deg) translateZ(30px);
    box-shadow: 
        0 25px 50px rgba(220, 38, 38, 0.2),
        0 0 40px rgba(239, 68, 68, 0.15);
}

.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.neon-glow {
    box-shadow: 
        0 0 5px var(--accent-color),
        0 0 10px var(--accent-color),
        0 0 15px var(--accent-color),
        0 0 20px var(--accent-color);
}

.text-shimmer {
    background: linear-gradient(
        135deg,
        var(--text-light) 0%,
        var(--accent-color) 50%,
        var(--text-light) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { 
        background-position: -200% 0;
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(180deg);
    }
    100% { 
        background-position: 200% 0;
        filter: hue-rotate(360deg);
    }
}

.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-hover:hover {
    transform: scale(1.08) translateZ(15px);
    box-shadow: 
        0 20px 40px rgba(220, 38, 38, 0.2),
        0 0 30px rgba(239, 68, 68, 0.15);
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.gradient-border {
    position: relative;
    background: var(--gradient-glass);
    border-radius: 20px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-accent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
    }
}

.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

.morphing-shape {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.morphing-shape:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

@keyframes morphing {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:active::before {
    width: 300px;
    height: 300px;
    background: rgba(239, 68, 68, 0.3);
}

/* Mica Travel Specific Styles */
.mica-group-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: #ffffff;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-left: 0.5rem;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.about-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.main-choices {
    padding: 6rem 0;
}

.choices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.choice-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.choice-card:hover::before {
    opacity: 0.05;
}

.choice-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(220, 38, 38, 0.2),
        0 0 40px rgba(239, 68, 68, 0.15);
}

.choice-card > * {
    position: relative;
    z-index: 2;
}

.choice-image {
    height: 250px;
    overflow: hidden;
}

.choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.choice-card:hover .choice-image img {
    transform: scale(1.1);
}

.choice-content {
    padding: 2rem;
}

.choice-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.choice-tagline {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.choice-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.choice-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.choice-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.choice-btn:hover::before {
    left: 100%;
}

.choice-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(220, 38, 38, 0.4),
        0 0 25px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.qr-code {
    text-align: center;
    margin-top: 1rem;
}

.qr-code img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.qr-code p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choice-content {
        padding: 1.5rem;
    }
    
    .choice-content h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 992px) {
    .search-form { grid-template-columns: 1fr 1fr; }
    .search-btn { grid-column: span 2; }
}

@media (max-width: 768px) {
    .search-form { grid-template-columns: 1fr; gap: 10px; }
    .search-btn { grid-column: span 1; }
    .search-tabs { flex-wrap: wrap; }
    .search-tab { flex: 1 1 50%; padding: 0.8rem; font-size: 0.9rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }
}

