/* CSS içeriği buraya gelecek */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #ffffff;
    --secondary-black: #f0f0f0;
    --accent-red: #0077cc;
    --light-gray: #333333;
    --dark-gray: #cccccc;
    --medium-gray: #777777;
    --gradient-bg: linear-gradient(135deg, #083daf 0%, rgba(255, 255, 255, 0.1) 50%, #000000 100%);
}

/* Dark theme variables */
[data-theme="dark"] {
    --primary-black: #0a0a1a;
    --secondary-black: #1a1a1a;
    --accent-red: #0077cc;
    --light-gray: #e0e0e0;
    --dark-gray: #333333;
    --medium-gray: #999999;
    --gradient-bg: linear-gradient(135deg, #083daf 0%, rgba(0, 119, 204, 0.1) 50%, #000000 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-black);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(50, 38, 220, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--accent-red), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--secondary-black);
    border: 2px solid var(--dark-gray);
    color: var(--light-gray);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    transform: scale(1.1);
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--light-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    color: var(--accent-red);
}

/* Mobile Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Section */
.hero {
    height: 60vh;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    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 100 100"><defs><pattern id="grid" width="4" height="4" patternUnits="userSpaceOnUse"><path d="M 4 0 L 0 0 0 4" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0077cc;
    color: white;
}

.btn-primary:hover {
    background: #005fa3;
    box-shadow: 0 10px 25px rgba(0, 119, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
    background: var(--light-gray);
    color: var(--primary-black);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--secondary-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--light-gray), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(0, 119, 204, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--primary-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--dark-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), #005fa3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 25px 50px rgba(0, 119, 204, 0.2);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.pricing-card > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.8rem 0;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--dark-gray);
    position: relative;
    padding-left: 2rem;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.price {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.price strong {
    font-size: 2rem;
    color: var(--accent-red);
    font-weight: 700;
}

/* Extra Services */
.extra-services {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--secondary-black);
    border-radius: 15px;
    border: 1px solid var(--dark-gray);
}

.extra-services h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    text-align: center;
}

.extra-services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.extra-services ul li {
    padding: 1rem;
    background: var(--primary-black);
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
    color: var(--medium-gray);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
}

.extra-services ul li::before {
    content: '+';
    position: absolute;
    left: 1rem;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.extra-services ul li:hover {
    border-color: var(--accent-red);
    background: var(--dark-gray);
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--secondary-black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleY(1);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 30px rgba(0, 119, 204, 0.15);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.process-step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--light-gray);
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--dark-gray);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dark-gray);
}

.footer-logo {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-about p {
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: space-evenly;
}

.footer-socials .social-link {
    color: #777777;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-socials .social-link:hover {
    color: var(--accent-red);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--accent-red);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact i {
    color: var(--accent-red);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutToTop {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background: var(--primary-black);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 15px;
        border: 1px solid var(--dark-gray);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        animation: slideOutToTop 0.3s ease forwards;
    }

    .nav-links.active {
        display: flex;
        animation: slideInFromTop 0.3s ease forwards;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .pricing-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .extra-services ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}