/* 
* META ALTYAPI HİZMETLERİ Web Sitesi
* Ana CSS Dosyası
* Oluşturulma Tarihi: 31 Mayıs 2025
*/

/* Google Fonts - Quicksand */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* CSS Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0A2647;
  --secondary-color: #F57C00;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #757575;
  --white: #ffffff;
  --black: #212121;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary {
  background-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1000;
  background: linear-gradient(135deg, #ffffff 0%, #ff8c00 100%);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

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

.logo img {
  height: 175px;
  margin-right: 10px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-list {
  display: flex;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  font-weight: 600;
  position: relative;
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-number,
.email-address {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-number i,
.email-address i {
  color: var(--secondary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(179, 72, 23, 0.7), rgba(187, 211, 50, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

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

/* Services Section */
.services {
  background-color: var(--light-gray);
}

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

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-description {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-content p {
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--secondary-color);
}

.accordion-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-content {
  background-color: var(--white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-content-inner {
  padding: 20px;
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion.active .accordion-content {
  max-height: 300px;
}

/* Blog Section */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.blog-excerpt {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-icon {
  margin-right: 15px;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.contact-info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 50px 0 20px;
}

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

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

.footer-logo img {
  height: 75px;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

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

.footer-links a {
  color: var(--white);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

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

.footer-contact-icon {
  margin-right: 10px;
  color: var(--secondary-color);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 20px;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .contact-info {
    display: none;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
}
:root {
  --accordion-color: #e74c3c; /* Kırmızı tonu */
}

.accordion-header {
  background-color: var(--accordion-color); /* Yeni değişkeni kullan */
  /* ... diğer stiller ... */
}
/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    background: #f8f9fa;
    color: #333;
}

/* Slider Bölümü */
.slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a1929;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    z-index: 20;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #ff6b00;
    transition: width 0.1s linear;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 8s ease-in-out;
}

.slide.active img {
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 40, 85, 0.7);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 15vh;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e6f7ff;
}

/* Buton Stili */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

/* Navigasyon Okları */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Dots Navigasyon */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b00;
    transform: scale(1.2);
}

.dot:hover {
    background: #ff6b00;
}

/* Animasyonlar */
.slide[data-animation="fade"] .slide-content {
    animation: fadeIn 0.8s ease forwards;
}

.slide[data-animation="zoom"] .slide-content {
    animation: zoomIn 0.8s ease forwards;
}

.slide[data-animation="slide-up"] .slide-content {
    animation: slideUp 0.8s ease forwards;
}

.slide[data-animation="flip"] .slide-content {
    animation: flipIn 0.8s ease forwards;
}

.slide[data-animation="rotate"] .slide-content {
    animation: rotateIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes flipIn {
    from { 
        transform: rotateY(90deg) translateY(50px);
        opacity: 0;
    }
    to { 
        transform: rotateY(0) translateY(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from { 
        transform: rotate(-30deg) translateY(50px);
        opacity: 0;
    }
    to { 
        transform: rotate(0) translateY(0);
        opacity: 1;
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 20px;
        max-width: 90%;
        margin-top: 10vh;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-content {
        margin-top: 5vh;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}


/* Hero Slider Styles - GTA Integration */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
    margin-top: 150px;
}

.slider-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(10, 38, 71, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.prev-btn, .next-btn {
    background-color: rgba(10, 38, 71, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.dots-container {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Responsive Design for Hero Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-controls {
        bottom: 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-details {
        display: none;
    }
    
    .contact-info {
        gap: 10px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}



/* Services Page Styles */
.services-page {
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  align-items: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  width: 300px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border-radius: 8px 0 0 8px;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-content p {
  margin-bottom: 20px;
  color: var(--dark-gray);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.service-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

.services-cta {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  box-shadow: var(--shadow);
}

.services-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.services-cta p {
  margin-bottom: 25px;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Responsive Styles for Services */
@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-image {
    width: 100%;
    height: 250px;
  }
  
  .service-image img {
    border-radius: 8px 8px 0 0;
  }
  
  .service-content {
    padding: 25px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Mobile Logo Styles */
@media (max-width: 768px) {
  .logo img {
    height: 80px !important;
  }
  
  .logo-text {
    font-size: 1.4rem !important;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 100px !important;
  }
  
  .logo-text {
    font-size: 1.6rem !important;
  }
}

/* Service Regions Styles */
.service-regions {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.service-regions h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.service-regions p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: center;
}

.service-regions ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  list-style: none;
  margin-bottom: 20px;
}

.service-regions li {
  background-color: var(--light-gray);
  padding: 10px 15px;
  border-radius: 6px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.service-regions li:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.service-regions p:last-child {
  text-align: center;
  font-style: italic;
  margin-bottom: 0;
}
/* === Header override: logo solda büyük, hamburger her zaman görünür === */

/* 1) Logo: solda ve ~2x büyük */
.header { height: 130px; }                     /* başlık yüksekliğini büyüt */
.header-container { position: relative; }      /* hamburgeri konumlamak için */
.logo { margin-left: 12px; }                   /* sola yapışık */
.logo img {
  height: 120px !important;                    /* önceki ~60px'in 2 katı */
  width: auto;
  margin: 0 !important;
  object-fit: contain;
}

/* 2) Hamburger: her breakpoint’te görünür, sağ üstte sabit */
.hamburger {
  display: block !important;                   /* her zaman görünsün */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;                               /* logonun üstünde kalsın */
}
.bar { background-color: var(--primary-color); }

/* 3) Mobil menü açılma noktası: header yüksekliğiyle hizala */
.nav-menu { top: 180px; }                      /* header yüksekliğiyle aynı */

/* 4) Daha küçük ekranlarda biraz daha büyük logo istenirse */
@media (max-width: 576px){
  .header { height: 190px; }
  .nav-menu { top: 190px; }
  .logo img { height: 140px !important; }      /* istersen 120–150px arası ayarla */
}

/* 5) Büyük logoyla çakışma olursa mobilde iletişim bölümünü gizle */
@media (max-width: 768px){
  .contact-info { display: none !important; }
}

