/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    background: #0a0a2e;
    color: #fff;
    overflow-x: hidden;
}

/* ===== CUSTOM CURSOR TRAIL ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    animation: cursorFade 0.6s forwards;
}
@keyframes cursorFade {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
    padding: 10px 40px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.logo-svg {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
    animation: rotateLogo 8s linear infinite;
}
@keyframes rotateLogo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}
.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
    display: block;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 107, 53, 0.25);
}
.nav-links a.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}
.hamburger span {
    width: 28px; height: 3px;
    background: #ffd700;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 30%, #2d1b69 60%, #0a0a2e 100%);
}
.hero-bg-animation {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}
/* Floating lights */
.floating-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatLight 8s ease-in-out infinite;
}
.floating-light:nth-child(1) { width: 300px; height: 300px; background: rgba(255, 107, 53, 0.15); top: 10%; left: 10%; animation-delay: 0s; }
.floating-light:nth-child(2) { width: 200px; height: 200px; background: rgba(255, 215, 0, 0.12); top: 60%; right: 10%; animation-delay: 2s; }
.floating-light:nth-child(3) { width: 250px; height: 250px; background: rgba(255, 0, 128, 0.1); bottom: 10%; left: 30%; animation-delay: 4s; }
.floating-light:nth-child(4) { width: 180px; height: 180px; background: rgba(0, 200, 255, 0.1); top: 30%; right: 30%; animation-delay: 1s; }
@keyframes floatLight {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(15px, 15px) scale(1.05); }
}

/* Stars */
.stars {
    position: absolute;
    width: 100%; height: 100%;
}
.star {
    position: absolute;
    width: 3px; height: 3px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Ferris Wheel Animation */
.ferris-wheel-container {
    position: absolute;
    right: -50px;
    bottom: -30px;
    width: 400px;
    height: 400px;
    opacity: 0.15;
}
.ferris-wheel {
    width: 100%; height: 100%;
    animation: rotateFerris 20s linear infinite;
}
.ferris-wheel svg { width: 100%; height: 100%; }
@keyframes rotateFerris { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 25px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 2px;
}
.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero h1 .line1 {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero h1 .line2 {
    display: block;
    font-size: 0.5em;
    background: linear-gradient(135deg, #ffd700, #ff6b35, #ff0080);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px auto;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}
.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}
.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}
.scroll-indicator .mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-indicator .mouse .wheel {
    width: 4px; height: 8px;
    background: #ffd700;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }

/* ===== SECTIONS ===== */
.section {
    padding: 100px 40px;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    margin: 15px auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
#hakkimizda {
    background: linear-gradient(180deg, #0a0a2e, #12123a);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.about-text h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 20px;
}
.about-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}
.stat-card .number {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #ff6b35;
}
.stat-card .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 5px;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-image:hover img { transform: scale(1.05); }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent);
}

/* Location cards */
.locations {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}
.location-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}
.location-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.location-card h4 {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 5px;
}
.location-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== LUNAPARK SECTION ===== */
#lunapark {
    background: linear-gradient(180deg, #12123a, #1a0a3e);
}
.lunapark-gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}
@media (max-width: 1600px) { .lunapark-gallery { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 1200px) { .lunapark-gallery { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px) { .lunapark-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lunapark-gallery { grid-template-columns: 1fr; } }

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #111;
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.1); }
.gallery-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 46, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-card:hover .overlay { opacity: 1; }
.gallery-card .overlay h3 {
    font-family: 'Fredoka One', cursive;
    color: #ffd700;
    font-size: 1.3rem;
}
.gallery-card .overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Neon border animation */
.gallery-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, #ff6b35, #ffd700, #ff0080, #00c8ff, #ff6b35);
    background-size: 400% 400%;
    z-index: -1;
    animation: neonBorder 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-card:hover::before { opacity: 1; }
@keyframes neonBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== PRODUCTS SECTION ===== */
#urunler {
    background: linear-gradient(180deg, #1a0a3e, #0a0a2e);
}
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}
.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 215, 0, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}
.product-card:hover .product-icon { transform: scale(1.1) rotate(5deg); }
.product-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 10px;
}
.product-card .specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}
.spec-row .spec-label { color: rgba(255, 255, 255, 0.5); }
.spec-row .spec-value { color: #ff8c42; font-weight: 700; }
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #0a0a2e;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* ===== CONTACT SECTION ===== */
#iletisim {
    background: linear-gradient(180deg, #0a0a2e, #06061e);
}
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.contact-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(5px);
}
.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-card h4 {
    color: #ffd700;
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.contact-card p, .contact-card a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
}
.contact-card a:hover { color: #ff8c42; }
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.15);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
    background: #06061e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    text-align: center;
}
.footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ===== CONFETTI PARTICLES ===== */
.confetti-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confettiFall linear forwards;
}
@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg) scale(0); opacity: 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MARQUEE ===== */
.marquee-section {
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #ff0080, #00c8ff, #ff6b35);
    background-size: 200% 200%;
    animation: gradientShift 4s linear infinite;
}
.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #0a0a2e;
    padding: 0 30px;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.3);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #ffd700;
    cursor: pointer;
    transition: transform 0.3s;
}
.lightbox-close:hover { transform: rotate(90deg); }

