@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-color: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}



h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    color: var(--text-color);
    opacity: 0.7;
}

/* Custom Navbar */
.navbar-custom {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    flex-wrap: nowrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
}

.brand-icon {
    height: 50px;
    border-radius: 4px;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}

.brand-forma {
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1;
}

.brand-architects {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-muted);
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #25D366;
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 50px; /* Pill shape */
    font-size: 0.95rem !important;
    font-weight: 500;
    letter-spacing: 0 !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    opacity: 1 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 100px; /* offset for absolute navbar */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop'); /* Modern building */
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.5;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.hero-content {
    max-width: 500px;
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 400px;
}

.hero-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slide-indicator {
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
}

.slide-indicator.active {
    color: var(--text-color);
}

.slide-indicator:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background-color: #333;
}

/* Services Section */
.services-section {
    background-color: #050505;
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.service-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-color);
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1002; /* Menü açıkken üstte kalsın */
    padding: 0;
    transition: transform 0.2s ease;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

/* Drawer Overlay (arka plan kapatma) */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: transparent;
}

.nav-overlay.active {
    display: block;
}

/* Projects Section */
.projects-section {
    padding: 6rem 5%;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-category {
    background-color: #111;
    border: 1px solid #222;
    padding: 3rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #333;
}

.project-category-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 500;
}

.project-category-desc {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.sub-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.sub-project-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 500;
}

.sub-project-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About / Team Section */
.about-section {
    padding: 6rem 5%;
    background-color: #050505;
}

/* Founder Showcase */
.founder-showcase {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.founder-image-card {
    flex: 0 0 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 600px;
}

.founder-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 4rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

.founder-name {
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
}

.founder-role {
    font-size: 1rem;
    color: #ccc;
    display: block;
    margin-top: 5px;
}

.founder-content {
    flex: 1;
}

.founder-heading {
    font-size: 3.5rem;
    color: #4a90e2; /* Blueish accent */
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.founder-text p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Mini Vision & Mission */
.vm-mini-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vm-mini-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.vm-mini-icon {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.vm-mini-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.vm-mini-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
}

.vm-mini-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.4;
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-info-top {
    margin-bottom: 1rem;
}

.team-info-bottom {
    margin-top: 1.2rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.team-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    display: block;
}

.team-member:hover .team-image-wrapper img {
    transform: scale(1.05);
}


/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.team-grid .team-image-wrapper {
    height: 400px;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 5%;
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

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

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

.gallery-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background-color: #050505;
}

.contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background-color: #111;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--accent-color);
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h4 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

/* Footer */
.site-footer {
    background-color: #000;
    padding: 5rem 5% 0 5%;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.footer-brand {
    flex: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-forma {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1;
}

.footer-architects {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links, .footer-social {
    flex: 1;
}

.footer-links h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #111;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #111;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }

    .hamburger-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px; /* Gizle */
        width: 280px;
        height: 100vh;
        background-color: rgba(20, 20, 22, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-left: 1px solid rgba(255,255,255,0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        padding: 80px 2.5rem 3rem 2.5rem;
        box-sizing: border-box;
    }

    .nav-links.active {
        right: 0; /* Göster */
        box-shadow: -20px 0 60px rgba(0,0,0,0.6);
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 1.5px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        display: block;
        text-transform: uppercase;
        opacity: 0.85;
        transition: opacity 0.2s ease, padding-left 0.2s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .nav-links a:hover {
        opacity: 1;
        padding-left: 8px;
    }

    .btn-whatsapp {
        font-size: 1.1rem !important;
        padding: 10px 24px;
    }

    .hero-title {
        font-size: 3rem;
    }
    .services-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-bg-image {
        width: 100%;
        mask-image: linear-gradient(to top, transparent, black 60%);
        -webkit-mask-image: linear-gradient(to top, transparent, black 60%);
    }

    .sub-projects {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-category {
        padding: 2rem;
    }

    .founder-showcase {
        flex-direction: column;
        gap: 2rem;
    }

    .founder-image-card {
        flex: 0 0 500px;
        width: 100%;
        max-width: 450px;
    }

    .founder-heading {
        font-size: 2.5rem;
    }

    .vm-mini-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member.founder .team-image-wrapper {
        height: 400px;
    }
}

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .brand-architects {
        display: none;
    }

    .brand-forma {
        font-size: 1.4rem;
    }

    .navbar-custom {
        padding: 1.2rem 5%;
    }
}
/* Page Padding for Internal Pages */
.page-padding-top { padding-top: 150px; min-height: 80vh; }

/* ==================================================
   NEW HOME PAGE & PROJECTS SECTIONS
   ================================================== */

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #4a90e2;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

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

/* Stats Section */
.stats-section {
    background-color: #080808;
    padding: 5rem 5%;
    border-bottom: 1px solid #1a1a1a;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 2rem;
}
.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-family: 'Playfair Display', serif;
}
.stat-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 8rem 5%;
    background-color: var(--bg-color);
}
.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.why-us-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.why-us-image:hover img {
    transform: scale(1.05);
}
.why-us-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #4a90e2;
    padding: 2rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}
.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-top: 5px;
}
.why-us-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.why-us-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}
.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.why-us-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.list-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.list-icon svg { width: 20px; height: 20px; }
.list-text h4 { margin: 0 0 0.5rem 0; font-size: 1.2rem; }
.list-text p { margin: 0; color: var(--text-muted); line-height: 1.5; }

/* Featured Projects & Project Page Cards */
.featured-projects-section, .project-category-section {
    padding: 6rem 5%;
}
.project-category-section {
    border-bottom: 1px solid #111;
}
.featured-grid, .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.featured-card, .project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    display: block;
}
.featured-card img, .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.featured-overlay, .project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: opacity 0.3s ease;
}
.featured-card:hover img, .project-card:hover img {
    transform: scale(1.08);
}
.featured-category, .project-category-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a90e2;
    margin-bottom: 0.5rem;
    display: block;
}
.featured-title, .project-name {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.btn-primary-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-primary-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Projects Page Headers */
.projects-hero {
    text-align: center;
    padding: 5rem 5% 3rem;
    border-bottom: 1px solid #222;
}
.projects-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.projects-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.category-header {
    text-align: center;
    margin-bottom: 4rem;
}
.category-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}
.category-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .why-us-container { grid-template-columns: 1fr; gap: 3rem; }
    .why-us-experience-badge { right: 20px; }
}
@media (max-width: 768px) {
    .stats-container { grid-template-columns: 1fr; }
    .featured-grid, .project-grid { grid-template-columns: 1fr; }
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background-color: #050505;
    border-bottom: 1px solid #111;
    overflow: hidden;
}

.partners-section .section-header {
    padding: 0 5%;
    margin-bottom: 3rem;
}

/* Ticker wrapper - maskeleme için */
.partners-ticker-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Kenar soluk geçiş efekti */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Soldan sağa kayan şerit */
.partners-ticker {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 1.5rem;
    width: max-content;
    animation: tickerLeft 25s linear infinite;
}

.partners-ticker:hover {
    animation-play-state: paused;
}

/* Soldan sağa: başlangıç -50% (solda), bitiş 0 (sağa gider) */
@keyframes tickerLeft {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* Partner kartları */
.partner-card {
    flex-shrink: 0;
    width: 160px;
}

.partner-logo-box {
    background-color: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.8rem 1rem;
    white-space: nowrap;
    cursor: default;
}

.partner-logo-box:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: #4a90e2;
    background-color: rgba(74, 144, 226, 0.08);
    color: #fff;
}
