* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b9d;
    --secondary: #c44569;
    --accent: #ffa502;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --white: #ffffff;
    --powder: #FFE5EC;
    --powder-dark: #FFD6E0;
    --powder-light: #FFF0F5;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-pink: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    --gradient-powder: linear-gradient(135deg, #FFE5EC 0%, #FFD6E0 50%, #FFF0F5 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVBAR - Sıfırdan Yeniden Yazıldı
   ======================================== */

/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FFE5EC 0%, #FFD6E0 50%, #FFF0F5 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    box-shadow: 0 4px 25px rgba(255, 107, 157, 0.2);
    z-index: 9999;
    padding: 1rem 0;
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 4s infinite;
    z-index: 1;
    pointer-events: none;
}

.navbar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.navbar .container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Animations */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo/Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.2));
    z-index: 10;
}

.nav-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

.nav-menu li {
    position: relative;
    z-index: 10;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    white-space: nowrap;
    display: inline-block;
    z-index: 10;
    cursor: pointer;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-pink);
    transition: width 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    pointer-events: none;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(255, 107, 157, 0.15);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Contact Button */
.btn-contact {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 10;
    cursor: pointer;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
}

/* Right Side (User + Hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-pink);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.user-icon-btn:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 999999;
    pointer-events: none;
}

.user-dropdown.active,
.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid var(--light);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999998;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu Logo */
.mobile-menu-logo {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-pink);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: scale(1.4);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--dark);
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 107, 157, 0.05);
}

.service-link:hover {
    gap: 1rem;
    background: rgba(255, 107, 157, 0.1);
    padding-right: 2rem;
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #7f8c8d;
}

