
.travel-section {
    position: relative;
  
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 25%, #fce7f3 50%, #fdf2f8 75%, #fff7ed 100%);
    padding: 20px 0;
}

/* Background Decorations */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background:url(../img/loader.svg);
    
    background-size: contain ;
    background-repeat: no-repeat;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background:url(../img/loader.svg);
    
    background-size: contain ;
    background-repeat: no-repeat;
    bottom: 20%;
    right: 10%;
    animation: bounce 4s ease-in-out infinite;
}

.circle-3 {
    width: 60px;
    height: 60px;
    background:url(../img/loader.svg);
    
    background-size: contain ;
    background-repeat: no-repeat;
    top: 50%;
    left: 20%;
    animation: pulse 3s ease-in-out infinite;
}

.circle-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #f97316, #ec4899);
    top: 30%;
    right: 15%;
    animation: rotate 8s linear infinite;
}

/* Main Content Styling */
.container {
    position: relative;
    z-index: 2;
}

.content-wrapper {
    padding-right: 2rem;
}

.gradient-text {
    background: #159C98;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
    line-height: 1.1;
}

.travel-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-30px);
}

.detail-item i {
    font-size: 1.2rem;
}

/* Limited Seats Badge */
.limited-seats-badge {
    display: inline-flex;
    align-items: center;
    background:#159C98;
    color: white;
    padding: 12px 10px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transform: scale(0.9);
    animation: pulse-glow 2s ease-in-out infinite;
}

.badge-text {
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 8px;
}

.book-now {
    color: #fce7f3;
    font-weight: 600;
}

/* Custom Button */
.btn-custom {
    background: #159C98;
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
    background: linear-gradient(45deg, #ea580c, #b91c1c);
}

.btn-custom i {
    transition: transform 0.3s ease;
}

.btn-custom:hover i {
    transform: scale(1.2);
}

/* Price Card */
.price-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #159C98;
    border-radius: 10px;
    z-index: -1;
    animation: gradient-border 3s ease-in-out infinite;
}

.price-header h3 {
    color:white;
    margin-bottom: 1rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color:white;
    margin: 0 5px;
}

.per-person {
    font-size: 1rem;
    color: white;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color:white;
}

/* Turkey Map */
.map-container {
    text-align: center;
    position: relative;
}

.turkey-map {
    position: relative;
    display: inline-block;
    font-size: 8rem;
    color: #f97316;
    filter: drop-shadow(0 10px 20px rgba(249, 115, 22, 0.3));
}

.map-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pin {
    position: absolute;
    color: #dc2626;
    font-size: 1.5rem;
    animation: pin-bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin:hover {
    transform: scale(1.3);
    color: #991b1b;
}

.pin-1 {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.pin-2 {
    top: 45%;
    left: 60%;
    animation-delay: 0.5s;
}

.pin-3 {
    top: 65%;
    left: 40%;
    animation-delay: 1s;
}

.pin::after {
    content: attr(data-location);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pin:hover::after {
    opacity: 1;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5); }
}

@keyframes gradient-border {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Animation Classes */
.animate-title {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(-30px);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding-right: 0;
        text-align: center;
    }
    
    .right-content {
        text-align: center;
    }
    
    .turkey-map {
        font-size: 6rem;
    }
    
    .circle-1, .circle-2 {
        display: none;
    }
    
    .circle-3 {
        width: 40px;
        height: 40px;
    }
    
    .circle-4 {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .gradient-text {
        font-size: 24px;
    }
    
    .turkey-map {
        font-size: 4rem;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 24px;
    }
}
