/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ana-mor: #6A1B9A;
    --koyu-mor-1: #2E003E;
    --koyu-mor-2: #4B0082;
    --acik-mor: #8E24AA;
    --beyaz: #FFFFFF;
    --gri: #BDBDBD;
    --sari: #FDD835;
    --lacivert: #0D47A1;
    --kirmizi: #D32F2F;
    --acik-mavi: #4FC3F7;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Top Bar */
.top-bar {
    background-color: var(--koyu-mor-1);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    color: var(--beyaz);
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-link {
    color: var(--beyaz);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.top-link:hover {
    color: var(--acik-mor);
}

.whatsapp-link {
    background-color: #25D366;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    color: var(--beyaz);
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--koyu-mor-1) 0%, var(--koyu-mor-2) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    color: var(--beyaz);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--beyaz);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--acik-mor);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--acik-mor);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--beyaz);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    width: 100%;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(46, 0, 62, 0.75), rgba(75, 0, 130, 0.75));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 20px;
    color: var(--beyaz);
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--beyaz);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #FDD835;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-features span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FDD835 0%, #FFC107 100%);
    color: #000;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(253, 216, 53, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(253, 216, 53, 0.6);
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--beyaz);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--beyaz);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: var(--beyaz);
    width: 30px;
    border-radius: 6px;
    border-color: var(--beyaz);
}

.hero-whatsapp-form {
    margin-bottom: 30px;
}

.hero-form {
    max-width: 700px;
    margin: 0 auto;
}

.hero-form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-form-row input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-form-row input:focus {
    outline: none;
    background: var(--beyaz);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.hero-form-row input::placeholder {
    color: #999;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--acik-mor);
    color: var(--beyaz);
}

.btn-primary:hover {
    background-color: var(--ana-mor);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 36, 170, 0.4);
}

.btn-login {
    background-color: var(--acik-mor);
    color: var(--beyaz);
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.btn-login:hover {
    background-color: var(--ana-mor);
    transform: translateY(-2px);
}


.btn-whatsapp {
    background-color: #25D366;
    color: var(--beyaz);
    padding: 12px 25px;
    display: inline-block;
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-submit {
    background-color: var(--acik-mor);
    color: var(--beyaz);
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: var(--ana-mor);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--beyaz);
    border: 2px solid var(--beyaz);
}

.btn-secondary:hover {
    background-color: var(--beyaz);
    color: var(--ana-mor);
    transform: translateY(-2px);
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--beyaz);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 15px 35px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: 220px;
}

.btn-whatsapp-hero:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-hero span {
    font-size: 1.3rem;
}

.btn-paket {
    background-color: var(--acik-mor);
    color: var(--beyaz);
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 20px;
}

.btn-paket:hover {
    background-color: var(--ana-mor);
    transform: translateY(-2px);
}

/* Online İşlemler Section */
.online-islemler {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.login-box {
    max-width: 450px;
    margin: 0 auto;
    background: var(--beyaz);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.2);
}

.login-box h2 {
    text-align: center;
    color: var(--ana-mor);
    margin-bottom: 30px;
    font-size: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--gri);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--acik-mor);
}

.forgot-password {
    text-align: center;
    color: var(--acik-mor);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--ana-mor);
}

/* Paketler Section */
.paketler {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

.paket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.paket-card {
    background: var(--beyaz);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.paket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.3);
}

.paket-card.featured {
    border: 3px solid var(--acik-mor);
    transform: scale(1.05);
}

.paket-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.paket-badge-featured {
    background: linear-gradient(135deg, var(--acik-mor) 0%, var(--ana-mor) 100%);
    color: var(--beyaz);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.paket-header {
    background: linear-gradient(135deg, var(--koyu-mor-1) 0%, var(--koyu-mor-2) 100%);
    color: var(--beyaz);
    padding: 25px;
    text-align: center;
    position: relative;
}

.paket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.paket-badge {
    display: inline-block;
    background-color: var(--sari);
    color: var(--koyu-mor-1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

.paket-content {
    padding: 30px;
}

.paket-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ana-mor);
}

.price-period {
    font-size: 1rem;
    color: #666;
    margin-left: 5px;
}

.paket-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.paket-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 15px 0;
    line-height: 1.4;
    text-align: center;
}

.paket-features {
    list-style: none;
    margin-bottom: 25px;
}

.paket-features li {
    padding: 12px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.paket-features li:last-child {
    border-bottom: none;
}

/* Film Posterleri Section */
.film-posters {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--beyaz);
}

.film-posters .section-title {
    color: var(--beyaz);
}

.film-posters .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.poster-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 20px;
    padding: 0 60px;
    background: transparent;
}

.poster-carousel {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    align-items: center;
}

.poster-slide {
    min-width: 280px;
    width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 2/3;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.poster-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.poster-slide:hover img {
    transform: scale(1.1);
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.poster-slide:hover .poster-overlay {
    transform: translateY(0);
}

.poster-overlay h3 {
    color: var(--beyaz);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-poster {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--beyaz);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-poster:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--ana-mor);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--beyaz);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0 20px;
}

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

