*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Yatay taşmayı engelle */
}

section {
    margin: 0;
    padding: 0;
}

:root {
    --dark-bg: #1A1A1A;
    --gold: #B8860B;
    --white: #FFFFFF;
    --accent: #FF6B6B;
    --gradient-start: rgba(26, 26, 26, 0.95);
    --gradient-end: rgba(26, 26, 26, 0.85);
}

body {
    background-color: var(--dark-bg);
    min-height: 200vh;
    color: var(--white);
    font-family: Arial, sans-serif;
}

main {
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    background: transparent;
}

nav {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    gap: 4rem;
    background: transparent;
}

.logo {
    justify-self: start;
}

.logo img {
    height: 40px;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: auto;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: end;
    background: transparent;
    height: 100%;
    padding: 5px 0;
}

.logo-container img {
    height: 100%;
    width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    background: transparent;
    mix-blend-mode: darken;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    pointer-events: auto;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.hero {
    height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: 20rem; /* 200px */
    margin: 0;
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    line-height: 0.9;
    white-space: nowrap;
}

.hero-content p {
    font-size: 2.2rem;
    color: var(--white);
    margin: 0;
    position: absolute;
    top: 1rem;
    left: 6rem; /* I harfinin yanından başlaması için */
    white-space: nowrap;
    letter-spacing: 1px;
    text-align: left;
    font-weight: 500;
}

/* Üst yazı için yeni stil */
.top-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -5px; /* I harfinin yanına hizalamak için */
    text-align: left;
}

/* Imeras Pro yazısı için stil */
.main-text {
    margin-top: 20px; /* Üst yazı ile ana yazı arası mesafe */
}

.title-container {
    position: relative;
}

.hero-title {
    font-size: 20rem;
    margin: 0;
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    line-height: 0.9;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0;
    position: absolute;
    top: -0.5rem;
    left: 7rem;
    white-space: nowrap;
}

.background-logo {
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

/* Email link style */
.email-side {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    z-index: 1002;
    pointer-events: auto;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    opacity: 1;
}

.email-side a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

.email-side a:hover {
    color: var(--gold);
}

/* Social icons style */
.social-icons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1001;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.social-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-right: 0;
}