/* CTA Section */
.cta {
    background: var(--gradient-pink);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Page Header */
.page-header {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail-card.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
    order: 2;
}

.service-detail-image {
    background: var(--gradient-pink);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image i {
    font-size: 6rem;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-detail-content p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark);
}

.service-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.3rem;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.contact-item p {
    color: #7f8c8d;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links-large a:hover {
    transform: translateY(-3px);
    background: var(--accent);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
/* Mobile Menu Logo */
.mobile-menu-logo {
    display: none;
}

/* ========================================
   MOBILE RESPONSIVE - Sıfırdan Yeniden
   ======================================== */

@media (max-width: 968px) {
    /* Mobile menu button görünür */
    .mobile-menu-btn {
        display: block;
    }
    
    .close-mobile-menu {
        display: block;
    }
    
    /* Close button */
    .close-mobile-menu {
        display: none;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #ff6b9d;
        font-size: 1.3rem;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 10px rgba(255, 107, 157, 0.2);
        transition: all 0.3s;
    }
    
    .close-mobile-menu:hover {
        background: linear-gradient(135deg, #ff6b9d, #c44569);
        color: white;
        transform: rotate(90deg);
    }
    
    /* Mobile menu logo */
    .mobile-menu-logo {
        display: block;
        padding: 2rem 1.5rem;
        text-align: center;
        border-bottom: 2px solid rgba(255, 107, 157, 0.2);
    }
    
    /* Mobile menu - Yan panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(180deg, #FFE5EC 0%, #FFD6E0 50%, #FFF0F5 100%);
        box-shadow: -5px 0 30px rgba(255, 107, 157, 0.3);
        padding: 0;
        z-index: 999999;
        overflow-y: auto;
        transition: right 0.4s ease;
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1.2rem;
        padding: 1.5rem 2rem;
        color: #2c3e50;
        text-decoration: none;
        background: white;
        border-radius: 0;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s;
        border-bottom: 2px solid #f0f0f0;
        position: relative;
    }
    
    .nav-menu a svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        color: #ff6b9d;
    }
    
    .nav-menu a::before,
    .nav-menu a::after {
        display: none !important;
    }
    
    .nav-menu a:hover {
        background: #fff5f8;
        color: #ff6b9d;
        transform: none;
    }
    
    .nav-menu .btn-contact {
        background: linear-gradient(135deg, #ff6b9d, #c44569);
        color: white;
        margin: 1rem 2rem;
        border-radius: 15px;
        border: none;
    }
    
    .nav-menu .btn-contact svg {
        color: white;
    }
    
    /* Menü altı sosyal medya - Modern */
    .menu-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 107, 157, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    
    .menu-footer a {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff6b9d;
        font-size: 1.5rem;
        transition: all 0.3s;
        border: 2px solid transparent;
        box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
    }
    
    .menu-footer a:hover {
        background: linear-gradient(135deg, #ff6b9d, #c44569);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 107, 157, 0.35);
        border-color: white;
    }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes slideInMobile {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Menu links */
    .nav-menu a {
        color: var(--dark) !important;
        padding: 1.2rem 2rem;
        margin: 0.5rem 1rem;
        display: block;
        font-size: 1.1rem;
        border-left: 4px solid transparent;
        transition: all 0.3s;
        font-weight: 600;
        position: relative;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(255, 107, 157, 0.15);
        cursor: pointer;
        pointer-events: auto !important;
        text-decoration: none;
        z-index: 10;
    }
    
    .nav-menu a::after {
        content: '→';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%) translateX(-10px);
        opacity: 0;
        transition: all 0.3s;
        color: var(--primary);
        font-weight: bold;
        font-size: 1.2rem;
        pointer-events: none;
    }
    
    .nav-menu a:hover::after {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    
    .nav-menu a:hover {
        border-left-color: var(--primary);
        padding-right: 3rem;
        color: var(--primary) !important;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
        transform: translateX(5px);
    }
    
    /* Contact button mobilde */
    .btn-contact {
        background: linear-gradient(135deg, #ff6b9d, #c44569) !important;
        color: white !important;
        margin: 1.5rem 2rem;
        text-align: center;
        border-radius: 25px;
        box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
        border: none !important;
        padding: 1rem 2rem !important;
        font-weight: 600;
    }
    
    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 157, 0.5);
    }
    
    /* User dropdown mobilde fixed */
    .user-dropdown {
        position: fixed !important;
        top: 70px !important;
        right: 10px !important;
        z-index: 999999 !important;
    }
    
    .user-dropdown.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
}
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card.reverse .service-detail-image {
        order: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }


/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-placeholder {
    background: var(--gradient-pink);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.modern-card {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.95) 0%, rgba(196, 69, 105, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.card-icon-wrapper {
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.gallery-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.gallery-placeholder p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.gallery-note {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
}

.gallery-note p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gallery-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* About Section */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    background: var(--gradient-pink);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Values Section */
.values {
    background: var(--light);
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-card p {
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Logo Styles */
.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.logo-svg {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-svg {
        height: 40px;
    }
}


/* Auth Section */
.auth-section {
    padding: 6rem 0;
    background: var(--light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.auth-image {
    background: var(--gradient);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.auth-image h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.auth-image p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.auth-form-container {
    padding: 3rem;
}

.auth-form-container h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.auth-form label i {
    color: var(--primary);
}

.auth-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--secondary);
}

.btn-block {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light);
}

.auth-footer p {
    color: #7f8c8d;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .auth-image {
        padding: 2rem;
    }
    
    .auth-image svg {
        width: 200px;
        height: 200px;
    }
    
    .auth-form-container {
        padding: 2rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}


/* Main Slider */
.main-slider {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

@media (min-width: 1200px) {
    .slider-container {
        height: 700px;
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

@media (min-width: 769px) {
    .slide {
        background-size: 100% 100% !important;
    }
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content {
    max-width: 700px;
    color: white;
    animation: slideInUp 1s ease;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    line-height: 1.6;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 350px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
}


/* Hamburger Menu - Tekrar eden tanımlar temizlendi */

/* ========================================
   MOBILE OVERLAY
   ======================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s;
    z-index: 999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
}


/* Modern Auth Styles - Enhanced Large Design */
.auth-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.auth-wrapper-modern {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-container-modern {
    padding: 4rem 3.5rem;
    position: relative;
}

.auth-form-container-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b9d);
}

.auth-form-container-modern h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

.auth-form-container-modern .auth-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.auth-form-container-modern .auth-form {
    margin-top: 2.5rem;
}

.auth-form-container-modern .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.auth-form-container-modern label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.auth-form-container-modern label i {
    color: var(--primary);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.auth-form-container-modern input {
    width: 100%;
    padding: 1.3rem 1.5rem;
    border: 3px solid #e8ecef;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    font-weight: 500;
}

.auth-form-container-modern input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.auth-form-container-modern input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(255, 107, 157, 0.12);
    background: white;
    transform: translateY(-2px);
}

.auth-form-container-modern .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.auth-form-container-modern .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    color: var(--dark);
    font-weight: 500;
}

.auth-form-container-modern .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.auth-form-container-modern .forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.auth-form-container-modern .forgot-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.auth-form-container-modern .forgot-link:hover::after {
    width: 100%;
}

.auth-form-container-modern .forgot-link:hover {
    color: var(--secondary);
}

.auth-form-container-modern .btn-block {
    width: 100%;
    padding: 1.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2, #ff6b9d);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.auth-form-container-modern .btn-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.auth-form-container-modern .btn-block:hover::before {
    left: 100%;
}

.auth-form-container-modern .btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.auth-form-container-modern .btn-block:active {
    transform: translateY(-1px);
}

.auth-form-container-modern .auth-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 3px solid #e8ecef;
}

.auth-form-container-modern .auth-footer p {
    color: #6c757d;
    font-size: 1.05rem;
    font-weight: 500;
}

.auth-form-container-modern .auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 2px;
}

.auth-form-container-modern .auth-footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.auth-form-container-modern .auth-footer a:hover::after {
    width: 100%;
}

.auth-form-container-modern .auth-footer a:hover {
    color: var(--secondary);
}

.auth-form-container-modern .alert {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-container-modern .alert i {
    font-size: 1.5rem;
}

.auth-form-container-modern .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 2px solid #b1dfbb;
}

.auth-form-container-modern .alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 2px solid #f1b0b7;
}

@media (max-width: 768px) {
    .auth-section {
        padding: 6rem 1rem;
    }
    
    .auth-wrapper-modern {
        margin: 1rem;
        border-radius: 20px;
    }
    
    .auth-form-container-modern {
        padding: 3rem 2rem;
    }
    
    .auth-form-container-modern h2 {
        font-size: 2.2rem;
    }
    
    .auth-form-container-modern .auth-subtitle {
        font-size: 1rem;
    }
    
    .auth-form-container-modern input {
        padding: 1.1rem 1.2rem;
        font-size: 1rem;
    }
    
    .auth-form-container-modern .btn-block {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .auth-form-container-modern {
        padding: 2.5rem 1.5rem;
    }
    
    .auth-form-container-modern h2 {
        font-size: 1.8rem;
    }
    
    .auth-form-container-modern .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}


/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.gallery-note p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.gallery-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* Instagram Float Button */
.instagram-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
    text-decoration: none;
    transition: all 0.3s;
    z-index: 999;
    animation: instagramPulse 2s infinite;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(188, 24, 136, 0.6);
}

@keyframes instagramPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(188, 24, 136, 0.7);
    }
}

@media (max-width: 768px) {
    .instagram-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 75px;
        right: 15px;
    }
}


/* App Download Button */
.app-download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.app-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.app-download-btn i {
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .app-download-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .app-download-btn span {
        display: none;
    }
    
    .app-download-btn i {
        font-size: 1.3rem;
    }
}

/* Nav Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.user-dropdown a:hover {
    background: var(--light);
    color: var(--primary);
}

.user-dropdown a i {
    width: 20px;
}

@media (max-width: 968px) {
    .nav-right {
        gap: 0.5rem;
    }
}


/* ========================================
   AUTH MODAL - Modern Popup
   ======================================== */

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.auth-modal-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-auth-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.1);
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-auth-modal:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.auth-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.auth-tabs {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.auth-tabs h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.auth-tabs p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.auth-tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 250px;
}

.auth-tab {
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.auth-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.auth-tab.active {
    background: white;
    color: var(--primary);
    border-color: white;
}

.auth-forms {
    padding: 3rem;
    overflow-y: auto;
}

.auth-form-content {
    display: none;
}

.auth-form-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.auth-form-content p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.auth-form-content .form-group {
    margin-bottom: 1.5rem;
}

.auth-form-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.auth-form-content input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.auth-form-content input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.auth-form-content .btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.auth-form-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-modal-body {
        grid-template-columns: 1fr;
    }
    
    .auth-tabs {
        padding: 2rem 1.5rem;
    }
    
    .auth-tabs h2 {
        font-size: 1.5rem;
    }
    
    .auth-tab-buttons {
        flex-direction: row;
        max-width: 100%;
    }
    
    .auth-tab {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .auth-forms {
        padding: 2rem 1.5rem;
    }
    
    .auth-form-content h3 {
        font-size: 1.5rem;
    }
}


/* Slider Navigation Buttons - Gizli */
.slider-btn, .prev-btn, .next-btn {
    display: none !important;
}


/* Auth Modal Scroll Fix */
.auth-modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-body {
    max-height: 80vh;
    overflow-y: auto;
}
