/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #030406;
    --card-bg: rgba(12, 14, 18, 0.75);
    --text-primary: #ffffff;
    --text-secondary: #9ea4ae;
    --gold-primary: #d5b04c;
    --gold-dark: #bca03f;
    --gold-glow: rgba(213, 176, 76, 0.15);
    --gold-gradient: linear-gradient(135deg, #f5d68a 0%, #d5b04c 50%, #9f7d29 100%);
    --whatsapp-color: #25d366;
    --instagram-color: #e1306c;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* background glow wrapper */
.bg-glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* ambient light effects */
.bg-ambient {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(213, 176, 76, 0.045) 0%, rgba(3, 4, 6, 0) 70%);
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

.bg-glow-1 {
    top: -300px;
    left: -200px;
}

.bg-glow-2 {
    top: 40%;
    right: -400px;
    background: radial-gradient(circle, rgba(213, 176, 76, 0.035) 0%, rgba(3, 4, 6, 0) 70%);
}

.bg-glow-3 {
    bottom: -300px;
    left: -200px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.015) 0%, rgba(3, 4, 6, 0) 70%);
}

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

/* Corporate Navbar */
.navbar {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 4, 6, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 1.5px solid var(--gold-primary);
    box-shadow: 0 0 10px rgba(213, 176, 76, 0.2);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.brand-gold {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold-primary);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover {
    color: #ffffff;
}

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

.btn-nav-whatsapp {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    transition: all var(--transition-speed) ease;
}

.btn-nav-whatsapp:hover {
    background: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transform: translateY(-1px);
}

/* Page Wrapper */
.page-container {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px 40px; /* Reduced bottom padding */
    display: flex;
    flex-direction: column;
    gap: 140px;
    z-index: 1;
}

/* SECTION 1: HERO SPLIT LAYOUT */
.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Corporate Badge */
.corporate-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(213, 176, 76, 0.07);
    border: 1px solid rgba(213, 176, 76, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(213, 176, 76, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(213, 176, 76, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(213, 176, 76, 0); }
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-primary);
}

/* Heading styles */
.main-heading {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(213, 176, 76, 0.1);
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
}

/* Pulsing Primary WhatsApp Button */
.hero-cta-wrapper {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.btn-whatsapp-primary {
    display: inline-flex;
    align-items: center;
    padding: 20px 42px;
    background-color: var(--whatsapp-color);
    color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3),
                0 0 0 4px rgba(37, 211, 102, 0.15);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn-glow {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-whatsapp-primary:hover .whatsapp-btn-glow {
    left: 125%;
}

.btn-whatsapp-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.4),
                0 0 0 6px rgba(37, 211, 102, 0.2);
    background-color: #21c25c;
}

.btn-whatsapp-primary i {
    font-size: 2rem;
    margin-right: 18px;
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-cta-text .main-label {
    font-size: 1.25rem;
    font-weight: 800;
}

.btn-cta-text .sub-label {
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 1px;
}

.btn-whatsapp-primary .arrow-icon {
    font-size: 1rem;
    margin-left: 24px;
    margin-right: 0;
    opacity: 0.8;
    transition: transform var(--transition-speed) ease;
}

.btn-whatsapp-primary:hover .arrow-icon {
    transform: translate(3px, -3px);
}

/* Horizontal Checklist */
.checklist-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    width: 100%;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--gold-primary);
    font-size: 1.1rem;
    display: flex;
}

.check-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* HERO VISUAL MOCKUP */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-mockup-wrapper {
    position: relative;
    width: 325px;
    padding: 10px;
    animation: floatFrame 6s ease-in-out infinite;
}

@keyframes floatFrame {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

.premium-phone {
    width: 100%;
    background: #090b0e;
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(213, 176, 76, 0.08);
    border: 3.5px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.phone-dynamic-island {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background-color: #000000;
    border-radius: 20px;
    z-index: 5;
}

/* Phone Screen UI */
.phone-screen-content {
    background-color: #0b0d10;
    color: #ffffff;
    border-radius: 38px;
    padding: 44px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 18px;
    text-align: left;
}

.screen-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--gold-primary);
}

.screen-header-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.screen-header-text h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.screen-header-text span {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.screen-header .verify-badge {
    color: var(--whatsapp-color);
    font-size: 0.95rem;
    display: flex;
}

/* Simulated chat messages */
.simulated-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    max-width: 85%;
    line-height: 1.4;
    text-align: left;
    position: relative;
}

