:root {
    --bg-base: #070709;
    --bg-surface: #111116;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --gold: #C5A059;
    --gold-hover: #D4B271;
    --text-white: #FFFFFF;
    --text-muted: #9595A0;
    --font-head: 'Jost', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-white);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

::selection {
    background-color: var(--gold);
    color: var(--bg-base);
}

a {
    text-decoration: none;
    color: inherit;
}

.cover-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.page-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
    overflow: visible;
}

.project-detail-hero {
    width: 100%;
    margin-bottom: 60px;
    height: auto !important;
    /* Her türlü yüksekliği serbest bırakır */
    overflow: visible !important;
}

.project-detail-hero img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .project-detail-hero img {
        max-height: none;
        /* Mobilde tam görünmesi için limiti kaldır */
    }
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 11, 16, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 10001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    width: max-content;
    min-width: 780px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 45px;
    width: 165px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s var(--ease);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(17, 17, 22, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    list-style: none;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    padding: 10px 25px;
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-align: center;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
}

.nav-links .dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links .dropdown>a::after {
    content: '▼';
    font-size: 0.6rem;
    margin-top: 1px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.dropdown:hover>a::after {
    transform: rotate(180deg);
}

.btn-contact {
    background-color: var(--gold);
    color: var(--bg-base) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.3s var(--ease);
}

.btn-contact:hover {
    background-color: var(--gold-hover);
}

.hero {
    min-height: 500px;
    max-height: 1000px;
    display: flex;
    align-items: flex-start;
    padding: 60px 5vw 120px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 70px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 85%;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--bg-base);
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s var(--ease);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-glass);
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: border-color 0.3s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
}

.stat-item h4 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: clamp(350px, 65vh, 700px);
    border-radius: 30px;
    overflow: visible;
}

.main-img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.main-img img {
    filter: brightness(0.85);
    transition: transform 2s var(--ease);
}

.hero-visual:hover .main-img img {
    transform: scale(1.05);
}

.floating-img {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: clamp(200px, 45%, 380px);
    aspect-ratio: 4/5;
    height: auto;
    border-radius: 20px;
    border: 12px solid var(--bg-base);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

section {
    padding: 40px 5vw;
}

.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.sec-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
}

.sec-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text-content {
    position: sticky;
    top: 150px;
}

.about-text-content h3 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-visuals {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-img-box {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-img-box:nth-child(2) {
    aspect-ratio: 16/9;
}

.services-container {
    display: flex;
    height: 600px;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-panel {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s var(--ease);
    min-width: 0;
}

.service-panel:hover {
    flex: 3;
}

.service-panel img {
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(80%) brightness(0.4);
    transition: 0.6s var(--ease);
}

.service-panel:hover img {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.05);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.service-content h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-desc {
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s var(--ease);
    max-width: 400px;
}

.service-panel:hover .service-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .project-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-list {
        grid-template-columns: 1fr;
    }
}

.project-card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
}

.project-card img {
    filter: brightness(0.7);
    transition: transform 1.5s var(--ease);
}

.project-card:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

.project-info {
    position: absolute;
    bottom: 30px;
    /* Biraz daha aşağı çekildi */
    left: 30px;
    /* Sola dayandı */
    right: 30px;
    z-index: 10;
    text-align: left;
    /* Sola dayalı */
}

.project-info h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    /* Boyut biraz küçültüldü */
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 0;
}

.project-info span {
    display: inline-block;
    background-color: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    /* Tek satır olması için */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Tam 2'li düzen */
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 100px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 80px 60px;
    /* Kare formuna yaklaşmak için dikey padding artırıldı */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 520px;
    /* Kare görünümü için yükseklik sabitlendi */
    z-index: 1;
}

/* Bento yapıları silindi, tam kare 2x2 nizamı kuruldu */

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(197, 160, 89, 0.15), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.6s var(--ease);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg {
    stroke: var(--bg-base);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.feature-num {
    font-family: var(--font-head);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.02);
    position: absolute;
    bottom: -30px;
    right: 10px;
    line-height: 1;
    transition: all 0.8s ease;
    user-select: none;
    z-index: 0;
}

.feature-card:hover .feature-num {
    color: rgba(197, 160, 89, 0.05);
    transform: scale(1.1) rotate(-5deg);
}

/* Neden Biz? Sayfası Premium Eklemeler */
.stats-section {
    margin-top: 100px;
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(197, 160, 89, 0.03) 50%, transparent 100%);
    text-align: center;
}

.stats-content {
    max-width: 1000px;
    margin: 0 auto;
}

.stats-content h2 {
    margin-bottom: 20px;
}

.stats-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.stats-section .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.stats-section .stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 50px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
}

.stats-section .stat-item h4 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-section .stat-item p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--text-white);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--text-white);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay a {
    font-family: var(--font-head);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}

.mobile-overlay a:hover,
.mobile-overlay a.active {
    color: var(--gold);
    transform: scale(1.1);
}

