/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6600;
    --secondary-color: #007BFF;
    --accent-color: #f8f9fa;
    --text-color: #333333;
    --text-secondary: #666666;
    --background: #ffffff;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #e55c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Modern Loading Screen */
.modern-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.modern-loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo Animation */
.loading-logo {
    margin-bottom: 30px;
}

.logo-pulse {
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

.logo-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.6));
}

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

/* Loading Animation */
.loading-animation {
    margin-bottom: 30px;
}

.loading-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 40px;
}

.wave-bar {
    width: 6px;
    height: 30px;
    background: linear-gradient(45deg, #ff6600, #ff8c00, #ffaa00);
    border-radius: 3px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 40%, 100% {
        transform: scaleY(0.6);
    }
    20% {
        transform: scaleY(1.2);
    }
}

/* Loading Content */
.loading-content {
    color: white;
}

.loading-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6600, #ff8c00, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Progress Bar */
.loading-progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6600, #ff8c00);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff8c00;
}

/* Loading Features */
.loading-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.5s; }
.feature-item:nth-child(2) { animation-delay: 1s; }
.feature-item:nth-child(3) { animation-delay: 1.5s; }

.feature-item i {
    color: #4CAF50;
    font-size: 0.8rem;
}

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

/* Background Animation */
.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Responsive Design for Loading Screen */
@media (max-width: 768px) {
    .loading-title {
        font-size: 2rem;
    }
    
    .loading-subtitle {
        font-size: 1rem;
    }
    
    .progress-bar {
        width: 250px;
    }
    
    .logo-image {
        width: 160px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .loading-title {
        font-size: 1.8rem;
    }
    
    .progress-bar {
        width: 200px;
    }
    
    .logo-image {
        width: 160px;
    }
    
    .loading-features {
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 300px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #25D366;
}

.whatsapp-popup.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-content {
    text-align: center;
}

.whatsapp-popup-content h4 {
    color: #25D366;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.whatsapp-popup-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup-close:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Logo Stilleri */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-main {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo-sub {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
    font-style: italic;
    font-weight: 500;
}

/* Navbar Düzeni */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(243, 237, 237, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    height: 100px;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
}

.navbar.scrolled {
    height: 80px;
}

.nav-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: fixed;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo .logo-text {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    height: 100px;
    align-items: center;
}

.nav-logo .logo-main {
    font-size: 2.8rem;
}

.nav-logo .logo-sub {
    font-size: 1.4rem;
    margin-top: 0;
}

.nav-logo .logo-tagline {
    display: none;
}

/* Sosyal Medya İkonları - Normal Ekran */
.nav-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    position: relative;
    flex-shrink: 0;
}

.nav-social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* WhatsApp ikonu özel stil */
.whatsapp-icon {
    background: #25D366;
    width: auto;
    padding: 10px 15px;
    border-radius: 25px;
    gap: 8px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Telegram ikonu */
.telegram-icon {
    background: #0088cc;
}

/* Instagram ikonu */
.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px 0;
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Fullscreen Slider */
.slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}

.slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
    filter: brightness(0.7);
}

.slide.active .slide-image img {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Paketler Bölümü */
.packages {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 40px;
}

.package-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.package-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), #0056b3);
    color: white;
    position: relative;
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    margin-right: 5px;
}

.amount {
    font-size: 2.2rem;
    font-weight: bold;
}

.package-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.package-savings {
    background-color: #4CAF50;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    display: inline-block;
}