.social-icon {
    color: var(--white);
    width: 35px;
    height: 35px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-line {
    width: 30px;
    height: 1px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* LinkedIn */
.social-container:nth-child(1) {
    transition: transform 0.3s ease;
}

.social-container:nth-child(1):hover {
    transform: translateX(-5px);
}

.social-container:nth-child(1):hover .social-icon {
    background-color: #0077B5;
    border-color: #0077B5;
}

/* Instagram */
.social-container:nth-child(2) {
    transition: transform 0.3s ease;
}

.social-container:nth-child(2):hover {
    transform: translateX(-5px);
}

.social-container:nth-child(2):hover .social-icon {
    background-color: #E4405F;
    border-color: #E4405F;
}

/* Vimeo */
.social-container:nth-child(3) {
    transition: transform 0.3s ease;
}

.social-container:nth-child(3):hover {
    transform: translateX(-5px);
}

.social-container:nth-child(3):hover .social-icon {
    background-color: #1AB7EA;
    border-color: #1AB7EA;
}

.social-container:nth-child(1):hover .social-line {
    background-color: #0077B5;
    width: 40px;
}

.social-container:nth-child(2):hover .social-line {
    background-color: #E4405F;
    width: 40px;
}

.social-container:nth-child(3):hover .social-line {
    background-color: #1AB7EA;
    width: 40px;
}

/* Hover durumunda diğer ikonların sabit kalması için */
.social-container:not(:hover) .social-icon {
    transform: translateX(0);
}

.social-container:not(:hover) .social-line {
    transform: translateX(0);
}

.social-icons::before,
.social-icons::after {
    display: none;
}

/* Scroll behavior for email and social icons */
.email-side, .social-icons {
    transition: opacity 0.5s ease;
}

.email-side.hide, .social-icons.hide {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mouse-scroll {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: var(--white);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}

.second-section {
    height: 100vh;
    position: relative;
}

.circle-animation {
    position: fixed;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.yellow-circle {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100vw;
    height: 100vw;
    background-color: #FFD700;
    border-radius: 50%;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
    z-index: 1;
}

.circle-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 1000px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #1A1A1A;
    z-index: 11;
    pointer-events: none;
}

.circle-text-main {
    font-family: 'Futura PT';
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 500;
}

.circle-text-sub {
    font-size: 1.5rem;
    font-weight: 600;
}

.circle-text-main strong {
    font-weight: 700;
}

.circle-text-sub strong {
    font-weight: 700;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.slide-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #B8860B;
    transform: translateY(100%);
    animation: slideUp 1s forwards;
    z-index: 1000;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.circle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.animated-circle {
    position: absolute;
    bottom: -150%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: #B8860B;
    border-radius: 50%;
    transform: translate(-50%, 0) scale(0);
    animation: circleGrow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animated-circle.reverse {
    animation: circleGrowReverse 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes circleGrow {
    0% {
        transform: translate(-50%, 0) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes circleGrowReverse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 0) scale(0);
        opacity: 0;
    }
}

.rising-circle {
    position: fixed;
    left: 50%;
    width: 200vw;
    height: 200vw;
    background-color: #B8860B;
    border-radius: 50%;
    transform-origin: center;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
}

.rising-circle {
    bottom: -195vw;
    transform: translateX(-50%);
}

.rising-circle.step-1 {
    bottom: -180vw;
}

.rising-circle.step-2 {
    bottom: -150vw;
}

.rising-circle.step-3 {
    bottom: -100vw;
}

.rising-circle.step-4 {
    bottom: -50vw;
}

.rising-circle.full-screen {
    width: 100%;
    height: 100vh;
    bottom: 0;
    border-radius: 0;
    transform: translateX(-50%);
}

.circle-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    color: var(--dark-bg);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.circle-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.circle-text p:last-child {
    font-weight: bold;
    font-size: 2rem;
}

.yellow-circle.step-1 ~ .circle-text {
    opacity: 0;
}

.yellow-circle.step-2 ~ .circle-text {
    opacity: 0.2;
}

.yellow-circle.step-3 ~ .circle-text {
    opacity: 0.4;
}

.yellow-circle.step-4 ~ .circle-text {
    opacity: 0.7;
}

.yellow-circle.full-screen ~ .circle-text {
    opacity: 1;
}

/* Yeni section'lar için stiller */
.services-section,
.location-section {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease;
}

.services-section.visible,
.location-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
}

h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.service-item h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--white);
    line-height: 1.6;
}

/* İkinci sayfa için stiller */
.second-page {
    min-height: 100vh;
    padding: 6rem 4rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.left-content {
    flex: 1;
    padding-top: 2rem;
}

.right-content {
    flex: 1;
}

h2 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 4rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.service-number {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.8;
}

.service-item h3 {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
}

.service-image {
    width: 100%;
    height: 70vh;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* Animasyonlar için */
.left-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.right-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.left-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.right-content.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mevcut stiller kalacak, hizmetler sayfası için yeni stiller */
.services-page {
    min-height: 100vh;
    padding: 6rem 4rem;
    background-color: var(--dark-bg);
    position: relative;
    z-index: 2;
    display: none; /* Başlangıçta gizli */
}

.services-page.visible {
    display: block;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Diğer hizmet stilleri aynı kalacak */

.services-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 20px;
    margin-top: 100vh; /* Sarı daireden sonra gelmesi için */
    background-color: #FDF5E6;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    z-index: 1000;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.services-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
}

.references-section {
    min-height: 100vh;
    padding: 50px 0;
    margin-top: 100vh; /* Sarı daireden sonra gelmesi için */
    background-color: #FDF5E6;
}

/* Slider stilleri */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Diğer slider stilleri aynı kalacak */

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .title-section {
        margin-bottom: 30px;
    }

    .slogan {
        font-size: 1.5rem;
        top: -1.5rem;
    }
    
    .main-title {
        font-size: 12rem;
    }
}

@media (max-width: 480px) {
    .slogan {
        font-size: 1.2rem;
        top: -1rem;
    }
    
    .main-title {
        font-size: 8rem;
    }
}

/* Referanslar Bölümü Stilleri */
.referanslar {
    padding: 4rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    margin-bottom: 60px; /* Biz Kimiz ile arasına boşluk */
}

.referanslar-baslik {
    text-align: center;
    margin-bottom: 3rem;
}

.referanslar-baslik h2 {
    font-size: 2.5rem;
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.referanslar-baslik h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 33.333%;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.slide img {
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.slide p {
    font-size: 1.2rem;
    color: var(--color-light);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-light);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--color-accent);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 992px) {
    .slide {
        min-width: 50%;
    }
}

@media (max-width: 576px) {
    .slide {
        min-width: 100%;
    }
    
    .prev-btn, .next-btn {
        padding: 0.75rem;
        font-size: 1.2rem;
    }
}

/* Circle Reveal Animation Styles */
.circle-reveal-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.yellow-circle-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yellow-circle {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100vw;
    height: 100vw;
    background-color: #FFD700;
    border-radius: 50%;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
    z-index: 1;
}

.yellow-circle.visible {
    transform: translate(-50%, 50%);
}

.yellow-circle.full-screen {
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}

.yellow-circle.hide {
    transform: translate(-50%, -100%);
}

.circle-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 1000px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #1A1A1A;
    z-index: 11;
    pointer-events: none;
}

.circle-content.visible {
    opacity: 1;
    pointer-events: auto;
}

.circle-content.hide {
    opacity: 0;
    transform: translate(-50%, -150%);
}

.circle-text-main {
    font-family: 'Futura PT';
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 500;
}

.circle-text-sub {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hizmetler Bölümü */
#hizmetlerimiz {
    position: relative;
    z-index: 3;
    background-color: #FDF5E6;
    padding-top: 4rem;
    margin-bottom: 60px; /* Referanslar ile arasına boşluk */
}

/* Biz Kimiz Bölümü */
.biz-kimiz {
    padding: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
}

.biz-kimiz-container {
    background-color: transparent;
    padding: 1.5rem 0;
    width: 100%;
    margin: 0;
    border-top: 1px solid #FFE4B5;
    border-bottom: 1px solid #FFE4B5;
}

.biz-kimiz-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: transparent;
    background: #FFE4B5;
    -webkit-background-clip: text;
    background-clip: text;
    padding: 0;
    margin: 0;
    letter-spacing: 4px;
}

.yakinda-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #fff;
    margin-top: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .biz-kimiz-container {
        padding: 1rem 0;
    }
    
    .biz-kimiz-text {
        font-size: 1.8rem;
    }
    
    .yakinda-text {
        font-size: 1.2rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #27596c;
    padding: 2rem 0 2rem;
    width: 100%;
    margin-top: 0;
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 8rem;
}

.footer-top {
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    width: 320px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
    font-style: italic;
}

.logo-text p {
    font-size: 1rem;
    margin: 0;
    color: #ffffff;
    opacity: 0.9;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    margin: 3.5rem 0 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    max-width: 80%;
}

.social-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .contact-info {
        max-width: 70%;
    }
}

