/* Tatil Sitesi Teması - Renk Paleti */
:root {
    --tropical-blue: #1e90ff;
    --ocean-deep: #0066cc;
    --sand-warm: #f4d03f;
    --coral-orange: #ff6b35;
    --palm-green: #27ae60;
    --sunset-pink: #e74c3c;
    --sky-light: #87ceeb;
    --beach-cream: #fdf2e9;
    --wave-blue: #3498db;
    --sunny-yellow: #f1c40f;
    --background-dark: #0c1e35;
    --background-light: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --accent-gold: #f39c12;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, 
        var(--tropical-blue) 0%, 
        var(--ocean-deep) 25%, 
        var(--sky-light) 50%, 
        var(--sunset-pink) 75%, 
        var(--coral-orange) 100%);
    background-size: 400% 400%;
    animation: oceanWave 15s ease-in-out infinite;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Okyanus Dalga Animasyonu */
@keyframes oceanWave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Tatil Temalı Parallax Arka Plan */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(39, 174, 96, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(244, 208, 63, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, 
            rgba(30, 144, 255, 0.1) 0%, 
            rgba(0, 102, 204, 0.1) 25%, 
            rgba(135, 206, 235, 0.1) 50%, 
            rgba(231, 76, 60, 0.1) 75%, 
            rgba(255, 107, 53, 0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Scroll Progress Bar - Tatil Teması */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--tropical-blue), 
        var(--coral-orange), 
        var(--sunny-yellow), 
        var(--palm-green));
    z-index: 1000;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Header - Tatil Teması */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--tropical-blue);
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.2);
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.3);
    transform: translateY(-2px);
}