/* ===== TICKET COUNTER ===== */
.ticket-counter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.counter-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 20px 30px;
    text-align: center;
    min-width: 130px;
}
.counter-box .count {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #ff6b35;
}
.counter-box .count-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar { padding: 12px 20px; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: right 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; }
    .section { padding: 60px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .lunapark-gallery { grid-template-columns: repeat(2, 1fr); }
    .ferris-wheel-container { width: 200px; height: 200px; }
}

/* ============================================================
   ✨ YENİ ANİMASYONLAR
   ============================================================ */

/* === 1. FLOATING BALLOONS (Hero) === */
.balloon {
    position: absolute;
    width: 40px;
    height: 50px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: -60px;
    opacity: 0;
    animation: balloonFloat linear infinite;
    pointer-events: none;
    z-index: 1;
}
.balloon::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
}
.balloon:nth-child(1)  { left: 8%;  background: #ff6b35; width:35px; height:42px; animation-duration: 9s;  animation-delay: 0s;   }
.balloon:nth-child(2)  { left: 18%; background: #ffd700; width:45px; height:55px; animation-duration: 11s; animation-delay: 2s;   }
.balloon:nth-child(3)  { left: 30%; background: #ff0080; width:38px; height:46px; animation-duration: 8s;  animation-delay: 4s;   }
.balloon:nth-child(4)  { left: 45%; background: #00c8ff; width:42px; height:52px; animation-duration: 13s; animation-delay: 0.5s; }
.balloon:nth-child(5)  { left: 60%; background: #a855f7; width:36px; height:44px; animation-duration: 10s; animation-delay: 3s;   }
.balloon:nth-child(6)  { left: 75%; background: #ffd700; width:48px; height:58px; animation-duration: 12s; animation-delay: 1.5s; }
.balloon:nth-child(7)  { left: 88%; background: #ff6b35; width:40px; height:50px; animation-duration: 7s;  animation-delay: 5s;   }

@keyframes balloonFloat {
    0%   { bottom: -60px; opacity: 0; transform: translateX(0) rotate(-5deg); }
    10%  { opacity: 0.85; }
    50%  { transform: translateX(25px) rotate(5deg); }
    90%  { opacity: 0.6; }
    100% { bottom: 110%; opacity: 0; transform: translateX(-15px) rotate(-3deg); }
}

/* === 2. PULSING HALO (About image) === */
.about-image-wrapper {
    position: relative;
}
.pulse-ring {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 2px solid rgba(255, 107, 53, 0.6);
    animation: pulseRing 2.5s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
.pulse-ring:nth-child(2) { inset: -16px; animation-delay: 0.8s; border-color: rgba(255, 215, 0, 0.4); }
.pulse-ring:nth-child(3) { inset: -24px; animation-delay: 1.6s; border-color: rgba(255, 0, 128, 0.25); }

@keyframes pulseRing {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.06); opacity: 0; }
}

/* === 3. ANIMATED WAVE DIVIDER (Between sections) === */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    height: 60px;
}
.wave-divider svg {
    display: block;
    width: 200%;
    height: 100%;
    animation: waveSway 8s linear infinite;
}
@keyframes waveSway {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === 4. SHOOTING STARS (Hero background) === */
.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), transparent);
    border-radius: 2px;
    animation: shoot linear infinite;
    pointer-events: none;
    opacity: 0;
}
@keyframes shoot {
    0%   { transform: translateX(0) translateY(0) rotate(-25deg); opacity: 1; }
    100% { transform: translateX(900px) translateY(400px) rotate(-25deg); opacity: 0; }
}

/* === 5. NEON GLOW BREATHE (Hero title) === */
.hero h1 .line1 {
    animation: neonBreathe 3s ease-in-out infinite alternate;
}
@keyframes neonBreathe {
    0%   { filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.4)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 40px rgba(255, 107, 53, 0.5)); }
}

/* === 6. PRODUCT ICON BOUNCE SPIN === */
.product-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .product-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
}

/* === 7. SECTION TITLE UNDERLINE ANIMATION === */
.section-divider {
    position: relative;
    overflow: hidden;
}
.section-divider::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    animation: shimmerBar 2.5s ease infinite;
}
@keyframes shimmerBar {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* === 8. COUNTER BOX GLOW ON COMPLETE === */
.counter-box.done {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: counterPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes counterPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* === 9. CONTACT ICON WOBBLE === */
.contact-card:hover .contact-icon {
    animation: iconWobble 0.5s ease;
}
@keyframes iconWobble {
    0%, 100% { transform: rotate(0deg); }
    25%       { transform: rotate(-10deg); }
    75%       { transform: rotate(10deg); }
}

/* === 10. FOOTER LOGO RAINBOW PULSE === */
.footer-logo {
    animation: rainbowPulse 4s ease infinite;
}
@keyframes rainbowPulse {
    0%   { filter: drop-shadow(0 0 6px #ff6b35); }
    33%  { filter: drop-shadow(0 0 10px #ffd700); }
    66%  { filter: drop-shadow(0 0 10px #ff0080); }
    100% { filter: drop-shadow(0 0 6px #ff6b35); }
}