.sender-name {
    font-size: 0.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.chat-time {
    font-size: 0.55rem;
    opacity: 0.6;
    float: right;
    margin-top: 4px;
}

.chat-message.receiver {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.receiver .sender-name {
    color: var(--gold-primary);
}

.chat-message.sender {
    background-color: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.15);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.sender .sender-name {
    color: var(--whatsapp-color);
}

.chat-message.highlight-msg {
    background: rgba(213, 176, 76, 0.08);
    border: 1px solid rgba(213, 176, 76, 0.25);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.highlight-msg .sender-name {
    color: #ffffff;
}

.screen-action-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--whatsapp-color);
    color: #ffffff;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color var(--transition-speed) ease;
}

.screen-action-btn:hover {
    background-color: #21c25c;
}

.screen-action-btn-instagram {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.screen-action-btn-instagram:hover {
    filter: brightness(1.15);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
}

/* Floating handshake badge */
.floating-badge-gold {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 76px;
    height: 76px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    box-shadow: 0 10px 25px rgba(213, 176, 76, 0.4);
    animation: rotateFloating 5s ease-in-out infinite;
    z-index: 10;
}

@keyframes rotateFloating {
    0% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-60%) rotate(10deg); }
    100% { transform: translateY(-50%) rotate(0deg); }
}

/* SECTION 2: NASIL ÇALIŞIR? */
.nasil-calisir-section, .why-section {
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(213, 176, 76, 0.1);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(213, 176, 76, 0.2);
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(213, 176, 76, 0.15) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    right: 20px;
    top: 10px;
    user-select: none;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 3: ADVANTAGES */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: left;
    transition: all var(--transition-speed) ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(213, 176, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.adv-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    background: rgba(213, 176, 76, 0.06);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(213, 176, 76, 0.12);
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.advantage-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 4: HIGH-IMPACT BANNER */
.banner-section {
    width: 100%;
}

.banner-glow-card {
    background: radial-gradient(circle at 80% 50%, rgba(213, 176, 76, 0.1) 0%, transparent 80%), var(--card-bg);
    border: 1px solid rgba(213, 176, 76, 0.2);
    border-left: 4px solid var(--gold-primary);
    border-radius: 32px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
                0 0 50px rgba(213, 176, 76, 0.03);
}

.banner-content {
    text-align: left;
    max-width: 600px;
}

.banner-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.banner-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.banner-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.banner-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 320px;
}

.btn-whatsapp-banner {
    width: 100%;
    padding: 18px;
    background-color: var(--whatsapp-color);
    color: #ffffff;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    transition: all var(--transition-speed) ease;
}

.btn-whatsapp-banner:hover {
    background-color: #21c25c;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.btn-instagram-secondary {
    width: 100%;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-speed) ease;
}

.btn-instagram-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(213, 176, 76, 0.3);
    color: var(--gold-primary);
}