header h1 {
    color: var(--tropical-blue);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

header nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

header nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

header nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

header nav a:hover::before {
    left: 100%;
}

header nav a:hover {
    color: var(--tropical-blue);
    background: rgba(30, 144, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

/* Content - Tatil Teması */
.content {
    margin-top: 140px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Ana Başlık - Tatil Teması */
#main-title {
    color: var(--beach-cream);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(45deg, 
        var(--tropical-blue), 
        var(--coral-orange), 
        var(--sunny-yellow), 
        var(--palm-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

#main-title::after {
    content: '🏖️✈️🌴';
    position: absolute;
    top: -20px;
    right: -60px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Ürün Grid - Tatil Teması */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Ürün Kartları - Tatil Teması */
.product {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.product.visible {
    opacity: 1;
    transform: translateY(0);
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--tropical-blue), 
        var(--coral-orange), 
        var(--sunny-yellow), 
        var(--palm-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product:hover::before {
    transform: scaleX(1);
}

.product:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.3);
    border-color: var(--tropical-blue);
}

.product-name {
    color: var(--tropical-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.product-price {
    color: var(--coral-orange);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.add-to-cart {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    margin-right: 1rem;
}

.add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

.product-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--tropical-blue);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.product-select:focus {
    outline: none;
    border-color: var(--coral-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.child-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--palm-green);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.child-select:focus {
    outline: none;
    border-color: var(--sunny-yellow);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.3);
}

/* Sayfa Kontrolleri - Tatil Teması */
.page-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.page-controls.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-btn {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.page-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#page-info {
    color: var(--beach-cream);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sepet Butonu - Tatil Teması */
#cart-menu {
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 1000;
}

#cart-btn {
    background: linear-gradient(45deg, var(--sunny-yellow), var(--coral-orange));
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 14px;
    min-width: 140px;
    justify-content: center;
}

#cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.5);
    background: linear-gradient(45deg, var(--coral-orange), var(--sunny-yellow));
}

#cart-btn span:first-child {
    font-size: 18px;
    vertical-align: middle;
}

#cart-count {
    background: linear-gradient(45deg, var(--coral-orange), var(--sunset-pink));
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    padding: 3px 8px;
    min-width: 20px;
    text-align: center;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Kelebek Animasyonları - Tatil Teması */
.butterfly {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 10;
}

.butterfly::before,
.butterfly::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 36px;
    background: linear-gradient(45deg, 
        var(--sunny-yellow), 
        var(--coral-orange), 
        var(--sunset-pink));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flap 0.5s ease-in-out infinite alternate;
}

.butterfly::after {
    left: 20px;
    animation-delay: 0.25s;
}

@keyframes flap {
    0% { transform: scaleY(1) rotate(0deg); }
    100% { transform: scaleY(0.3) rotate(5deg); }
}

/* Kelebek Uçuş Yolları - Tatil Teması */
.butterfly1 { animation: fly1 20s linear infinite; }
.butterfly2 { animation: fly2 25s linear infinite; }
.butterfly3 { animation: fly3 18s linear infinite; }
.butterfly4 { animation: fly4 22s linear infinite; }
.butterfly5 { animation: fly5 30s linear infinite; }
.butterfly6 { animation: fly1 24s linear infinite; }
.butterfly7 { animation: fly2 28s linear infinite; }
.butterfly8 { animation: fly3 21s linear infinite; }
.butterfly9 { animation: fly4 26s linear infinite; }
.butterfly10 { animation: fly5 32s linear infinite; }

@keyframes fly1 {
    0% { left: -50px; top: 20%; }
    25% { left: 25%; top: 40%; }
    50% { left: 50%; top: 60%; }
    75% { left: 75%; top: 30%; }
    100% { left: 110%; top: 50%; }
}

@keyframes fly2 {
    0% { left: -50px; top: 60%; }
    25% { left: 30%; top: 20%; }
    50% { left: 60%; top: 80%; }
    75% { left: 80%; top: 40%; }
    100% { left: 110%; top: 70%; }
}

@keyframes fly3 {
    0% { left: -50px; top: 40%; }
    25% { left: 20%; top: 80%; }
    50% { left: 40%; top: 20%; }
    75% { left: 70%; top: 60%; }
    100% { left: 110%; top: 30%; }
}

@keyframes fly4 {
    0% { left: -50px; top: 80%; }
    25% { left: 35%; top: 30%; }
    50% { left: 55%; top: 70%; }
    75% { left: 85%; top: 20%; }
    100% { left: 110%; top: 60%; }
}

@keyframes fly5 {
    0% { left: -50px; top: 30%; }
    25% { left: 15%; top: 70%; }
    50% { left: 45%; top: 40%; }
    75% { left: 75%; top: 80%; }
    100% { left: 110%; top: 20%; }
}

/* Sepet Sayfası Stilleri - Tatil Teması */
.cart-list {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cart-list.visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-empty {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-style: italic;
    padding: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(30, 144, 255, 0.2);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(30, 144, 255, 0.05);
    border-radius: 10px;
}

.cart-item-name {
    flex: 1;
    color: var(--tropical-blue);
    font-weight: 600;
}

.cart-item-btn {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cart-item-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.cart-item-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-item-remove {
    background: linear-gradient(45deg, var(--sunset-pink), var(--coral-orange));
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cart-total {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cart-total.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.nav-btns.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-btn {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

/* İletişim Sayfası - Tatil Teması */
.contact-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-box:hover {
    border-color: var(--tropical-blue);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.3);
}

.contact-box h3 {
    color: var(--tropical-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Ana Sayfa Butonu - Tatil Teması */
#home-btn {
    position: absolute;
    top: 18px;
    right: 32px;
    z-index: 3;
}

#home-btn a {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    display: inline-block;
}

#home-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

/* Hakkımızda Sayfası - Tatil Teması */
#about-title {
    color: var(--beach-cream);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(45deg, 
        var(--tropical-blue), 
        var(--coral-orange), 
        var(--sunny-yellow), 
        var(--palm-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.about-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-box:hover {
    border-color: var(--tropical-blue);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.about-box h3 {
    color: var(--tropical-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-box ul {
    list-style: none;
    padding: 0;
}

.about-box li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.about-box li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--palm-green);
}

/* Destinasyonlar */
.destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.destination-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.destination-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.destination-item:hover {
    background: rgba(30, 144, 255, 0.2);
    transform: translateY(-3px);
}

.dest-icon {
    font-size: 1.5rem;
}

/* İstatistikler */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Tasarım - Tatil Teması */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
        margin-top: 100px;
    }
    
    #main-title {
        font-size: 2.5rem;
    }
    
    .products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product {
        padding: 1.5rem;
    }
    
    header {
        padding: 0.8rem 1rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    header nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Mobil Sepet Butonu */
    #cart-menu {
        bottom: 10px;
        right: 15px;
    }
    
    #cart-btn {
        padding: 0.6rem 1rem;
        font-size: 12px;
        min-width: 120px;
        gap: 0.4rem;
    }
    
    #cart-btn span:first-child {
        font-size: 16px;
    }
    
    #cart-count {
        font-size: 10px;
        padding: 2px 6px;
        min-width: 18px;
        top: -6px;
        right: -6px;
        border: 1px solid white;
    }
}

/* Animasyon Sınıfları */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Float Animasyonu - Tatil Teması */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Glow Efekti - Tatil Teması */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(30, 144, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(30, 144, 255, 0.6); }
}

/* Slide In Animasyonu - Tatil Teması */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Scale Animasyonu - Tatil Teması */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ana Sayfa Üst Butonları - Tatil Teması */
#top-buttons {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

#top-buttons a {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 144, 255, 0.3);
    display: inline-block;
}

#top-buttons a:first-child {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    box-shadow: 0 2px 10px rgba(30, 144, 255, 0.3);
}

#top-buttons a:last-child {
    background: linear-gradient(45deg, var(--palm-green), var(--sunny-yellow));
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.3);
}

