@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0a0a0a;
    --secondary: #161616;
    --accent: #3498db;
    --accent-hover: #2980b9;
    --inox: #e5e7eb;
    --inox-dark: #9ca3af;
    --text: #ffffff;
    --text-muted: #a3a3a3;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --white: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
    border: 2px solid var(--primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
}

.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--text);
}

.nav-mobile-btn {
    display: none !important;
}

/* Hero Sections - Fixed Header Fix */
.hero-slider {
    padding-top: 0;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 150px !important;
    /* Header'dan net şekilde kurtar */
    padding-bottom: 80px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Section Styling */
section {
    padding: 120px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
}

.section-title span {
    color: var(--accent);
}

/* Cards & Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.service-card-link {
    transition: var(--transition);
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    background: #1a1a1a;
    border-color: var(--accent);
}

.service-card-link:hover .service-card img {
    transform: scale(1.05);
}

.service-card-link:hover .service-card span {
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.services-swiper {
    padding-bottom: 20px !important;
}

/* Stats */
.stats {
    background: var(--secondary);
    padding: 100px 0;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-link:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    border-color: var(--accent) !important;
    transform: translateY(-5px);
}

.swiper-nav {
    position: relative;
    z-index: 100;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #050505;
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 10px;
}

/* Form Styles */
input,
textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #1a1a1a;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    margin: 60px 0;
}

.info-item {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.info-icon i {
    color: var(--accent);
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text);
}

.info-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-form-card {
    background: var(--secondary);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 992px) {
    .services-static-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-static-wrapper {
        grid-template-columns: 1fr !important;
    }

    .services-header h2 {
        font-size: 32px !important;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .navbar {
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-close {
        display: block !important;
    }

    .header-contact {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 140px !important;
    }
}

@media (max-width: 768px) {
    .category-filter-wrapper {
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px 40px -20px;
        padding: 0 20px 20px 20px;
    }

    .category-tabs {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        width: max-content;
    }

    .category-tabs .btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    /* Grid Adjustments */
    .services-grid,
    .footer-grid,
    .stats-grid,
    .story-grid,
    .about-grid,
    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-image {
        margin-top: 50px;
    }

    .detail-img-card {
        right: 0 !important;
        bottom: -20px !important;
        left: auto !important;
        z-index: 100;
    }

    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 140px 0 100px 0 !important;
        display: flex;
        align-items: center;
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    /* Fixed Header Fix for Sections */
    section {
        padding: 100px 0;
        scroll-margin-top: 80px;
    }

    .section-padding {
        padding: 100px 0 !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .contact-form-card {
        padding: 30px !important;
    }

    .contact-form-card .form-row {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        margin-left: 0 !important;
    }
}