/* assets/css/style.css */


:root {
    --bg: #070707;
    --bg2: #0D0D0D;
    --gold: #D4AF37;
    --goldHi: #F4D77A;
    --goldDeep: #8A6E1A;
    --text: #F5F5F5;
    --muted: rgba(245, 245, 245, 0.72);
    --stroke: rgba(212, 175, 55, 0.35);
    --glass: rgba(255, 255, 255, 0.06);
    --shadow: rgba(0, 0, 0, 0.55);
    

    --easing: cubic-bezier(0.2, 0.9, 0.2, 1);
    --duration: 800ms;
    --stagger: 100ms;
    
 
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}


.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografi Hiyerarşisi */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 1.5px;
}

h1 {
    font-size: 64px;
    line-height: 1.1;
}

h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 36px;
    line-height: 1.2;
}

h4 {
    font-size: 24px;
    line-height: 1.3;
}

p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}


section {
    padding: 120px 0;
}

.section-title {
    position: relative;
    margin-bottom: 70px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--goldDeep), var(--gold), var(--goldHi));
    transition: width 0.6s var(--easing);
}

.section-title:hover::after {
    width: 140px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.6s var(--easing);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--goldDeep), var(--gold), var(--goldHi));
    color: #0D0D0D;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--stroke);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--goldHi);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.6s var(--easing);
    backdrop-filter: blur(8px);
    background-color: rgba(7, 7, 7, 0.85);
}

header.scrolled {
    padding: 18px 0;
    background-color: var(--bg2);
    border-bottom: 1px solid var(--stroke);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.6s var(--easing);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo span {
    color: var(--text);
}

.nav-desktop {
    display: flex;
    gap: 40px;
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.4s var(--easing);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--goldDeep), var(--gold), var(--goldHi));
    transition: width 0.4s var(--easing);
}

.nav-link:hover {
    color: var(--goldHi);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 100%;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s var(--easing);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg2);
    z-index: 1002;
    padding: 100px 40px 40px;
    transition: right 0.4s var(--easing);
    border-left: 1px solid var(--stroke);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    position: absolute;
    top: 30px;
    right: 30px;
    left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--stroke);
}

.mobile-menu-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 22px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--easing);
}

.mobile-close-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.mobile-nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--easing);
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
    padding-left: 10px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--easing);
    backdrop-filter: blur(3px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 700px;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}


.hero-slide.intro {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1435575653489-b0873ec954e2?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
}


.hero-slide.card-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}


.hero-slide.card-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}


.hero-slide.card-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
    width: 100%;
    /* Header'ın altında kalmasını engellemek için */
    margin-top: 60px;
}

.hero-content-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hero-slide-content.active {
    opacity: 1;
    visibility: visible;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--goldHi);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 30px auto 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.6s;
    padding: 0 10px;
}

.hero-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.9s;
}

.hero-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}


.timeline-stats-section {
    background-color: var(--bg2);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--stroke);
    transform: translateY(-50%);
}

.timeline-point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg2);
    border: 2px solid var(--stroke);
    transition: all 0.6s var(--easing);
    margin-bottom: 15px;
}

.timeline-point:hover .timeline-dot {
    transform: scale(1.5);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.timeline-year {
    font-size: 18px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.6s var(--easing);
}

.timeline-point:hover .timeline-year {
    color: var(--goldHi);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.6s var(--easing);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-desc {
    font-size: 16px;
    color: var(--muted);
}


.story-section {
    position: relative;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    z-index: 2;
    pointer-events: none;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1.2s var(--easing);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content ul {
    list-style: none;
    margin-top: 30px;
}

.story-content li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: var(--muted);
    opacity: 0;
    transform: translateY(20px);
}

.story-content li i {
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
}


.featured-projects {
    background-color: var(--bg2);
    position: relative;
    overflow: hidden;
}

.featured-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://plus.unsplash.com/premium_photo-1680806491608-af096f1fc916?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.featured-slider-container {
    position: relative;
    z-index: 1;
}

.featured-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.featured-slides {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.featured-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 20px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    visibility: hidden;
}

.featured-slide.active {
    opacity: 1;
    position: relative;
    transform: translateX(0);
    visibility: visible;
}

.featured-slide.prev {
    transform: translateX(-100%);
}

.featured-slide.next {
    transform: translateX(100%);
}   

.slide-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    height: 500px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}        

.featured-slide.active .slide-image {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 992px) {
    .featured-slide {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--easing);
}

.slide-image:hover img {
    transform: scale(1.03);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--goldDeep), var(--gold));
    color: #0D0D0D;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.slide-content h3 {
    margin-bottom: 20px;
    color: var(--text);
}

.slide-content p {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.7;
}

.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: var(--glass);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold);
    font-size: 18px;
    border: 1px solid var(--stroke);
}

.detail-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.detail-text p {
    font-size: 16px;
    color: var(--text);
    margin: 0;
}


.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--stroke);
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
    background: rgba(13, 13, 13, 0.8);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot.active {
    background-color: var(--gold);
    transform: scale(1.25);
}