@media (max-width: 992px) {
    .footer-content {
        padding: 0 2rem;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .social-links {
        position: static;
        justify-content: flex-start;
        margin-top: 2rem;
        margin-left: 3.2rem;
    }
}

@media (max-width: 768px) {
    .social-links {
        margin-left: 0;
        justify-content: center;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    opacity: 0.9;
}

.contact-item a,
.contact-item span {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.contact-item:hover svg,
.contact-item:hover a,
.contact-item:hover span {
    opacity: 1;
}

.social-link:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    opacity: 0.9;
}

.social-link:hover svg {
    opacity: 1;
}

@media (max-width: 576px) {
    .footer-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo-text {
        align-items: center;
    }
}

/* Biz Kimiz Slider */
.biz-kimiz-slider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
    background: transparent;
}
.biz-kimiz-slider .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}
.biz-kimiz-slider .slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: transparent;
}
.profile-photo {
    width: 160px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.profile-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}
.profile-title {
    font-size: 1.1rem;
    color: #444;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .biz-kimiz-slider {
        max-width: 98vw;
        padding: 1.5rem 0;
    }
    .profile-photo {
        width: 110px;
        height: 140px;
    }
    .profile-name {
        font-size: 1.1rem;
    }
    .profile-title {
        font-size: 0.95rem;
    }
}

.location-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.location-link:hover {
    color: var(--gold);
}

/* WhatsApp tarzı sabit katalog butonu */
.floating-catalog-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #222;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 8px 14px 8px 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    border: 2px solid #ffe066;
}
.floating-catalog-btn:hover {
    background: #ffe066;
    color: #222;
    box-shadow: 0 8px 32px rgba(255,224,102,0.25);
    transform: translateY(-3px) scale(1.04);
}
.floating-catalog-btn svg {
    display: block;
}
.floating-catalog-btn span {
    font-family: 'FUTURA PT', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .floating-catalog-btn {
        bottom: 20px;
        right: 12px;
        padding: 6px 10px 6px 8px;
        font-size: 10px;
        gap: 4px;
    }
    .floating-catalog-btn span {
        font-size: 10px;
    }
    .floating-catalog-btn svg {
        width: 16px;
        height: 16px;
    }
}
@media (max-width: 480px) {
    .floating-catalog-btn {
        bottom: 15px;
        right: 6px;
        padding: 5px 8px 5px 6px;
        font-size: 9px;
        gap: 3px;
    }
    .floating-catalog-btn span {
        font-size: 9px;
    }
    .floating-catalog-btn svg {
        width: 14px;
        height: 14px;
    }
}