/* Footer */
.site-footer {
    width: 100%;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 10;
    background: #020304;
    margin-top: auto; /* Push to bottom if content is short */
    margin-bottom: 0;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 900;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 600px;
    text-align: right;
    line-height: 1.5;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    .page-container {
        padding: 40px;
        gap: 100px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .main-heading {
        font-size: 3.8rem;
    }
    
    .sub-heading {
        margin-left: auto;
        margin-right: auto;
    }
    
    .checklist-horizontal {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .steps-grid, .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .banner-glow-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .banner-cta {
        margin: 0 auto;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .navbar {
        height: 80px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none; /* Hide desktop links on small mobile screens */
    }
    
    .page-container {
        padding: 30px 20px;
        gap: 80px;
    }
    
    .main-heading {
        font-size: 2.6rem;
        letter-spacing: -1px;
    }
    
    .sub-heading {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .btn-whatsapp-primary {
        width: 100%;
        padding: 16px 20px;
        justify-content: center;
    }
    
    .btn-whatsapp-primary i {
        font-size: 1.6rem;
        margin-right: 12px;
    }
    
    .btn-cta-text .main-label {
        font-size: 1.05rem;
    }
    
    .btn-cta-text .sub-label {
        font-size: 0.7rem;
    }
    
    .floating-badge-gold {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        right: -15px;
    }
}

/* ==========================================
   ARABA EKLEME FORMU & MODAL STILLERI
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: linear-gradient(135deg, rgba(17, 20, 26, 0.95), rgba(11, 13, 16, 0.98));
    border: 1px solid rgba(213, 176, 76, 0.2);
    border-radius: 24px;
    width: 90%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(213, 176, 76, 0.05);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(213, 176, 76, 0.2);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-secondary);
    letter-spacing: 0.5px;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(213, 176, 76, 0.03);
    box-shadow: 0 0 0 3px rgba(213, 176, 76, 0.15);
}

/* File Upload input */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(213, 176, 76, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--gold-primary);
    background: rgba(213, 176, 76, 0.02);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text i {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.file-upload-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.file-upload-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Image preview gallery inside form */
.image-preview-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ff4a4a;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}

.preview-remove-btn:hover {
    background: #ff4a4a;
    color: #ffffff;
}

/* Form Action Buttons */
.form-actions {
    margin-top: 30px;
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(213, 176, 76, 0.3);
    filter: brightness(1.1);
}

.btn-form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #000000;
    animation: spin 1s ease-in-out infinite;
}

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

/* ==========================================
   ADMIN PANEL STILLERI
   ========================================== */
.admin-page {
    background: #090b0e;
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 80px;
}

.admin-header {
    border-bottom: 1px solid rgba(213, 176, 76, 0.15);
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.admin-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.admin-logout {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.admin-logout:hover {
    background: rgba(255, 74, 74, 0.1);
    border-color: #ff4a4a;
    color: #ff4a4a;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

/* Listings section */
.listings-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.listings-title-bar h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.listings-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.listing-card {
    background: rgba(17, 20, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    transition: all 0.3s ease;
}

.listing-card:hover {
    border-color: rgba(213, 176, 76, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
    .listing-card {
        grid-template-columns: 1fr;
    }
}

/* Listing gallery */
.listing-media {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.listing-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.listing-thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.listing-thumb-img {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.listing-thumb-img:hover, .listing-thumb-img.active {
    opacity: 1;
    border-color: var(--gold-primary);
}

/* Listing content details */
.listing-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listing-info-header {
    margin-bottom: 12px;
}

.listing-brand-model {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.listing-meta span i {
    color: var(--gold-primary);
    margin-right: 6px;
}

.listing-price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-top: 12px;
}

.listing-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
}

.listing-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-listing-action {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-wp-publish {
    background: #25d366;
    border: none;
    color: #ffffff;
}

.btn-wp-publish:hover {
    background: #20b858;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-delete-listing {
    background: rgba(255, 74, 74, 0.1);
    border: 1px solid rgba(255, 74, 74, 0.2);
    color: #ff4a4a;
}

.btn-delete-listing:hover {
    background: #ff4a4a;
    color: #ffffff;
    border-color: #ff4a4a;
}

/* Sidebar Settings section */
.settings-panel {
    background: rgba(17, 20, 26, 0.9);
    border: 1px solid rgba(213, 176, 76, 0.15);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
}

.settings-panel h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-panel h3 i {
    color: var(--gold-primary);
}

.btn-settings-save {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-settings-save:hover {
    filter: brightness(1.1);
}

/* Auth overlay styling */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #090b0e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.auth-container {
    background: linear-gradient(135deg, rgba(17, 20, 26, 0.95), rgba(11, 13, 16, 0.98));
    border: 1px solid rgba(213, 176, 76, 0.25);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    text-align: center;
}

.auth-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.auth-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.empty-state i {
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

/* Mobil Sticky Button (Sabit Duracak Şık Buton) */
.mobile-sticky-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #0b0d10;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(213, 176, 76, 0.45);
    z-index: 999;
    display: none; /* Varsayılan olarak masaüstünde gizle */
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(213, 176, 76, 0.55);
}

/* Mobil Cihazlar İçin Form ve Modal Responsive Düzeltmeleri */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .modal-container {
        padding: 24px 16px;
        border-radius: 20px;
        width: 95%;
        margin: 10px;
    }
    .modal-close-btn {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .modal-title {
        font-size: 1.5rem;
        margin-top: 10px;
    }
    .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    .form-group {
        margin-bottom: 14px;
    }
    .mobile-sticky-btn {
        display: flex !important; /* Mobilde göster */
    }
}


