/* Temel stiller ve değişkenler */
:root {
    --black: #0a0a0a;
    --dark-purple: #4a1e7c;
    --purple: #6a3093;
    --light-purple: #8c52ff;
    --light-gray: #f0f0f0;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --orange: #ff7b25;
    --light-orange: #ff9d5c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--light-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

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

section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(106, 48, 147, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 123, 37, 0.5);
}

.btn:hover::before {
    left: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--light-gray);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--purple), var(--orange));
    border-radius: 2px;
}

/* Header & Navigasyon */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.8);
}

header.sticky {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--orange);
    margin-left: 4px;
}

.logo i {
    color: var(--purple);
    margin-right: 8px;
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 12px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    font-size: 16px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--purple), var(--orange));
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--light-orange);
}

.nav-links li a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(42, 15, 70, 0.8) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.2;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--light-gray);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--light-gray);
    box-shadow: none;
}

.btn-outline::before {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    opacity: 0.2;
}

.btn-outline:hover {
    color: white;
}

/* Hizmetler Bölümü */
.services {
    background-color: var(--dark-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%236a3093" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,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;
    background-position: center;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.6), rgba(28, 28, 28, 0.6));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(106, 48, 147, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--purple), var(--orange));
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(106, 48, 147, 0.3);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    color: var(--light-gray);
}

/* Portfolyo Bölümü */
.portfolio {
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff7b25" fill-opacity="0.05" d="M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,144C672,117,768,107,864,117.3C960,128,1056,160,1152,170.7C1248,181,1344,171,1392,165.3L1440,160L1440,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;
    background-position: center;
    z-index: 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 10px 25px;
    margin: 8px;
    background: transparent;
    color: var(--light-gray);
    border: 1px solid var(--purple);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 15px rgba(106, 48, 147, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(106, 48, 147, 0.8), rgba(255, 123, 37, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    opacity: 0;
}

.portfolio-overlay p {
    color: var(--light-gray);
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: all 0.5s ease;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* İletişim Bölümü */
.contact {
    background-color: var(--dark-gray);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%236a3093" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,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;
    background-position: center;
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: rgba(42, 42, 42, 0.5);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(106, 48, 147, 0.2);
}

.contact-icon {
    font-size: 24px;
    color: var(--orange);
    margin-right: 15px;
    background: rgba(255, 123, 37, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.contact-form {
    background: rgba(36, 36, 36, 0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(106, 48, 147, 0.2);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(106, 48, 147, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(106, 48, 147, 0.3);
}

textarea.form-control {
    min-height: 180px;
    resize: none;
}

/* Form durum mesajı */
.form-status {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}
.form-status.success {
    background: rgba(40, 167, 69, 0.15);
    color: #9be7b0;
    border: 1px solid rgba(40, 167, 69, 0.35);
}
.form-status.error {
    background: rgba(220, 53, 69, 0.15);
    color: #ffb3b8;
    border: 1px solid rgba(220, 53, 69, 0.35);
}

/* Footer */
footer {
    background: var(--black);
    padding: 70px 0 30px;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: white;
    border-radius: 50%;
    margin: 0 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.social-icon:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(106, 48, 147, 0.4);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 16px;
    color: var(--light-gray);
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 100px 20px 0;
        transition: all 0.5s ease;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-btn {
        display: block;
    }
    
    .menu-btn.active i::before {
        content: '\f00d';
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .service-card, .portfolio-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .footer-social {
        flex-wrap: wrap;
    }
    
    .social-icon {
        margin: 8px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.float {
    animation: float 5s ease-in-out infinite;
}

/* Honeypot alanını gizle */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}