.carousel-dot.active {
    background: var(--acik-mor);
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Kampanyalar Section */
.kampanyalar {
    padding: 80px 0;
    background: var(--beyaz);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--ana-mor);
    margin-bottom: 50px;
    font-weight: 700;
}

.kampanya-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.kampanya-card {
    background: var(--beyaz);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.kampanya-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.3);
}

.kampanya-image {
    height: 180px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kampanya-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kampanya-content h3 {
    color: var(--ana-mor);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.kampanya-price {
    margin-bottom: 20px;
}

.price-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
}

.price-installment {
    display: block;
    font-size: 0.95rem;
    color: #333;
    font-weight: 400;
}

.kampanya-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.kampanya-features li {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
}

.kampanya-features li::before {
    content: '✓';
    color: var(--acik-mor);
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.kampanya-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 10px 0 15px 0;
    line-height: 1.4;
}

.btn-kampanya {
    background-color: var(--ana-mor);
    color: var(--beyaz);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-kampanya:hover {
    background-color: var(--koyu-mor-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
}

/* Hizmetler Section */
.hizmetler {
    padding: 80px 0;
    background: var(--beyaz);
}

.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hizmet-card {
    background: var(--beyaz);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.hizmet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.2);
    border-color: var(--acik-mor);
}

.hizmet-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hizmet-card h3 {
    color: var(--ana-mor);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hizmet-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Hakkımızda Section */
.hakkimizda {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hakkimizda-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.hakkimizda-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.hakkimizda-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.hakkimizda-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--acik-mor);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.hakkimizda-image {
    position: relative;
}

.hakkimizda-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--koyu-mor-1) 0%, var(--koyu-mor-2) 100%);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    color: var(--beyaz);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder span {
    font-size: 5rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    color: var(--beyaz);
}

/* SSS Section */
.sss {
    padding: 80px 0;
    background: var(--beyaz);
}

.sss-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.sss-item {
    background: var(--beyaz);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sss-item:hover {
    border-color: var(--acik-mor);
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.1);
}

.sss-item.active {
    border-color: var(--acik-mor);
}

.sss-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.sss-question:hover {
    background-color: #f0f0f0;
}

.sss-question h3 {
    color: var(--ana-mor);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.sss-toggle {
    font-size: 1.5rem;
    color: var(--acik-mor);
    font-weight: 700;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.sss-item.active .sss-toggle {
    transform: rotate(45deg);
}

.sss-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.sss-item.active .sss-answer {
    max-height: 500px;
    padding: 25px;
}

.sss-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* İletişim Section */
.iletisim {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.iletisim-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.iletisim-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    color: var(--ana-mor);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    line-height: 1.8;
}

.info-item a {
    color: var(--acik-mor);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--ana-mor);
}

.iletisim-form {
    background: var(--beyaz);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.iletisim-form h3 {
    color: var(--ana-mor);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--koyu-mor-1) 0%, var(--koyu-mor-2) 100%);
    color: var(--beyaz);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--beyaz);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--acik-mor);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--beyaz);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--acik-mor);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--koyu-mor-1) 0%, var(--koyu-mor-2) 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-form-row input {
        min-width: 100%;
    }

    .btn-whatsapp-hero {
        min-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .paket-grid {
        grid-template-columns: 1fr;
    }

    .paket-card.featured {
        transform: scale(1);
    }

    .paket-card.featured:hover {
        transform: translateY(-10px);
    }

    .poster-carousel-wrapper {
        padding: 0 50px;
    }

    .poster-slide {
        min-width: 220px;
        width: 220px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .poster-overlay {
        transform: translateY(0);
        padding: 30px 20px 20px;
    }

    .poster-overlay h3 {
        font-size: 1.5rem;
    }

    .kampanya-grid {
        grid-template-columns: 1fr;
    }

    .hizmet-grid {
        grid-template-columns: 1fr;
    }

    .hakkimizda-wrapper {
        grid-template-columns: 1fr;
    }

    .hakkimizda-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .iletisim-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 600px;
        min-height: 600px;
    }

    .hero-content {
        padding: 40px 20px 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-features span {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: auto;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        z-index: 20;
    }

    .hero-slider-prev {
        left: 15px;
    }

    .hero-slider-next {
        right: 15px;
    }

    .hero-slider-dots {
        bottom: 15px;
        z-index: 15;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 650px;
        min-height: 650px;
    }

    .hero-content {
        padding: 30px 15px 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-features {
        margin-bottom: 15px;
    }

    .hero-features span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-buttons {
        margin-top: auto;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        z-index: 20;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .hero-slider-dots {
        bottom: 10px;
        z-index: 15;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .login-box {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    color: var(--beyaz);
    text-decoration: none;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-sticky svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-sticky svg {
        width: 24px;
        height: 24px;
    }
}

