/* BP Ajans - Ana CSS Dosyası */

/* ===== GENEL AYARLAR ===== */
:root {
    /* BP Ajans Yeni Renk Paleti */
    --primary-color: #FF6B35; /* Ana Turuncu */
    --secondary-color: #FF8F65; /* İkincil Turuncu */
    --accent-color: #E55A2B; /* Koyu Turuncu */
    --dark-color: #1A1A1A; /* Siyah */
    --light-color: #F3F4F6; /* Açık Gri */
    --gray: #6B7280; /* Gri Tonu */
    --text-color: #1A1A1A; /* Siyah */
    --text-light: #6B7280; /* Gri */
    --white: #FFFFFF;
    --black: #000000;
    /* Gölgeler */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    /* Geçişler */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color); /* updated for new black */
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color); /* updated for orange brand color */
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color); /* updated for orange accent */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color); /* updated for orange accent */
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light); /* updated for gray */
    max-width: 700px;
    margin: 0 auto 15px;
}

.section-intro {
    font-size: 17px;
    color: var(--text-color); /* updated for new black */
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.accent {
    color: var(--secondary-color); /* updated for orange accent */
}

/* =====================
   Platformlar Bölümü (Sosyal Medya ve Dijital Mecralar)
====================== */
.platformlar-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f2ff 100%);
  padding: 60px 0 40px 0;
  text-align: center;
  overflow: hidden;
}
.platformlar-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #232323;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.platformlar-desc {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 38px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Platform Slider */
.platform-slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.platform-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 15px 5px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  animation: autoScroll 60s linear infinite;
}

.platform-slider::-webkit-scrollbar {
  display: none;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Platform Cards */
.platform-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(180,180,180,0.10);
  padding: 32px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 140px;
  flex: 0 0 auto;
  opacity: 0.93;
}

.platform-card i {
  font-size: 2.4rem;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.platform-card span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #232323;
  margin-bottom: 6px;
}

.platform-card small {
  font-size: 0.9rem;
  color: #888;
  font-weight: 400;
}

.platform-card:hover, .platform-card:focus {
  box-shadow: 0 8px 30px rgba(180,180,180,0.20);
  transform: translateY(-7px);
  opacity: 1;
}

