:root {
    --primary-color: #4285f4;
    --secondary-color: #34a853;
    --warning-color: #fbbc05;
    --danger-color: #ea4335;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
}

/* Brand Styling */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-logo {
    max-height: 40px;
    width: auto;
}

.brand-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Secondary Navigation */
.secondary-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.secondary-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Trip Gallery Styles */
.gallery-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Hero Search Container */
.hero-search-container {
    max-width: 650px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

.tab-btn {
    background: #3498db;
    border: none;
    color: white;
    padding: 14px 32px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    font-size: 0.95rem;
}

.tab-btn:first-child {
    border-radius: 8px 0 0 0;
    margin-right: 2px;
}

.tab-btn:last-child {
    border-radius: 0 8px 0 0;
}

.tab-btn.active {
    background: #2980b9;
    color: white;
}

.tab-btn:hover {
    background: #2980b9;
}

.hero-search-bar {
    background: white;
    border-radius: 0 0 8px 8px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 3px 3px 3px 20px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-icon {
    color: #6c757d;
    margin-right: 12px;
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 0;
    font-size: 1rem;
    outline: none;
    color: #495057;
}

.search-input::placeholder {
    color: #6c757d;
    font-size: 0.95rem;
}

.search-btn {
    background: #3498db;
    border: none;
    border-radius: 50px;
    padding: 14px 18px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.search-container {
    max-width: 600px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Category Badges */
.category-badges-section {
    background: #f8f9fa;
    margin-top: 0;
    padding-top: 0;
}

.category-badge {
    transition: all 0.3s ease;
    padding: 20px 10px 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 180px;
}

.category-badge:hover {
    transform: translateY(-5px);
}

.badge-circle {
    width: 100px;
    height: 100px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-badge:hover .badge-circle {
    background: #3367d6;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4);
}

.badge-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Old category card styles for backward compatibility */
.category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.destination-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 15px 15px;
}

/* Trip Cards */
.trip-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.trip-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.trip-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(66, 133, 244, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trip-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.trip-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Month Filters */
.month-filters .btn {
    margin: 0 5px 10px 0;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Auto-Sliding Banner Section */
.auto-banner-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.banner-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-content {
    position: relative;
    z-index: 3;
    padding: 40px 50px;
    flex: 1;
}

.banner-logo {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-logo .logo {
    width: 40px;
    height: 40px;
}

.banner-logo .logo-text {
    color: #4dabf7;
    font-weight: 600;
    font-size: 0.9rem;
}

.banner-title {
    color: #f9d71c;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-description {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 400px;
    line-height: 1.4;
}

.explore-btn {
    background: white;
    border: none;
    color: #333;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Escape Cards Carousel */
.escape-carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.escape-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4dabf7;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(77, 171, 247, 0.3);
    flex-shrink: 0;
}

.escape-prev {
    left: 10px;
}

.escape-next {
    right: 10px;
}

.escape-nav:hover {
    background: #339af0;
    transform: translateY(-50%) scale(1.1);
}

.escape-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.escape-cards-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.escape-cards-scroll {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
}

.escape-card-new {
    min-width: 300px;
    width: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.escape-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.escape-image-new {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.escape-content-new {
    padding: 22px 20px;
    text-align: center;
    background: white;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.escape-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.escape-price {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 600;
}

/* Old escape card styles for backward compatibility */
.escape-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.escape-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.escape-image {
    height: 150px;
    overflow: hidden;
}

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

/* Experts Contact Section */
.experts-contact-section {
    background: #f9d71c;
    color: #333;
    position: relative;
    overflow: hidden;
}

.experts-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100'%3E%3Cpath d='M0,50 Q250,10 500,50 T1000,50 L1000,100 L0,100 Z' fill='%23f3ca00' opacity='0.3'/%3E%3C/svg%3E") bottom/100% 100px no-repeat;
    z-index: 1;
}

.experts-contact-wrapper {
    position: relative;
    z-index: 2;
}

.experts-icon {
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto;
    color: #333;
}

.experts-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.experts-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0;
}

.experts-form {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-left: 20px;
}

@media (max-width: 991.98px) {
    .experts-form {
        margin-left: 0;
        margin-top: 30px;
    }
}

.experts-input,
.experts-select {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.experts-input:focus,
.experts-select:focus {
    background: white;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
    outline: none;
}

.experts-input::placeholder {
    color: #6c757d;
}

.experts-btn {
    background: #4285f4;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.experts-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

/* Old contact section styles for backward compatibility */
.contact-section {
    background: linear-gradient(135deg, var(--warning-color), #ff9800);
    color: var(--dark-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-steps-container {
    position: relative;
}

.connecting-lines {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    z-index: 1;
}

.yellow-process-card {
    background: #f9d71c;
    border: 3px solid #4dabf7;
    border-radius: 20px;
    padding: 30px 25px 60px;
    text-align: left;
    position: relative;
    height: 280px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.yellow-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-content {
    position: relative;
    z-index: 3;
}

.process-icon-new {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 0;
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 50'%3E%3Cpath d='M0,25 Q100,5 200,25 T400,25 L400,50 L0,50 Z' fill='%23e6c200' opacity='0.5'/%3E%3C/svg%3E") repeat-x;
    background-size: 400px 50px;
    z-index: 1;
}

.wave-pattern::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 30'%3E%3Cpath d='M0,15 Q75,0 150,15 T300,15 L300,30 L0,30 Z' fill='%23d4b000' opacity='0.6'/%3E%3C/svg%3E") repeat-x;
    background-size: 300px 30px;
}

/* Old process card styles for backward compatibility */
.process-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warning-color), #ff9800);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

/* Video Testimonials */
.video-testimonial {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(66, 133, 244, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 15px 15px;
    color: white;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Blog Cards */
.featured-blog {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

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

.blog-item {
    padding: 15px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.blog-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-container {
        margin: 0 20px;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-text {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .category-card {
        padding: 15px 10px !important;
    }
    
    .process-card {
        padding: 20px 15px;
    }
}

/* Custom Grid for 5 columns */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 992px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/* Utility Classes */
.text-warning {
    color: var(--warning-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Dream Trip Modal Styles */
.dream-trip-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.dream-trip-modal .modal-header {
    padding: 0;
}

.dream-trip-modal .btn-close {
    background: rgba(0,0,0,0.1) !important;
    border: none !important;
    font-size: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dream-trip-modal .btn-close:hover {
    opacity: 1;
    background: rgba(0,0,0,0.2) !important;
    transform: scale(1.05);
}

.dream-form-control {
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 15px 20px;
    font-size: 14px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.dream-form-control:focus {
    border-color: #4dabf7;
    box-shadow: 0 0 0 0.2rem rgba(77, 171, 247, 0.25);
    background: white;
}

.dream-form-prefix {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 25px 0 0 25px;
    color: #6c757d;
    font-size: 14px;
}

.input-group .dream-form-control {
    border-left: none;
    border-radius: 0 25px 25px 0;
}

.dream-submit-btn {
    background: #2c3e50;
    border: none;
    border-radius: 25px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dream-submit-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

@media (max-width: 768px) {
    .dream-trip-modal .modal-content {
        max-width: 350px;
        margin: 0 20px;
    }
}
