/* 
   Sedat Alagöz - E-Ticaret Paket Landing Page
   Design: Modern, Agency Style, Clean
*/

:root {
    /* Primary Colors - Matching sedatalagoz.com (Dark Purple Theme) */
    --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --primary-text: #f8fafc;
    --secondary-text: #cbd5e1;

    /* Semantic Colors - Dark Theme */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-light: #1e293b;
    --bg-lighter: #334155;
    --accent-glow: rgba(139, 92, 246, 0.15);
    --accent-glow-strong: rgba(139, 92, 246, 0.25);
    --border-color: #334155;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary-text);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-darker);
}

.bg-dark {
    background-color: var(--bg-dark);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.badge {
    background: var(--accent-glow);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.6);
}

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

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.5);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-text);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-text);
    font-weight: 500;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-text);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, var(--accent-glow) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-title span {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
}

.tag i {
    width: 18px;
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

/* Hero Browser Mockup */
.hero-browser-mockup {
    position: relative;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.hero-browser-header {
    background: var(--bg-darker);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.hero-browser-url {
    flex: 1;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--secondary-text);
    text-align: center;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.hero-browser-content {
    background: var(--bg-darker);
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-site-preview {
    width: 100%;
    height: auto;
    display: block;
    animation: autoScroll 20s ease-in-out infinite;
}

@keyframes autoScroll {

    0%,
    10% {
        transform: translateY(0);
    }

    45%,
    55% {
        transform: translateY(calc(-100% + 500px));
    }

    90%,
    100% {
        transform: translateY(0);
    }
}

/* Old image-wrapper styles (keeping for compatibility) */
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.floating-card {
    position: absolute;
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floating 3s ease-in-out infinite;
    z-index: 10;
}

.card-1 {
    top: 20px;
    right: -30px;
}

.card-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 1.5s;
}

.floating-card i {
    color: var(--primary);
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Target Audience Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.target-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.target-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-glow);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary);
}

.feature-item i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* How it Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-color);
    margin-bottom: 10px;
    display: block;
}

.step:hover .step-number {
    -webkit-text-stroke: 1px var(--primary);
}

/* Pricing Section */
.pricing .container {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--primary-gradient);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.1;
}

.pricing-header .price {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--primary-text);
}

.pricing-header .price span {
    font-size: 1.5rem;
    color: var(--secondary-text);
}

.pricing-features {
    list-style: none;
    margin: 40px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.pricing-features li i {
    color: #10b981;
    width: 20px;
}

/* Why One Page */
.info-box {
    background: var(--primary-gradient);
    border-radius: 32px;
    padding: 60px;
    color: white;
}

.info-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 20px;
}

.warning-text {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.warning-text i {
    color: #facc15;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.trust-item i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
    border-radius: 40px;
    padding: 80px;
    border: 1px solid var(--border-color);
}

.cta-text h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.cta-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--primary-text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-text);
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-darker);
    color: var(--primary-text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* Site Preview Section */
.site-preview {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.preview-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.browser-mockup {
    background: var(--bg-light);
    border-radius: 16px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.browser-header {
    background: var(--bg-darker);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    background: var(--bg-light);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--secondary-text);
    text-align: center;
    border: 1px solid var(--border-color);
}

.browser-content {
    background: var(--bg-darker);
    max-height: 600px;
    overflow-y: auto;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Admin Panel Preview Section */
.admin-preview {
    overflow: visible;
}

.admin-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.admin-text h2 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.admin-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.admin-features {
    list-style: none;
    margin: 30px 0;
}

.admin-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--primary-text);
}

.admin-features li i {
    color: #10b981;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-info {
    margin-top: 15px;
    color: var(--secondary-text);
    font-style: italic;
}

.admin-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    transition: var(--transition);
}

.admin-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.25);
}

.admin-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-darker);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-info {
    flex: 1;
}

.footer-copyright {
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--secondary-text);
    opacity: 0.7;
}

.footer-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-btn {
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 12px 24px;
}

.footer-btn:hover {
    transform: translateX(-3px);
}

.footer-btn i {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero .container,
    .cta-wrapper,
    .admin-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-tags,
    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        margin: 0 auto;
    }

    .admin-content {
        gap: 40px;
    }

    .admin-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .steps-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-wrapper {
        padding: 40px 24px;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-actions {
        width: 100%;
        justify-content: center;
    }

    .footer-btn {
        width: 100%;
    }

    .browser-content {
        max-height: 400px;
    }

    .admin-text h2 {
        font-size: 2rem;
    }

    .admin-features li {
        font-size: 0.95rem;
    }
}