.platform-info {
  margin-top: 30px;
  font-style: italic;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .platform-slider-container {
    padding: 0 30px;
  }
  
  .platform-card {
    min-width: 120px;
    padding: 20px 15px 15px 15px;
  }
  
  .platform-card i {
    font-size: 2rem;
  }
  
  .platform-card span {
    font-size: 1rem;
  }
  
  .platform-card small {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .platform-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .platform-category {
    flex: 0 0 auto;
    padding: 6px 16px;
    font-size: 0.85rem;
  }
}
/* Platform specific colors */
.platform-card.google i { 
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 110deg 210deg, #34a853 210deg 320deg, #fbbc05 320deg);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.platform-card.google:hover i { 
  opacity: 1;
}

.platform-card.youtube:hover i { color: #FF0000; }
.platform-card.facebook:hover i { color: #1877F2; }
.platform-card.instagram:hover i { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}
.platform-card.wordpress:hover i { color: #21759b; }
.platform-card.android:hover i { color: #3DDC84; }

.platform-card:hover i {
  transform: scale(1.15);
}
@media (max-width: 800px) {
  .platformlar-cards {
    gap: 18px;
  }
  .platform-card {
    min-width: 120px;
    padding: 22px 10px 16px 10px;
  }
}
@media (max-width: 600px) {
  .platformlar-cards {
    flex-direction: column;
    align-items: center;
  }
  .platform-card {
    width: 90%;
    max-width: 330px;
  }
}

/* =====================
   Referans Markalar (Çözüm Ortağı) Bölümü
====================== */
.referans-markalar {
    background: #faf8f3;
    padding: 64px 0 44px 0;
    text-align: center;
}
.referans-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #232323;
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
}
.referans-desc {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 44px;
    font-weight: 400;
    letter-spacing: 0.1px;
}
.referans-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.referans-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 2.3rem;
    color: #bdbdbd;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    opacity: 0.8;
    transition: color 0.22s, opacity 0.22s, transform 0.18s;
    cursor: default;
}
.referans-logo i {
    font-size: 2.7rem;
    color: #bdbdbd;
    transition: color 0.18s;
}
.referans-logo span {
    font-size: 2.2rem;
    color: #bdbdbd;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.referans-logo:hover,
.referans-logo:focus {
    color: #8f8f8f;
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
}
.referans-logo:hover i,
.referans-logo:focus i {
    color: #8f8f8f;
}
@media (max-width: 900px) {
    .referans-title {
        font-size: 2.1rem;
    }
    .referans-logos {
        gap: 30px;
    }
    .referans-logo {
        font-size: 1.3rem;
    }
    .referans-logo i {
        font-size: 1.6rem;
    }
    .referans-logo span {
        font-size: 1.1rem;
    }
}
@media (max-width: 600px) {
    .referans-logos {
        flex-direction: column;
        gap: 18px;
    }
    .referans-title {
        font-size: 1.25rem;
    }
}

/* =====================
   Çalıştığımız Markalar Bölümü
====================== */
.brands-section {
    background: #faf8f3;
    padding: 48px 0 36px 0;
    text-align: center;
}
.brands-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #bdbdbd;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}
.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 2.2rem;
    color: #bdbdbd;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    opacity: 0.7;
    cursor: default;
}
.brand-logo i {
    font-size: 2.5rem;
    color: #bdbdbd;
    transition: color 0.2s;
}
.brand-logo span {
    font-size: 2rem;
    color: #bdbdbd;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.brand-logo:hover,
.brand-logo:focus {
    color: #8f8f8f;
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
}
.brand-logo:hover i,
.brand-logo:focus i {
    color: #8f8f8f;
}
@media (max-width: 800px) {
    .brands-logos {
        gap: 28px;
    }
    .brand-logo {
        font-size: 1.2rem;
    }
    .brand-logo i {
        font-size: 1.6rem;
    }
    .brand-logo span {
        font-size: 1.1rem;
    }
}
@media (max-width: 500px) {
    .brands-logos {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: relative;
    min-width: 120px;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn[aria-busy="true"] {
    pointer-events: none;
}

.btn i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color); /* updated for orange brand color */
    color: white;
}

.btn-primary:not(:disabled):hover {
    background-color: var(--accent-color); /* Koyu turuncu - brand accent */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color); /* updated for orange brand color */
    border: 2px solid var(--primary-color); /* updated for orange brand color */
}

.btn-secondary:hover {
    background-color: var(--primary-color); /* updated for orange brand color */
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
}

.main-nav .nav-list li {
    margin: 0 15px;
}

.main-nav .nav-list li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color); /* updated for orange brand color */
    transition: var(--transition);
}

.main-nav .nav-list li a:hover::after,
.main-nav .nav-list li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color); /* updated for new black */
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO BÖLÜMÜ ===== */

.brand-bg-cloud {
    pointer-events: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}
.brand-bg-cloud .brand-bg-icon {
    position: absolute;
    color: var(--secondary-color); /* updated for orange accent */
    opacity: 0.10;
    filter: blur(0.8px);
    z-index: 1;
    transition: opacity 0.3s, filter 0.3s, color 0.3s;
    pointer-events: none;
    animation: floatBrand 7s ease-in-out infinite alternate;
}
.brand-bg-cloud .brand-bg-icon:nth-child(2)  { animation-delay: 1.5s; animation-duration: 8s; }
.brand-bg-cloud .brand-bg-icon:nth-child(3)  { animation-delay: 2.2s; animation-duration: 9s; }
.brand-bg-cloud .brand-bg-icon:nth-child(4)  { animation-delay: 0.7s; animation-duration: 7.5s; }
.brand-bg-cloud .brand-bg-icon:nth-child(5)  { animation-delay: 3.1s; animation-duration: 8.5s; }
.brand-bg-cloud .brand-bg-icon:nth-child(6)  { animation-delay: 2.8s; animation-duration: 7.8s; }
.brand-bg-cloud .brand-bg-icon:nth-child(7)  { animation-delay: 1.9s; animation-duration: 8.2s; }
.brand-bg-cloud .brand-bg-icon:nth-child(8)  { animation-delay: 0.5s; animation-duration: 7.2s; }

