:root {
    --bg-color: #0d0d0f;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent: #a855f7; /* Lila */
    --accent-hover: #93c5fd; /* Soft Blue */
    --glass-bg: rgba(20, 20, 25, 0.65);
    --glass-border: rgba(168, 85, 247, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --gradient-accent: linear-gradient(135deg, #a855f7 0%, #93c5fd 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    background-image: linear-gradient(rgba(13, 13, 15, 0.95), rgba(13, 13, 15, 0.95)), url('../logo.png');
    background-attachment: fixed;
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Force children to stretch to full width */
}

/* Navbar */
.navbar {
    width: 100% !important;
    background: rgba(13,13,15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.8rem 2rem !important;
    position: sticky;
    top: 0;
    left: 0 !important;
    z-index: 1000;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--text-main);
    border-radius: 4px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav-links {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap !important;
}
.nav-links a:hover {
    color: var(--accent-hover);
}
.nav-links .btn-nav {
    background: var(--gradient-accent);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    color: #fff;
    white-space: nowrap !important;
}
.nav-links .btn-nav:hover {
    color: #fff;
    opacity: 0.9;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5);
}
.footer p { margin-bottom: 0.5rem; color: var(--text-muted); }
.footer a { color: var(--accent); text-decoration: none; }

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    padding: 2rem;
}

header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
}