.mobile-overlay .mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile-dropdown-btn::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active::after {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-content.active {
    max-height: 300px;
    opacity: 1;
    margin-top: 15px;
    padding: 10px 0;
}

.mobile-overlay .mobile-dropdown-content a {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* Gereksiz kısımlar silindi */

#iletisim {
    padding-bottom: 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateX(10px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.info-text h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-white);
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-form label {
    position: absolute;
    left: 24px;
    top: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.modern-form input:focus~label,
.modern-form input:not(:placeholder-shown)~label,
.modern-form textarea:focus~label,
.modern-form textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: #0b0b0f;
    padding: 0 10px;
    border-radius: 4px;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, #b38b4d 100%);
    color: var(--bg-base);
    border: none;
    padding: 20px 48px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.5);
}

footer {
    background-color: #08080c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 5vw 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-white);
}

.footer-about img {
    height: 42px;
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg-base);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.nav-links a.active {
    color: var(--gold);
}

.page-hero {
    padding: 110px 5vw 20px;
    /* Üst 140'dan 110'a, alt 40'dan 20'ye çekildi */
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.04) 0%, var(--bg-base) 100%);
    border-bottom: 1px solid var(--border-glass);
}

.page-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    /* İçeriği ortalar */
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Yatayda ortalar */
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.2);
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0px;
    /* 15'den 0'a çekildi */
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
}

.page-content {
    padding: 20px 5vw;
    /* 40'dan 20'ye çekildi */
    max-width: 1300px;
    margin: 0 auto;
}

.page-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-content h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content strong {
    color: var(--text-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    /* Boşluk 40'dan 30'a çekildi */
    align-items: flex-start;
    margin-top: 0;
    /* Üst boşluk sıfırlandı, padding yeterli */
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s var(--ease);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card h4 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--gold);
}

.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-detail-card .card-image {
    height: 240px;
    overflow: hidden;
}

.service-detail-card .card-image img {
    transition: transform 1s var(--ease);
}

.service-detail-card:hover .card-image img {
    transform: scale(1.05);
}

.service-detail-card .card-body {
    padding: 30px;
}

.service-detail-card .card-body h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 0;
}

.service-detail-card .card-body p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Silindi: Mükerrer kısıtlayıcı blok */

.project-meta {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.meta-item h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.meta-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.4s var(--ease);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid var(--border-glass);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) invert(92%) contrast(83%);
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1024px) {
    .hero {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 40vh;
        margin-top: 0;
        order: -1;
    }

    .hero-text {
        order: 2;
    }

    .floating-img {
        width: 240px;
        height: 300px;
        bottom: -30px;
        left: -10px;
        border-width: 8px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-text-content {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .services-container {
        flex-direction: column;
        height: auto;
    }

    .service-panel {
        height: 200px;
    }

    .service-panel:hover {
        flex: none;
        height: 350px;
    }

    .service-desc {
        opacity: 1;
        transform: translateY(0);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 95%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .floating-nav {
        position: fixed !important;
        top: 20px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        transform: none !important;
        padding: 10px 15px !important;
        z-index: 10001 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
        border-radius: 50px !important;
        box-sizing: border-box !important;
    }

    .nav-logo img {
        height: 32px !important;
        width: auto !important;
    }

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .btn-contact {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }

    .hero-title {
        font-size: 4.5rem;
        line-height: 1.1;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 25px;
        margin-top: 30px;
        border-top: 1px solid var(--border-glass);
        padding-top: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
    }

    .stat-item h4 {
        font-size: 1.8rem;
    }

    .sec-title {
        font-size: 2.2rem;
    }

    .project-info h3 {
        font-size: 1.8rem;
    }

    .project-info {
        left: 20px;
        bottom: 25px;
    }

    /* Sayfa Bazlı Kart Düzenlemeleri (Hizmetler, Neden Biz, Hakkımızda) */
    .features-grid,
    .service-detail-grid,
    .value-cards {
        grid-template-columns: 1fr !important;
        margin-top: 30px !important;
        gap: 20px !important;
    }

    .feature-card,
    .service-detail-card,
    .value-card {
        padding: 30px 20px !important;
        min-height: auto !important;
        text-align: left !important;
        border-radius: 20px !important;
    }

    .feature-card h3,
    .service-detail-card h3,
    .value-card h4 {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 25px;
    }

    .feature-num {
        font-size: 5rem !important;
        opacity: 0.1 !important;
        bottom: -10px !important;
        right: 0 !important;
    }

    .service-detail-card .card-image {
        height: 200px !important;
    }

    .stats-section {
        padding: 40px 0;
        margin-top: 40px;
    }

    .stats-section .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stats-section .stat-item {
        min-width: 100%;
        padding: 20px;
    }

    footer {
        padding: 60px 5vw 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-about {
        align-items: flex-start;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .page-hero {
        padding: 130px 5vw 40px !important;
    }

    .page-hero h1 {
        font-size: 2.3rem !important;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}