@keyframes floatBrand {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}


/* Sade, büyük ve soft ikonlar için yeni dağılım */
.brand-bg-cloud .brand-bg-icon:nth-child(1)  { left: 12%;  top: 19%; font-size: 90px; color: #F97316; opacity: 0.09; filter: blur(2px); }
.brand-bg-cloud .brand-bg-icon:nth-child(2)  { left: 75%; top: 12%; font-size: 110px; color: #2563EB; opacity: 0.09; filter: blur(2.5px); }
.brand-bg-cloud .brand-bg-icon:nth-child(3)  { left: 22%; top: 72%; font-size: 70px; color: #10B981; opacity: 0.08; filter: blur(2.5px); }
.brand-bg-cloud .brand-bg-icon:nth-child(4)  { left: 58%; top: 60%; font-size: 100px; color: #F59E42; opacity: 0.08; filter: blur(3px); }
.brand-bg-cloud .brand-bg-icon:nth-child(5)  { left: 44%; top: 15%; font-size: 82px; color: #E11D48; opacity: 0.10; filter: blur(2px); }
.brand-bg-cloud .brand-bg-icon:nth-child(6)  { left: 80%; top: 65%; font-size: 80px; color: #6366F1; opacity: 0.09; filter: blur(2.5px); }
.brand-bg-cloud .brand-bg-icon:nth-child(7)  { left: 10%; top: 65%; font-size: 60px; color: #FACC15; opacity: 0.10; filter: blur(1.5px); }
.brand-bg-cloud .brand-bg-icon:nth-child(8)  { left: 65%; top: 80%; font-size: 70px; color: #0EA5E9; opacity: 0.09; filter: blur(2.5px); }

@media (max-width: 992px) {
    .brand-bg-cloud .brand-bg-icon {
        font-size: 40px !important;
        opacity: 0.08;
        filter: blur(1.2px);
    }
}

/* Farklı boyut ve konumlar, örnek dağılım */
.brand-bg-cloud .brand-bg-icon:nth-child(1)  { left: 6%;  top: 12%; font-size: 58px; }
.brand-bg-cloud .brand-bg-icon:nth-child(2)  { left: 19%; top: 35%; font-size: 44px; }
.brand-bg-cloud .brand-bg-icon:nth-child(3)  { left: 33%; top: 9%;  font-size: 64px; }
.brand-bg-cloud .brand-bg-icon:nth-child(4)  { left: 49%; top: 20%; font-size: 50px; }
.brand-bg-cloud .brand-bg-icon:nth-child(5)  { left: 60%; top: 7%;  font-size: 38px; }
.brand-bg-cloud .brand-bg-icon:nth-child(6)  { left: 76%; top: 25%; font-size: 54px; }
.brand-bg-cloud .brand-bg-icon:nth-child(7)  { left: 85%; top: 14%; font-size: 41px; }
.brand-bg-cloud .brand-bg-icon:nth-child(8)  { left: 12%; top: 66%; font-size: 36px; }
.brand-bg-cloud .brand-bg-icon:nth-child(9)  { left: 24%; top: 56%; font-size: 62px; }
.brand-bg-cloud .brand-bg-icon:nth-child(10) { left: 39%; top: 74%; font-size: 37px; }
.brand-bg-cloud .brand-bg-icon:nth-child(11) { left: 55%; top: 68%; font-size: 48px; }
.brand-bg-cloud .brand-bg-icon:nth-child(12) { left: 68%; top: 56%; font-size: 41px; }
.brand-bg-cloud .brand-bg-icon:nth-child(13) { left: 80%; top: 65%; font-size: 60px; }
.brand-bg-cloud .brand-bg-icon:nth-child(14) { left: 90%; top: 45%; font-size: 34px; }
.brand-bg-cloud .brand-bg-icon:nth-child(15) { left: 72%; top: 82%; font-size: 52px; }
.brand-bg-cloud .brand-bg-icon:nth-child(16) { left: 15%; top: 82%; font-size: 29px; }
.brand-bg-cloud .brand-bg-icon:nth-child(17) { left: 60%; top: 88%; font-size: 38px; }
.brand-bg-cloud .brand-bg-icon:nth-child(18) { left: 35%; top: 85%; font-size: 45px; }
.brand-bg-cloud .brand-bg-icon:nth-child(19) { left: 87%; top: 80%; font-size: 35px; }
.brand-bg-cloud .brand-bg-icon:nth-child(20) { left: 5%;  top: 44%; font-size: 41px; }

@media (max-width: 992px) {
    .brand-bg-cloud .brand-bg-icon {
        font-size: 26px !important;
        opacity: 0.10;
    }
    .brand-bg-cloud .brand-bg-icon:nth-child(n) {
        left: calc(10% + 70% * (var(--i, 1) / 20));
        top: calc(10% + 70% * (var(--i, 1) / 20));
    }
}

.hero {
    background: linear-gradient(135deg, #f5f8ff 0%, #fde8df 100%);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 540px;
    height: 70vh;
    gap: 0;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    z-index: 3;
}

.hero-content {
    flex: 1 1 0;
    min-width: 320px;
}

.hero-partners {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 320px;
    max-width: 480px;
    padding: 32px 0 0 0;
}

.hero-partners .partners-title {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: right;
}

.hero-partners .partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
    justify-content: flex-end;
}

.hero-partners .partner-logo {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 12px 16px 6px 16px;
    min-width: 70px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.hero-partners .partner-logo i {
    font-size: 28px;
    color: var(--secondary-color); /* updated for orange accent */
    margin-bottom: 5px;
}

.hero-partners .partner-logo span {
    font-size: 12px;
    color: var(--dark-color);
    font-weight: 500;
}

.hero-partners .partner-logo:hover {
    box-shadow: 0 6px 20px rgba(37,99,235,0.12);
    transform: translateY(-3px) scale(1.05);
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .hero-partners {
        align-items: center;
        justify-content: flex-start;
        max-width: 100%;
        padding: 24px 0 0 0;
    }
    .hero-partners .partners-title {
        text-align: center;
    }
    .hero-partners .partners-logos {
        justify-content: center;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 107, 53, 0.07); /* Turuncu transparan */
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.05);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

/* New Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
    z-index: 2;
    position: relative;
}

.hero-main {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-badge i {
    font-size: 12px;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--gray);
}

.btn-outline:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--dark-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 320px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.card-dots span:first-child {
    background: #ef4444;
}

.card-dots span:nth-child(2) {
    background: #f59e0b;
}

.card-dots span:last-child {
    background: #10b981;
}

.card-title {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(4px);
}

.feature-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 14px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.9;
}

.float-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1s;
}

.float-3 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-description strong {
    color: var(--dark-color);
    font-weight: 600;
}

.hero-description em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    height: 400px;
    background-image: url('../img/hero-image.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .visual-card {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-gradient,
    .btn-outline {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* ===== HİZMETLER BÖLÜMÜ ===== */
.services {
    background-color: var(--white);
    border-top: 1px solid #f1f5f9;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 992px) {
    .services-row {
        flex-direction: column;
    }
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color); /* updated for orange brand color */
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light); /* updated for gray */
    margin-bottom: 20px;
}

.service-link {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== NEDEN BİZ BÖLÜMÜ ===== */
.why-us {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-color); /* updated for new light gray */
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.feature-icon i {
    font-size: 24px;
    color: var(--secondary-color); /* updated for orange accent */
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-description {
    color: var(--text-light); /* updated for gray */
}

/* ===== REFERANSLAR BÖLÜMÜ ===== */
/* Referanslar Önizleme */
.references-preview {
    padding: 80px 0;
    background-color: var(--light-color); /* updated for new light gray */
}

/* Eski portfolio stilleri */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.portfolio-item:nth-child(1) .portfolio-image {
    background-image: url('../img/portfolio-1.jpg');
}

.portfolio-item:nth-child(2) .portfolio-image {
    background-image: url('../img/portfolio-2.jpg');
}

.portfolio-item:nth-child(3) .portfolio-image {
    background-image: url('../img/portfolio-3.jpg');
}

.portfolio-item:nth-child(4) .portfolio-image {
    background-image: url('../img/portfolio-4.jpg');
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
}

.portfolio-category {
    color: var(--secondary-color); /* updated for orange accent */
    margin-bottom: 15px;
    text-align: center;
}

.portfolio-link {
    color: var(--white);
    background-color: var(--secondary-color); /* updated for orange accent */
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.portfolio-link:hover {
    background-color: var(--white);
    color: var(--secondary-color); /* updated for orange accent */
}

.portfolio-cta, .services-cta, .references-preview-cta {
    text-align: center;
    margin: 60px auto 70px auto;
    background-color: rgba(255, 107, 53, 0.07); /* Turuncu transparan */
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    display: block;
}

@media (max-width: 700px) {
    .portfolio-cta, .services-cta, .references-preview-cta {
        margin: 40px 10px 50px 10px;
        max-width: 98%;
        padding: 20px 8px;
    }
}

/* Yeni referanslar stilleri */
.references-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    perspective: 1000px; /* 3D efekt için perspektif ekle */
}

.reference-preview-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
}

.reference-preview-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.reference-preview-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.reference-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    border-radius: 10px;
    filter: brightness(0.95);
}

.reference-preview-card:hover .reference-preview-image img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

.reference-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
    opacity: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.reference-preview-card:hover .reference-preview-overlay {
    transform: translateY(0);
    opacity: 1;
}

.reference-preview-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--white);
}

.reference-preview-overlay p {
    font-size: 14px;
    color: var(--secondary-color); /* updated for orange accent */
    margin-bottom: 15px;
}

.btn-small {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color); /* updated for orange brand color */
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-small:hover {
    background-color: var(--secondary-color); /* updated for orange accent */
    color: var(--white);
    transform: translateY(-2px);
}

.cta-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* ===== İLETİŞİM BÖLÜMÜ ===== */
.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-text {
    color: var(--text-light); /* updated for gray */
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-highlight {
    color: var(--secondary-color); /* updated for orange accent */
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 30px;
    padding: 10px 15px;
    border-left: 3px solid var(--secondary-color);
    background-color: rgba(249, 115, 22, 0.05);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color); /* updated for orange brand color */
    margin-right: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--light-color); /* updated for new light gray */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color); /* updated for orange brand color */
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color); /* updated for orange brand color */
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--light-color); /* updated for new light gray */
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color); /* updated for orange brand color */
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ===== GLOBAL HIZMETLER BÖLÜMÜ ===== */
.global-presence {
    padding: 100px 0;
    background-color: var(--dark-color); /* updated for new black */
    color: var(--white);
}

.global-presence .section-title {
    color: var(--secondary-color); /* updated for orange accent */
}

.global-expertise-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.expertise-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color); /* updated for orange accent */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.expertise-icon i {
    font-size: 28px;
    color: var(--secondary-color); /* updated for orange accent */
}