.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.featured-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}


.services-section {
    background-color: var(--bg2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--glass);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--stroke);
    transition: all 0.6s var(--easing);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--goldHi));
    transition: left 0.6s var(--easing);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 25px;
}

.service-card h4 {
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    font-size: 15px;
    margin: 0;
}

/* 8) MİSYON & VİZYON */
.mission-vision-section {
    position: relative;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.mission-card, .vision-card {
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(138, 110, 26, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.vision-card {
    background: linear-gradient(135deg, rgba(138, 110, 26, 0.05), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(138, 110, 26, 0.1);
}

.mission-card h3, .vision-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
}


.offices-section {
    background-color: var(--bg2);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

.office-card {
    background: var(--glass);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid var(--stroke);
    transition: all 0.6s var(--easing);
    position: relative;
}

.office-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--goldDeep), var(--gold), var(--goldHi));
    opacity: 0;
    transition: opacity 0.6s var(--easing);
    z-index: -1;
}

.office-card:hover {
    transform: translateY(-8px);
}

.office-card:hover::before {
    opacity: 1;
}

.office-card h4 {
    margin-bottom: 15px;
    color: var(--text);
}

.office-card p {
    margin-bottom: 25px;
    font-size: 15px;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 15px;
}

.contact-item i {
    color: var(--gold);
}


.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1608677662924-8b83590f474e?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 7, 0.8);
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
}


footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--stroke);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--text);
}

.footer-motto {
    color: var(--muted);
    font-size: 15px;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 18px;
    font-family: var(--font-sans);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.4s var(--easing);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--muted);
    font-size: 15px;
}

.contact-info-item i {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 3px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(245, 245, 245, 0.4) !important;
    font-size: 13px !important;
    letter-spacing: 0.2px;
    opacity: 0.7;
    margin-top: 5px;
}
.footer-bottom p {
    margin: 0;
    line-height: 1;
    font-size: inherit;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-child > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-slide {
        transition: none !important;
    }
}


@media (max-width: 1200px) {
    h1 { font-size: 56px; }
    h2 { font-size: 42px; }
    h3 { font-size: 32px; }
    
    section { padding: 100px 0; }
}

@media (max-width: 992px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    
    section { padding: 90px 0; }
    
    .hero-title { 
        font-size: 42px; 
        margin-bottom: 15px;
    }
    
    .hero-subtitle { 
        font-size: 18px; 
        margin-bottom: 25px;
    }
    
    .hero-description { 
        font-size: 16px; 
        margin: 20px auto 30px;
        line-height: 1.6;
        padding: 0 15px;
    }
    
    .stat-number { font-size: 44px; }
    
    .story-container, .mission-vision {
        gap: 40px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    h1 { 
        font-size: 34px;
        line-height: 1.2;
    }
    h2 { 
        font-size: 28px;
        margin-bottom: 30px;
    }
    h3 { font-size: 24px; }
    
    section { 
        padding: 70px 0;
    }
    
    .hero {
        height: 85vh;
        min-height: 600px;
    }
    
    .hero-title { 
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle { 
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-description { 
        font-size: 15px;
        margin: 15px auto 25px;
        line-height: 1.5;
        max-height: 180px;
        overflow-y: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .section-title:hover::after {
        width: 100px;
    }
    
    .slider-controls {
        margin-top: 30px;
        gap: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    

    .hero {
        padding-top: 80px; /* Header yüksekliği kadar boşluk */
    }
    
    .hero-content {
        margin-top: 0;
        padding-top: 20px;
    }
    
    .hero-content-inner {
        min-height: 450px;
    }
    
    .hero-slide-content {
        justify-content: flex-start;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    h1 { 
        font-size: 28px;
        line-height: 1.2;
    }
    h2 { 
        font-size: 24px;
    }
    h3 { 
        font-size: 22px;
    }
    
    section { 
        padding: 60px 0;
    }
    
    .hero {
        height: 80vh;
        min-height: 550px;
        padding-top: 70px; /* Daha küçük ekranlar için */
    }
    
    .hero-title { 
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle { 
        font-size: 15px;
    }
    
    .hero-description { 
        font-size: 14px;
        line-height: 1.4;
        max-height: 150px;
        margin: 10px auto 20px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .service-card,
    .office-card,
    .stat-card {
        padding: 25px 20px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px;
    }
    
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
    }
    

    .hero-content-inner {
        min-height: 400px;
    }
    
    .hero-slide-content {
        padding-top: 30px;
    }
    
    .hero-buttons {
        margin-top: 10px;
    }
}

@media (max-width: 380px) {
    .hero {
        min-height: 500px;
        padding-top: 60px;
    }
    
    .hero-content-inner {
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 13px;
        max-height: 120px;
    }
}


.btn-more {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-more:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--goldHi);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.projects-more {
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

.projects-more.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .projects-more {
        margin-top: 40px;
    }
    
    .btn-more {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .projects-more {
        margin-top: 30px;
    }
}