#top-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

#top-buttons a:first-child:hover {
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

#top-buttons a:last-child:hover {
    background: linear-gradient(45deg, var(--sunny-yellow), var(--palm-green));
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

/* Giriş ve Kayıt Butonları - Tatil Teması */
#top-buttons a:nth-child(3) {
    background: linear-gradient(45deg, var(--palm-green), var(--sky-light));
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.3);
    opacity: 1;
    cursor: pointer;
}

#top-buttons a:nth-child(3):hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    background: linear-gradient(45deg, var(--sky-light), var(--palm-green));
}

#top-buttons a:nth-child(4) {
    background: linear-gradient(45deg, var(--sunset-pink), var(--coral-orange));
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
    opacity: 1;
    cursor: pointer;
}

#top-buttons a:nth-child(4):hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--sunset-pink));
}

/* Giriş ve Kayıt Sayfaları - Tatil Teması */
#login-title, #register-title {
    color: var(--beach-cream);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(45deg, 
        var(--tropical-blue), 
        var(--coral-orange), 
        var(--sunny-yellow), 
        var(--palm-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

.login-section, .register-section {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.login-section.visible, .register-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.login-box, .register-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.login-box.visible, .register-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.login-box:hover, .register-box:hover {
    border-color: var(--tropical-blue);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.login-box h3, .register-box h3 {
    color: var(--tropical-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.login-box p, .register-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.login-form, .register-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.form-group.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--tropical-blue);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
    outline: none;
    border-color: var(--coral-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--tropical-blue);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.login-btn, .register-btn {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.login-btn:hover, .register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

.login-info, .register-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.login-info p, .register-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.login-info a, .register-info a {
    color: var(--tropical-blue);
    text-decoration: none;
    font-weight: 600;
}

.login-info a:hover, .register-info a:hover {
    text-decoration: underline;
}

.demo-info {
    background: linear-gradient(45deg, var(--sunny-yellow), var(--coral-orange));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.demo-info h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.demo-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.demo-info strong {
    color: #fff;
    font-weight: 800;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.demo-info em {
    font-style: italic;
    opacity: 1;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Responsive Tasarım - Tatil Teması */

/* Ödeme Bölümü - Tatil Teması */
.payment-section {
    max-width: 800px;
    margin: 2rem auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.payment-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.payment-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.payment-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.payment-box:hover {
    border-color: var(--tropical-blue);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.payment-box h3 {
    color: var(--tropical-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.payment-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.payment-form {
    margin-bottom: 2rem;
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}



.payment-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.payment-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Responsive Tasarım - Ödeme */
@media (max-width: 768px) {
    .card-details {
        grid-template-columns: 1fr;
    }
    
    .payment-box {
        padding: 2rem;
    }
    
    .payment-box h3 {
        font-size: 1.5rem;
    }
}

/* İletişim Sayfası - Modern Tatil Teması */
#contact-title {
    color: var(--beach-cream);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(45deg, 
        var(--tropical-blue), 
        var(--coral-orange), 
        var(--sunny-yellow), 
        var(--palm-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

.contact-section {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.contact-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-box:hover {
    border-color: var(--tropical-blue);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.contact-box h3 {
    color: var(--tropical-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.contact-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.2);
    border-color: var(--tropical-blue);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    padding: 0.5rem;
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
}

.contact-details h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

.contact-details a {
    color: var(--tropical-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--coral-orange);
    text-decoration: underline;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(30, 144, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--tropical-blue), var(--coral-orange));
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    opacity: 1;
    transform: translateY(0);
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, var(--coral-orange), var(--tropical-blue));
}

.feature-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.feature-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Responsive Tasarım - İletişim */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-box {
        padding: 2rem;
    }
    
    .contact-box h3 {
        font-size: 1.5rem;
    }
    
    #contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-features {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
}

/* Yürüyüş Rotaları Sayfası - Tatil Teması */
#trails-title {
    color: var(--beach-cream);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(45deg, 
        var(--tropical-blue), 
        var(--coral-orange), 
        var(--sunny-yellow), 
        var(--palm-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

.trails-section {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.trails-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.trails-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.trails-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.trails-box:hover {
    border-color: var(--tropical-blue);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.trails-box h3 {
    color: var(--tropical-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.trails-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.trails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 20px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.trail-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.trail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(30, 144, 255, 0.2);
    border-color: var(--tropical-blue);
}

.trail-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    border-radius: 15px;
    color: white;
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.3);
}

.trail-details h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
}

.trail-details p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.trail-details strong {
    color: var(--tropical-blue);
    font-weight: 600;
}

.trail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.trail-features span {
    background: linear-gradient(45deg, var(--palm-green), var(--sky-light));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.trails-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(30, 144, 255, 0.1);
}

.trails-info h4 {
    color: var(--tropical-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--tropical-blue), var(--coral-orange));
    border-radius: 15px;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    opacity: 1;
    transform: translateY(0);
}

.guide-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.guide-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, var(--coral-orange), var(--tropical-blue));
}

.guide-icon {
    font-size: 1.8rem;
}

/* Responsive Tasarım - Yürüyüş Rotaları */
@media (max-width: 768px) {
    .trails-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trails-box {
        padding: 2rem;
    }
    
    .trails-box h3 {
        font-size: 1.5rem;
    }
    
    #trails-title {
        font-size: 2.5rem;
    }
    
    .trail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .trail-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .guide-features {
        grid-template-columns: 1fr;
    }
}

/* Harita Bölümü - Yürüyüş Rotaları */
.map-container {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 20px;
    border: 2px solid rgba(30, 144, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.map-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-container h4 {
    color: var(--tropical-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: linear-gradient(45deg, var(--palm-green), var(--sky-light));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.map-info p {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.map-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-info li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Rota Butonları */
.trail-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trail-btn {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
    flex: 1;
    min-width: 150px;
}

.trail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

.map-btn {
    background: linear-gradient(45deg, var(--palm-green), var(--sky-light));
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.map-btn:hover {
    background: linear-gradient(45deg, var(--sky-light), var(--palm-green));
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
}

/* Harita Modal */
.map-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.map-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.map-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
}

.map-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.map-modal-body {
    padding: 0;
}

.modal-map {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 0 0 20px 20px;
}

/* Modal Animasyonları */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Tasarım - Modal */
@media (max-width: 768px) {
    .map-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .map-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .map-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-map {
        height: 400px;
    }
    
    .trail-buttons {
        flex-direction: column;
    }
    
    .trail-btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .map-modal-content {
        width: 98%;
        margin: 5% auto;
    }
    
    .modal-map {
        height: 300px;
    }
}

/* Rota Resimleri */
.trail-image {
    width: 100%;
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.trail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trail-image:hover img {
    transform: scale(1.05);
}

.trail-item {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 20px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
}

.trail-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.trail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(30, 144, 255, 0.2);
    border-color: var(--tropical-blue);
}

.trail-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}

/* Responsive Tasarım - Rota Resimleri */
@media (max-width: 768px) {
    .trail-image {
        height: 150px;
    }
    
    .trail-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .trail-icon {
        align-self: center;
    }
}

/* İstanbul Sayfası Stilleri */
.istanbul-section {
    padding: 2rem 0;
}

.istanbul-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(30, 144, 255, 0.1);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.1);
}

#istanbul-title {
    color: var(--tropical-blue);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

#istanbul-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.istanbul-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Tarih Zaman Çizelgesi */
.history-timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid var(--tropical-blue);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.timeline-content h3 {
    color: var(--tropical-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.timeline-content p {
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.8);
}

/* İstanbul Özellikleri */
.istanbul-features {
    margin: 3rem 0;
}

.istanbul-features h3 {
    color: var(--tropical-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
    border-color: var(--tropical-blue);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    color: var(--tropical-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-item p {
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.8);
}

/* İstanbul Turları */
.istanbul-tours {
    margin: 3rem 0;
}

.istanbul-tours h3 {
    color: var(--tropical-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tour-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tour-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
    border-color: var(--tropical-blue);
}

.tour-item h4 {
    color: var(--tropical-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.tour-item p {
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.8);
}

.tour-btn {
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
}

.tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4);
    background: linear-gradient(45deg, var(--coral-orange), var(--tropical-blue));
}

/* Responsive Tasarım - İstanbul Sayfası */
@media (max-width: 768px) {
    .istanbul-box {
        padding: 1.5rem;
    }
    
    #istanbul-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-icon {
        align-self: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item,
    .tour-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    #istanbul-title {
        font-size: 1.5rem;
    }
    
    .istanbul-intro {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 3rem;
        font-style: italic;
        font-weight: 500;
        text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.8);
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .istanbul-features h3,
    .istanbul-tours h3 {
        font-size: 1.5rem;
    }
}

/* Tur Modal Stilleri */
.tour-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.tour-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    margin: 11% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 10000;
}

.tour-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(45deg, var(--tropical-blue), var(--coral-orange));
    color: white;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.tour-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.tour-modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

#tourModalContent {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

#tourModalContent p {
    margin-bottom: 1rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.8);
}

#tourModalContent strong {
    color: var(--tropical-blue);
    font-weight: 700;
}

/* Responsive Tasarım - Tur Modal */
@media (max-width: 768px) {
    .tour-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 80vh;
    }
    
    .tour-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .tour-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .tour-modal-body {
        padding: 1.5rem;
        max-height: 75vh;
    }
    
    #tourModalContent {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tour-modal-content {
        width: 98%;
        margin: 3% auto;
        max-height: 85vh;
    }
    
    .tour-modal-body {
        padding: 1rem;
        max-height: 80vh;
    }
    
    #tourModalContent {
        font-size: 0.95rem;
    }
}

/* Kayak Merkezleri Sayfası Stilleri */
#ski-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.ski-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ski-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.ski-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.ski-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ski-box p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ski-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.ski-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

.ski-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.ski-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.ski-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.ski-details h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ski-details p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.ski-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.ski-features span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ski-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ski-btn {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ski-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.map-btn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.map-btn:hover {
    background: linear-gradient(135deg, #f5576c, #f093fb);
}

/* Kayak Merkezi Modal Stilleri */
.ski-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.ski-modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 11% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.ski-modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.ski-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.ski-modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.ski-modal-body p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: none;
}

.ski-modal-body strong {
    color: #667eea;
    font-weight: 700;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .ski-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ski-item {
        padding: 1rem;
    }
    
    .ski-buttons {
        flex-direction: column;
    }
    
    .ski-modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .ski-modal-body {
        max-height: 60vh;
        padding: 1.5rem;
    }
    
    .ski-modal-header {
        padding: 1rem;
    }
    
    .ski-modal-header h3 {
        font-size: 1.1rem;
    }
}

/* Kapadokya Sayfası Stilleri */
#kapadokya-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #8B4513, #D2691E);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.kapadokya-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.kapadokya-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.kapadokya-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.kapadokya-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.kapadokya-box p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.kapadokya-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.kapadokya-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

.kapadokya-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.kapadokya-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.kapadokya-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.kapadokya-details h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.kapadokya-details p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.kapadokya-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.kapadokya-features span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.kapadokya-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.kapadokya-btn {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.kapadokya-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #D2691E, #8B4513);
}

.map-btn {
    background: linear-gradient(135deg, #CD853F, #DEB887);
}

.map-btn:hover {
    background: linear-gradient(135deg, #DEB887, #CD853F);
}

/* Kapadokya Modal Stilleri */
.kapadokya-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.kapadokya-modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 11% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.kapadokya-modal-header {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.kapadokya-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.kapadokya-modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.kapadokya-modal-body p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: none;
}

.kapadokya-modal-body strong {
    color: #8B4513;
    font-weight: 700;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .kapadokya-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .kapadokya-item {
        padding: 1rem;
    }
    
    .kapadokya-buttons {
        flex-direction: column;
    }
    
    .kapadokya-modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .kapadokya-modal-body {
        max-height: 60vh;
        padding: 1.5rem;
    }
    
    .kapadokya-modal-header {
        padding: 1rem;
    }
    
    .kapadokya-modal-header h3 {
        font-size: 1.1rem;
    }
}

/* Doğa Turları Sayfası Stilleri */
#doga-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #228B22, #32CD32);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.doga-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.doga-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.doga-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.doga-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.doga-box p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.doga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.doga-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

.doga-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.doga-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.doga-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.doga-details h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.doga-details p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.doga-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.doga-features span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.doga-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.doga-btn {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg, #228B22, #32CD32);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.doga-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #32CD32, #228B22);
}

.map-btn {
    background: linear-gradient(135deg, #006400, #228B22);
}

.map-btn:hover {
    background: linear-gradient(135deg, #228B22, #006400);
}

/* Doğa Turu Modal Stilleri */
.doga-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.doga-modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 11% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.doga-modal-header {
    background: linear-gradient(135deg, #228B22, #32CD32);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.doga-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.doga-modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.doga-modal-body p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: none;
}

.doga-modal-body strong {
    color: #228B22;
    font-weight: 700;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .doga-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .doga-item {
        padding: 1rem;
    }
    
    .doga-buttons {
        flex-direction: column;
    }
    
    .doga-modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .doga-modal-body {
        max-height: 60vh;
        padding: 1.5rem;
    }
    
    .doga-modal-header {
        padding: 1rem;
    }
    
    .doga-modal-header h3 {
        font-size: 1.1rem;
    }
}

/* Antalya & Bodrum Sayfası Stilleri */
#beach-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.beach-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.beach-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.beach-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.beach-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.beach-box p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.beach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.beach-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

.beach-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.beach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.beach-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.beach-details h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.beach-details p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.beach-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.beach-features span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.beach-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.beach-btn {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.beach-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
}

.map-btn {
    background: linear-gradient(135deg, #4169E1, #6495ED);
}

.map-btn:hover {
    background: linear-gradient(135deg, #6495ED, #4169E1);
}

/* Sahil Turu Modal Stilleri */
.beach-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.beach-modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 11% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.beach-modal-header {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.beach-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.beach-modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.beach-modal-body p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: none;
}

.beach-modal-body strong {
    color: #1E90FF;
    font-weight: 700;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .beach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .beach-item {
        padding: 1rem;
    }
    
    .beach-buttons {
        flex-direction: column;
    }
    
    .beach-modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .beach-modal-body {
        max-height: 60vh;
        padding: 1.5rem;
    }
    
    .beach-modal-header {
        padding: 1rem;
    }
    
    .beach-modal-header h3 {
        font-size: 1.1rem;
    }
}

/* Rezervasyon Sayfası Stilleri */
#reservation-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.reservation-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reservation-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reservation-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.reservation-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.reservation-box p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.security-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

.security-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.security-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.security-details h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.security-details p {
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.reservation-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.reservation-form h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.form-group.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #F7931E, #FF6B35);
}

.reservation-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.reservation-info h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.info-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-icon {
    font-size: 1.2rem;
}

/* Onay Modal Stilleri */
.confirmation-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.confirmation-modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.confirmation-modal-header {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.confirmation-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.confirmation-modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.confirmation-details {
    margin-bottom: 2rem;
}

.confirmation-details p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.confirmation-details strong {
    color: #FF6B35;
    font-weight: 700;
}

.confirmation-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.confirmation-message p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #F7931E, #FF6B35);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .security-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .confirmation-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .confirmation-modal-body {
        max-height: 60vh;
        padding: 1.5rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .action-btn {
        text-align: center;
    }
}

/* Destek Sayfası Stilleri */
#support-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.support-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.support-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.support-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.support-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.support-box p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

.support-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.support-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.support-details h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.support-details p {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.support-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

.support-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.support-info h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.faq-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.faq-section h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Canlı Destek Modal Stilleri */
.live-chat-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.live-chat-modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    height: 80vh;
    position: relative;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.live-chat-modal-header {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.live-chat-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.live-chat-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.9);
    max-height: calc(80vh - 200px);
    min-height: 300px;
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    max-width: 80%;
}

.message.system {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.message.user {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    margin-left: auto;
}

.message.bot {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    margin-right: auto;
}

.message p {
    margin: 0;
    line-height: 1.4;
}

.chat-input {
    display: flex;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.chat-input input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.chat-input button {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 100px;
    overflow-y: auto;
    flex-shrink: 0;
}

.suggestion-btn {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.suggestion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

.suggestion-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.message.bot strong {
    color: #4CAF50;
    font-weight: 700;
}

.message.user {
    animation: slideInRight 0.3s ease-out;
}

.message.bot {
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .support-channels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-chat-modal-content {
        margin: 5% auto;
        width: 95%;
        height: 90vh;
    }
    
    .chat-messages {
        padding: 1rem;
        max-height: calc(90vh - 250px);
        min-height: 200px;
    }
    
    .chat-input {
        padding: 0.8rem;
    }
    
    .message {
        max-width: 90%;
    }
}

/* Chat Widget Stilleri */
#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    width: 500px;
    max-width: 95vw;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.chat-widget-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideInUp 0.3s ease-out;
}

.chat-widget-header {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 20px;
    min-width: 200px;
}

.chat-widget-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.chat-icon {
    font-size: 1.3rem;
}

.chat-widget-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-widget-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.chat-widget-body {
    display: none;
    max-height: 500px;
    overflow: hidden;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    max-height: 350px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.9);
}

.chat-messages .message {
    margin-bottom: 0.8rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    max-width: 85%;
    animation: slideIn 0.3s ease-out;
}

.chat-messages .message.user {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    margin-left: auto;
    animation: slideInRight 0.3s ease-out;
}

.chat-messages .message.bot {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    margin-right: auto;
    animation: slideInLeft 0.3s ease-out;
}

.chat-messages .message p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.chat-messages .message.bot strong {
    color: #4CAF50;
    font-weight: 700;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 80px;
    overflow-y: auto;
}

.chat-suggestions .suggestion-btn {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.chat-suggestions .suggestion-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

.chat-input-container {
    display: flex;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
}

.chat-input-container input {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input-container input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.chat-input-container button {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.chat-input-container button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    #chat-widget {
        width: 90vw;
        right: 5vw;
        bottom: 10px;
    }
    
    .chat-widget-body {
        max-height: 60vh;
    }
    
    .chat-messages {
        max-height: 40vh;
    }
    
    .chat-suggestions {
        max-height: 60px;
    }
    
    .chat-suggestions .suggestion-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* --- PROFESYONEL TATİL UYGULAMASI STİLLERİ --- */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    font-weight: 300;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    color: white;
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.contact-btn {
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 140px 20px 80px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
}

.hero-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 128, 0, 0.5);
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #ff8000;
    border: 2px solid #ff8000;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Quick Access Section */
.quick-access {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Popular Destinations */
.popular-destinations {
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destination-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.destination-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 25px;
    text-align: center;
}

.destination-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.destination-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destination-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.destination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 128, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff8000;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff8000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 1rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Main Menu */
.main-menu {
    padding: 40px 20px;
    margin-bottom: 60px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.menu-item::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 ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 128, 0, 0.3);
}

.menu-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.menu-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.menu-item p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.menu-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
    background: linear-gradient(135deg, #ff6b35, #ff8000);
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    max-width: 1200px;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8000, #ff6b35);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(255, 128, 0, 0.3);
    margin-top: 10px;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 128, 0, 0.4);
    background: linear-gradient(135deg, #ff6b35, #ff8000);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item {
        padding: 25px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-section h2 {
        font-size: 2rem;
    }
}