.expertise-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.expertise-text {
    color: var(--light-color);
    line-height: 1.6;
    font-size: 15px;
}

.global-impact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 70px;
    align-items: center;
}

.impact-content {
    padding-right: 30px;
}

.impact-title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.impact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color); /* updated for orange accent */
}

.impact-text {
    color: var(--light-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.impact-stat {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-stat:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color); /* updated for orange accent */
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color); /* updated for orange accent */
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--light-color);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.country-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.country-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.country-item:hover::before,
.country-item.active::before {
    opacity: 1;
}

.country-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color); /* updated for orange accent */
}

.country-item.active {
    border-color: var(--secondary-color); /* updated for orange accent */
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.country-flag {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
}

.country-item.active .country-flag {
    background-color: rgba(249, 115, 22, 0.2);
}

.country-flag i {
    font-size: 24px;
    color: var(--secondary-color); /* updated for orange accent */
}

.country-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.country-role {
    font-size: 14px;
    color: var(--light-color);
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .global-expertise-container {
        grid-template-columns: 1fr;
    }
    
    .global-impact {
        grid-template-columns: 1fr;
    }
    
    .impact-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
}

/* === Partner Markalar Bölümü === */
.partners {
    background: var(--white);
    padding: 40px 0 30px 0;
    border-bottom: 1px solid #f1f1f1;
}
.partners-title {
    text-align: center;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 40px;
    align-items: center;
}
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 18px 24px 10px 24px;
    min-width: 90px;
    min-height: 70px;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.partner-logo i {
    font-size: 32px;
    color: var(--secondary-color); /* updated for orange accent */
    margin-bottom: 8px;
    transition: color 0.2s;
}
.partner-logo span {
    font-size: 13px;
    color: var(--dark-color);
    font-weight: 500;
    letter-spacing: 0.2px;
}
.partner-logo:hover {
    box-shadow: 0 6px 24px rgba(37,99,235,0.12);
    transform: translateY(-4px) scale(1.05);
}
.partner-logo:hover i {
    color: var(--accent-color, #f97316);
}
@media (max-width: 768px) {
    .partners-logos {
        gap: 20px 16px;
    }
    .partner-logo {
        min-width: 70px;
        padding: 12px 10px 8px 10px;
    }
    .partners-title {
        font-size: 17px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color); /* updated for new black */
    color: var(--light-color);
    padding-top: 80px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.footer-column:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    flex: 0 0 300px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo .logo-text {
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
}

.footer-logo .logo-text span {
    color: var(--secondary-color); /* updated for orange accent */
}

.footer-tagline {
    color: var(--text-light); /* updated for gray */
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color); /* updated for orange accent */
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    color: var(--text-light); /* updated for gray */
    transition: var(--transition);
}

.footer-list li a:hover {
    color: var(--secondary-color); /* updated for orange accent */
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-list li i {
    margin-right: 10px;
    color: var(--secondary-color); /* updated for orange accent */
    min-width: 16px;
    margin-top: 4px;
}

.contact-list li span {
    display: inline-block;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.copyright {
    color: var(--text-light); /* updated for gray */
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-light); /* updated for gray */
}

.footer-legal a:hover {
    color: var(--secondary-color); /* updated for orange accent */
}

/* ===== FOOTER BÖLÜMÜ ===== */
.footer {
    background-color: #232E3F;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

.footer-logo svg {
    filter: drop-shadow(0 0 8px rgba(255, 136, 0, 0.5));
    margin-bottom: 15px;
}

.footer-tagline {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 15px;
}

/* İş Birliği Butonu Stilleri */
.footer-collaboration {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-collaboration:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-collaboration p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.btn-collaboration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8F65);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-collaboration:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #E55A2B, #FF6B35);
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color); /* updated for orange accent */
}

.footer-list {
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #ccc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-list li a i {
    margin-right: 10px;
    color: var(--secondary-color); /* updated for orange accent */
}

.footer-list li a:hover {
    color: var(--secondary-color); /* updated for orange accent */
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #aaa;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #aaa;
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--secondary-color); /* updated for orange accent */
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* ===== WHATSAPP VE YUKARI ÇIKMA BUTONLARI ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Eski yukarı çıkma butonu kaldırıldı */

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .scroll-top-button {
        bottom: 20px;
        right: 75px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 992px) {
    .header-content {
        position: relative;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .main-nav .nav-list li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

/* Hizmet kartı görselleri için tek tip stil */
.subcategory-image {
  border-radius: 24px;
  overflow: hidden;
  height: 200px;
  position: relative;
}

.subcategory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* SSS Bölümü Stilleri */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    background-color: #ff8800;
    color: #fff;
    transition: all 0.3s ease;
    margin-left: 10px;
    position: relative;
    overflow: visible;
}

.faq-icon i {
    font-size: 16px;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon i {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Form Mesajları */
.form-message {
    margin: 15px 0;
    padding: 0;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 15px 0;
    animation: fadeIn 0.3s ease-in-out;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 15px 0;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buton Yükleme Durumu */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Yükleme Animasyonu */
.fa-spin {
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--body-text);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}