.logo-text {
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-muted);
    background: linear-gradient(180deg, var(--text-main) 0%, #333 100%);
    -webkit-background-clip: text;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

.logo-sub {
    font-size: 1.5rem;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    main {
        grid-template-columns: 1fr;
    }
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.pricing-item span:last-child {
    font-weight: 800;
}

.special-note {
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin-left: 0.5rem;
}

.package-deal {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    border: 2px dashed var(--accent);
    border-radius: 12px;
}

.package-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.package-details {
    list-style: none;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.package-bonus {
    color: var(--accent);
    font-style: italic;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
}

.currency-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.currency-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.currency-btn.active, .currency-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.item-selector {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.item-selector .item-name {
    font-weight: 600;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.qty-btn:hover {
    background: var(--accent);
}

.qty-input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-weight: bold;
}

.total-section {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

.total-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 2rem;
}

.btn-submit {
    width: 100%;
    margin-top: 2rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    display: inline-block;
    text-decoration: none !important;
    white-space: nowrap;
    text-align: center;
    border: none !important;
    outline: none !important;
}

.btn-submit:hover, .btn-submit:active, .btn-submit:focus {
    text-decoration: none !important;
}


.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 197, 253, 0.5);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* --- Slider (Bootstrap Carousel Style) --- */
.slider-container.full-width {
    width: 100vw;
    position: relative;
    height: 580px;
    margin: 6rem 0;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 60px rgba(0,0,0,0.9);
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.9s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active { opacity: 1; z-index: 2; }

/* Bottom caption bar */
.slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 100%);
    z-index: 5;
    pointer-events: none;
}
.slide-caption-text {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.slide-caption-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Side arrow buttons */
.slider-nav {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    z-index: 30;
    pointer-events: none;
}

.nav-btn {
    pointer-events: all;
    background: rgba(0,0,0,0.45);
    border: none;
    color: white;
    width: 52px; height: 100%;
    cursor: pointer;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
    border-radius: 0;
    box-shadow: none;
    opacity: 0.7;
}
.nav-btn:hover {
    background: rgba(0,0,0,0.7);
    opacity: 1;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* Dot indicators */
.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}
.slider-dot.active { background: #fff; transform: scale(1.3); }

/* Theme Overlays */
.theme-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* KADIN TEMA: Pembe & Kalpler */
.theme-kadin {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(13, 13, 15, 0) 100%);
}
.theme-kadin::before {
    content: "❤️";
    position: absolute;
    font-size: 2rem;
    animation: floatingHearts 3s infinite ease-in-out;
    opacity: 0.3;
    left: 10%; top: 20%;
}
@keyframes floatingHearts {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

/* ÖLÜM YİYEN TEMA: Siyah & Yeşil */
.theme-olum_yiyen {
    background: linear-gradient(180deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    box-shadow: inset 0 0 50px rgba(0, 255, 0, 0.15);
}

/* SEHERBAZ TEMA: Turkuaz & Turuncu & Anka */
.theme-seherbaz {
    background: linear-gradient(45deg, rgba(64, 224, 208, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
}
.theme-seherbaz::after {
    content: "🔥";
    position: absolute;
    right: 5%; bottom: 10%;
    font-size: 5rem;
    filter: drop-shadow(0 0 20px orange);
    opacity: 0.4;
}

/* ÇOCUK TEMA: Gökkuşağı */
.theme-cocuk {
    border: 5px solid transparent;
    border-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet) 1;
    background: rgba(255,255,255,0.02);
}

/* Pricing Section Full Width Slider Style */
.pricing-summary-full-width {
    width: 100%;
    position: relative;
    margin-top: 10rem;
    margin-bottom: 15rem;
    padding: 4rem 1rem;
    background: linear-gradient(90deg, rgba(20, 20, 25, 0) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(20, 20, 25, 0) 100%);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none !important;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-summary-full-width:hover {
    background: linear-gradient(90deg, rgba(20, 20, 25, 0) 0%, rgba(168, 85, 247, 0.12) 50%, rgba(20, 20, 25, 0) 100%);
}

.pricing-summary-full-width::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: 0.4s;
}

.pricing-summary-full-width:hover::before {
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.2) 0%, transparent 75%);
}

.modern-pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    transition: transform 0.4s;
}

.pricing-summary-full-width:hover .modern-pricing-content {
    transform: translateY(-5px);
}

.mp-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.mp-icon svg {
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.mp-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    padding: 0.5rem 1rem 0.5rem calc(1rem + 4px);
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pricing-summary-full-width:hover .mp-eyebrow {
    background: rgba(168, 85, 247, 0.4);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.mp-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.mp-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-summary-full-width {
        padding: 3rem 1rem;
        margin-top: 5rem;
        margin-bottom: 8rem;
    }
    .mp-headline {
        font-size: 2rem;
    }
    .mp-eyebrow {
        letter-spacing: 4px;
        font-size: 0.75rem;
    }
    .mp-sub {
        font-size: 0.9rem;
    }
}
.pricing-summary-panel .section-title-alt {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 950;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
.pricing-row-v2 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
}
.p-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex: 1;
    text-align: right;
    white-space: nowrap;
}
.p-sep {
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    flex: 0;
}
.p-price-block {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.p-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 950;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}
.p-note {
    font-size: 0.85rem;
    color: rgba(168, 85, 247, 0.8);
    font-style: italic;
    margin-top: -2px;
    font-weight: 600;
}

/* For video iframes */
.work-thumb iframe, .work-detail-media iframe {
    width: 100%; height: 100%;
    border: none;
    border-radius: 12px;
}

/* Hero Section Refined */
.main-hero-logo {
    font-size: 8rem;
}
.main-hero-sub {
    font-size: 2rem;
}

/* Mobile Responsiveness Refined */
@media (max-width: 1350px) {
    .main-hero-logo { font-size: 6rem; }
    .main-hero-sub { font-size: 1.5rem; }
    .navbar {
        padding: 0.8rem 1rem !important;
        width: 100% !important;
    }

    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        letter-spacing: 2px;
    }

    .nav-links .btn-nav {
        width: auto;
        padding: 1rem 3rem;
        font-size: 1.2rem;
    }

    main {
        padding: 1rem;
        gap: 1.5rem;
    }

    .page-content {
        margin-top: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }

    header {
        padding: 2rem 1rem;
    }

    .slider-container.full-width {
        height: 280px;
        margin: 3rem 0;
    }

    .glass-panel {
        padding: 1.5rem;
    }
    
    .pricing-summary-panel {
        padding: 3rem 1rem !important;
        margin: 0 1rem;
    }
    
    .section-title-alt {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .footer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text { font-size: 2.5rem; }
    .main-hero-logo { font-size: 3.5rem; }
    .main-hero-sub { font-size: 1.1rem; }
    
    .slider-container.full-width {
        height: 220px;
    }
}