.package-features {
    padding: 20px;
    flex-grow: 1;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.package-features i {
    margin-right: 8px;
    width: 16px;
    color: #4CAF50;
    font-size: 0.9rem;
}

.package-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.package-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Yorumlar Bölümü */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial-avatar i {
    color: white;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.testimonial-rating {
    color: #FFD700;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* Özellikler Bölümü */
.features {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-secondary);
}

/* İletişim Bölümü */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1000px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    padding: 50px 0 20px;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    align-items: flex-start;
    text-align: left;
}

.footer-logo .logo-main {
    color: white;
    font-size: 2.5rem;
}

.footer-logo .logo-sub {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-logo .logo-tagline {
    color: #ccc;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 0;
}

.footer-links h4,
.footer-packages h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-packages ul {
    list-style: none;
}

.footer-links li,
.footer-packages li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-packages a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-packages a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-text p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-seo p {
    color: #999;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo img {
        width: 180px !important;
        height: 160px !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .nav-logo .logo-main {
        font-size: 2.2rem;
    }
    
    .nav-logo .logo-sub {
        font-size: 1.1rem;
    }
    
    .nav-logo img {
        width: 180px !important;
        height: 140px !important;
        margin-top: 15px !important;
    }
    
    .nav-social {
        gap: 8px;
    }
    
    .nav-social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .whatsapp-icon {
        padding: 8px 12px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-main {
        padding: 0;
        justify-content: space-between;
        gap: 15px;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    .nav-logo .logo-text {
        flex-direction: row;
        align-items: center;
        height: auto;
        gap: 8px;
    }

    .nav-logo .logo-main {
        font-size: 1.8rem;
    }

    .nav-logo .logo-sub {
        font-size: 1rem;
    }

    /* Mobilde Sosyal Medya İkonları - Logo ve Toggle ile Aynı Hizada */
    .nav-social {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        order: 2;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 20px 0;
        display: none;
    }

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

    .nav-link {
        padding: 15px;
        display: block;
        font-size: 1.1rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-controls, .slider-dots {
        bottom: 20px;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
    
    .package-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 200px;
    }
    
    .nav-social {
        gap: 6px;
    }
    
    .nav-social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .whatsapp-icon {
        padding: 6px 10px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }

    /* WhatsApp Popup Mobile */
    .whatsapp-popup {
        bottom: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .nav-logo .logo-main {
        font-size: 1.6rem;
    }

    .nav-logo .logo-sub {
        font-size: 0.9rem;
    }
    
    .nav-logo .logo-text {
        gap: 5px;
    }
    
    /* Mobilde Logo Boyutu Sabit */
    .nav-logo img {
        width: 150px !important;
        height: 110px !important;
        margin-top: 20px !important;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .packages-grid, .channels-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        margin-bottom: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .slider {
        margin-top: 80px;
    }
    
    .nav-main {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .nav-social {
        gap: 5px;
        flex-wrap: nowrap;
    }
    
    .nav-social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .whatsapp-icon {
        padding: 5px 8px;
    }
    
    .whatsapp-text {
        font-size: 11px;
    }

    /* Loading Screen Mobile */
    .loading-text {
        font-size: 1.2rem;
    }
    
    .loader {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .nav-main {
        gap: 8px;
    }
    
    .whatsapp-text {
        display: none; /* Çok küçük ekranlarda sadece ikon göster */
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
        padding: 0;
        border-radius: 50%;
    }
}/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6600;
    --secondary-color: #007BFF;
    --accent-color: #f8f9fa;
    --text-color: #333333;
    --text-secondary: #666666;
    --background: #ffffff;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #e55c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* 3D TV Container */
.tv-container {
    perspective: 1000px;
    margin-bottom: 30px;
}

.tv-frame {
    width: 300px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 3s ease-in-out infinite;
}

.tv-screen {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateZ(20px);
    box-shadow: 
        0 0 0 10px #333,
        0 0 30px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateX(5deg);
    }
    50% {
        transform: translateY(-10px) rotateX(5deg);
    }
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.loading-dots {
    display: inline-block;
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% {
        content: ".";
    }
    40% {
        content: "..";
    }
    60%, 100% {
        content: "...";
    }
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 300px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #25D366;
}

.whatsapp-popup.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-content {
    text-align: center;
}

.whatsapp-popup-content h4 {
    color: #25D366;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.whatsapp-popup-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup-close:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Logo Stilleri */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-main {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo-sub {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
    font-style: italic;
    font-weight: 500;
}

/* Navbar Düzeni */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(243, 237, 237, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    height: 100px;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
}

.navbar.scrolled {
    height: 80px;
}

.nav-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo .logo-text {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    height: 100px;
    align-items: center;
}

.nav-logo .logo-main {
    font-size: 2.8rem;
}

.nav-logo .logo-sub {
    font-size: 1.4rem;
    margin-top: 0;
}

.nav-logo .logo-tagline {
    display: none;
}

/* Sosyal Medya İkonları - Normal Ekran */
.nav-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    position: relative;
    flex-shrink: 0;
}

.nav-social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* WhatsApp ikonu özel stil */
.whatsapp-icon {
    background: #25D366;
    width: auto;
    padding: 10px 15px;
    border-radius: 25px;
    gap: 8px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Telegram ikonu */
.telegram-icon {
    background: #0088cc;
}

/* Instagram ikonu */
.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Fullscreen Slider */
.slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}

.slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
    filter: brightness(0.7);
}

.slide.active .slide-image img {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Paketler Bölümü */
.packages {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 40px;
}

.package-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.package-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), #0056b3);
    color: white;
    position: relative;
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    margin-right: 5px;
}

.amount {
    font-size: 2.2rem;
    font-weight: bold;
}

.package-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.package-savings {
    background-color: #4CAF50;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    display: inline-block;
}

.package-features {
    padding: 20px;
    flex-grow: 1;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.package-features i {
    margin-right: 8px;
    width: 16px;
    color: #4CAF50;
    font-size: 0.9rem;
}

.package-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.package-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Yorumlar Bölümü */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial-avatar i {
    color: white;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.testimonial-rating {
    color: #FFD700;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* Özellikler Bölümü */
.features {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-secondary);
}

/* İletişim Bölümü */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1000px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    padding: 50px 0 20px;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    align-items: flex-start;
    text-align: left;
}

.footer-logo .logo-main {
    color: white;
    font-size: 2.5rem;
}

.footer-logo .logo-sub {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-logo .logo-tagline {
    color: #ccc;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 0;
}

.footer-links h4,
.footer-packages h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-packages ul {
    list-style: none;
}

.footer-links li,
.footer-packages li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-packages a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-packages a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-text p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-seo p {
    color: #999;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo img {
        width: 200px !important;
        height: 160px !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .nav-logo .logo-main {
        font-size: 2.2rem;
    }
    
    .nav-logo .logo-sub {
        font-size: 1.1rem;
    }
    
    .nav-logo img {
        width: 180px !important;
        height: 140px !important;
        margin-top: 15px !important;
    }
    
    .nav-social {
        gap: 8px;
    }
    
    .nav-social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .whatsapp-icon {
        padding: 8px 12px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-main {
        padding: 0;
        justify-content: space-between;
        gap: 15px;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    .nav-logo .logo-text {
        flex-direction: row;
        align-items: center;
        height: auto;
        gap: 8px;
    }

    .nav-logo .logo-main {
        font-size: 1.8rem;
    }

    .nav-logo .logo-sub {
        font-size: 1rem;
    }

    /* Mobilde Sosyal Medya İkonları - Logo ve Toggle ile Aynı Hizada */
    .nav-social {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        order: 2;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 20px 0;
        display: none;
    }

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

    .nav-link {
        padding: 15px;
        display: block;
        font-size: 1.1rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-controls, .slider-dots {
        bottom: 20px;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
    
    .package-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 200px;
    }
    
    .nav-social {
        gap: 6px;
    }
    
    .nav-social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .whatsapp-icon {
        padding: 6px 10px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }

    /* WhatsApp Popup Mobile */
    .whatsapp-popup {
        bottom: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .nav-logo .logo-main {
        font-size: 1.6rem;
    }

    .nav-logo .logo-sub {
        font-size: 0.9rem;
    }
    
    .nav-logo .logo-text {
        gap: 5px;
    }
    
    /* Mobilde Logo Boyutu Sabit */
    .nav-logo img {
        width: 240px !important;
        height: 190px !important;
        margin-top: 0 !important;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .packages-grid, .channels-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        margin-bottom: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .slider {
        margin-top: 80px;
    }
    
    .nav-main {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .nav-social {
        gap: 5px;
        flex-wrap: nowrap;
    }
    
    .nav-social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .whatsapp-icon {
        padding: 5px 8px;
    }
    
    .whatsapp-text {
        font-size: 11px;
    }

    /* Loading Screen Mobile */
    .loading-text {
        font-size: 1.2rem;
    }
    
    .loader {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .nav-main {
        gap: 8px;
    }
    
    .whatsapp-text {
        display: none; /* Çok küçük ekranlarda sadece ikon göster */
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
        padding: 0;
        border-radius: 50%;
    }
}
/* Mobilde logo küçültme */
@media (max-width: 768px) {
    .nav-logo img {
        width: 120px !important;
        height: 95px !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        width: 160px !important;
        height: 110px !important;
        margin-top: 5px !important;
    }
}
/* Breadcrumb Styles */
.breadcrumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    margin-bottom: 0;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb li:last-child {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
/* Önceki stiller aynı kalacak, sadece yeni eklenen stiller: */

/* Full Width Cards */
.full-width-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.full-width-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.full-width-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.full-width-card.reverse .card-content {
    flex-direction: row-reverse;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.card-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.card-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.card-image {
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.full-width-card:hover .card-image img {
    transform: scale(1.05);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Room Cards */
.room-card.featured {
    position: relative;
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.room-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery-section {
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.gallery-item {
    flex: 0 0 33.333%;
    height: 400px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(0.95);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 3;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .card-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .card-text {
        padding: 2rem;
    }
    
    .card-image {
        height: 300px;
    }
    
    .gallery-item {
        flex: 0 0 50%;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .full-width-card.reverse .card-content {
        flex-direction: column;
    }
    
    .gallery-item {
        flex: 0 0 100%;
    }
    
    .lightbox-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .card-text {
        padding: 1.5rem;
    }
    
    .card-text h3 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
}