/* Base Styles */
:root {
    --primary-color: #FF5C00;
    --primary-light: #FFF1E9;
    --text-color: #111111;
    --text-secondary: #555555;
    --background: #FFFFFF;
    --background-light: #F9FAFB;
    --background-dark: #1D1D1D;
    --border-color: #E5E5E5;
    --radius: 12px;
    --button-radius: 50px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --header-height: 70px; /* Added for spacing */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    background-color: var(--background);
    /* Add padding to the top to prevent content from hiding under sticky header */
    padding-top: var(--header-height);
}

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

.references-container{
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--button-radius);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
}

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

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header - Updated to be sticky */
/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color, #eee);
    height: var(--header-height, 70px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    color: #333;
}

.main-nav a:hover {
    color: var(--primary-color, #0066ff);
}

/* Hero Section */
.hero {
    padding: calc(var(--header-height, 70px) + 20px) 0 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.hero-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.hero-image {
    margin: 0 auto;
    text-align: center;
    flex-shrink: 1;
    max-height: calc(70vh - var(--header-height, 70px));
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Partners Section */
.partners-section {
    background-color: var(--background-dark);
    color: white;
    padding: 15px 0 50px 0;
    margin-top: -15px;
}

.partners {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 20px;
    justify-content: flex-start;
    gap: 0;
}

.partner-label {
    font-size: 1.15rem;
    display: block;
    color: #dcdcdc;
    min-width: 120px;
    white-space: nowrap;
    text-align: center;
    font-weight: bold;
    padding-bottom: 30px;
}

.partner-logos {
    flex: 1;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.partner-logos img {
    height: 64px;
    opacity: 1;
}

/* References section */
.referanslar-title {
    text-align: left;
    padding-left: 16px;
    margin-bottom: 20px;
}

.referanslar-title span {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
}

.referanslar-section {
    background-color: var(--background-dark, #1D1D1D);
    margin-top: -73px;
    padding: 20px 0 20px 0;
}

.referanslar-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    grid-template-rows: repeat(3, 1fr);    /* 3 satır */
    gap: 20px;
    justify-items: center; /* column içindekileri ortalar */
    align-items: center;   /* row içindekileri ortalar */
}

.referanslar-logos img {
    height: 96px;
    opacity: 1;
    margin-left: 15px;
    margin-right: 15px;
    background: transparent;
}

/* Integrations Section */
.integrations-section {
  padding: 0;
  background-color: #fff;
}

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

.integrations-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 50px;
}

.integrations-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.integrations-header p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
}

.integrations-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.integrations-button:hover {
  background-color: #f5f5f5;
}

.integrations-button .arrow {
  margin-left: 8px;
}

.integrations-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.integration-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.integration-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.integration-logo {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.integration-item:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .integration-logo {
    width: 130px;
    height: 130px;
  }
  
  .placeholder-circle {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .integrations-header h2 {
    font-size: 28px;
  }
  
  .integrations-header p {
    font-size: 16px;
  }
  
  .row {
    gap: 20px;
  }
  
  .integration-logo {
    width: 110px;
    height: 110px;
  }
  
  .placeholder-circle {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .integration-logo {
    width: 100px;
    height: 100px;
  }
  
  .placeholder-circle {
    width: 80px;
    height: 80px;
  }
}

/* Features Section */
.features {
    padding: 70px 0;
}

.features .section-header p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background-color: var(--background-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Horizontal Feature Card (First Card) */
.feature-card-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.feature-card-horizontal .feature-content {
    padding: 30px;
}

.feature-card-horizontal .feature-image {
    background-color: #D0D0D0;
    min-height: 300px;
}

/* Vertical Feature Cards */
.feature-card-vertical {
    display: inline-block;
    width: 100%;
}

.feature-card-vertical .feature-content {
    padding: 30px;
}

.feature-card-vertical .feature-image {
    background-color: #D0D0D0;
    height: 250px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Responsive Features Grid */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card-horizontal {
        grid-column: 1 / -1; /* Span full width */
    }
}

/* Başarı Hikayeleri Bölümü */
.success-stories-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.success-stories-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Slider yapısı */
.success-stories-slider {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Başarı hikayesi kartı */
.success-story-card {
    max-width: 900px;
    width: 100%;
    background-color: #4d55ff; /* Mavi arka plan */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.story-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.story-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-category {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 5px;
}

.story-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-align: center;
    padding-bottom: 40px;
    line-height: 1.2;
}

.story-info {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-color);
}

.company-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.company-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.company-details {
    color: #fff;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
}

.founder-name {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 3px;
}

/* Play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 30px;
    height: 30px;
}

/* Slider Navigation */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slide-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Dots indicators */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}

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

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* YouTube Modal */
.youtube-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.youtube-modal.active {
    display: flex;
}

.youtube-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.youtube-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 oran */
    height: 0;
    overflow: hidden;
}

#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Müşteri Yorumları Bölümü */
.musteri-yorumlari {
    padding: 70px 0;
    background-color: #f9f9f9;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* Testimonials Slider */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    opacity: 0;
    width: 100%;
    transition: opacity 0.5s ease;
    top: 0;
    left: 0;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

/* Yorum Kartı */
.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 60px;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
}

.avatar-container {
    margin-right: 24px;
    flex-shrink: 0;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-content {
    flex: 1;
}

.customer-info {
    margin-bottom: 15px;
}

.customer-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.restaurant-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

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

.star {
    color: #FFD700; /* Altın rengi yıldız */
    font-size: 20px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Navigasyon Butonları */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 10px --primary-color;
    transition: all 0.2s ease;
}

.nav-button:hover {
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(174, 174, 174, 0.4);
}

.prev {
    left: -22px;
}

.next {
    right: -22px;
}

/* Dots İndikatörleri */
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        padding: 20px;
        flex-direction: column;
    }
    
    .avatar-container {
        margin: 0 0 20px 0;
        text-align: center;
        width: 100%;
    }
    
    .avatar {
        width: 80px;
        height: 80px;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
    
    .customer-name {
        font-size: 18px;
    }
    
    .restaurant-name {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 15px;
    }
    
    .avatar {
        width: 70px;
        height: 70px;
    }
    
    .customer-name {
        font-size: 16px;
    }
    
    .star {
        font-size: 16px;
    }
    
    .nav-button {
        width: 36px;
        height: 36px;
    }
    
    .prev {
        left: -10px;
    }
    
    .next {
        right: -10px;
    }
    
    .testimonials-wrapper {
        min-height: 360px;
    }
}

/* Responsive design */
@media (max-width: 992px) {
    .story-title {
        font-size: 28px;
    }
    
    .story-banner {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding: 40px 0;
    }
    
    .story-banner {
        padding: 15px;
        height: 100px;
    }
    
    .story-category {
        font-size: 14px;
    }
    
    .story-title {
        font-size: 22px;
    }
    
    .story-thumbnail {
        height: 280px;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
    }
    
    .company-logo img {
        width: 45px;
        height: 45px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .founder-name {
        font-size: 13px;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .story-banner {
        height: 90px;
    }
    
    .story-category {
        font-size: 12px;
    }
    
    .story-title {
        font-size: 18px;
    }
    
    .story-thumbnail {
        height: 220px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    background-color: var(--background-light);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category {
    padding: 8px 16px;
    border-radius: var(--button-radius);
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.category.active {
    color: var(--primary-color);
    font-weight: 600;
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    background-color: transparent;
    overflow: hidden;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.open .toggle-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    position: relative;
    overflow: hidden;
    padding-top: 5px;
    padding-bottom: 80px;
}

.cta-title {
    text-align: center;
    padding-left: 16px;
    margin-bottom: 60px;
    font-size: 2rem;
    font-weight: 700;
}

.cta .container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* Tek numaralı konteynerler (başlık konteyner sayılmıyor) */
.cta .container:nth-of-type(odd) {
    flex-direction: row; /* Solda yazı, sağda resim */
}

/* Çift numaralı konteynerler */
.cta .container:nth-of-type(even) {
    flex-direction: row-reverse; /* Solda resim, sağda yazı */
}

.cta-content, .cta-image {
    flex: 1; /* İki tarafı da eşit böl */
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobil düzen için medya sorgusu */
@media (max-width: 768px) {
    .cta .container {
        flex-direction: column !important; /* Tüm konteynerlerde dikey düzen */
    }
    
    /* Her zaman yazı üstte, resim altta olsun */
    .cta-content {
        order: 1; /* Yazıyı üste taşı */
    }
    
    .cta-image {
        order: 2; /* Resmi alta taşı */
    }
    
    /* Mobilde marjin ve boşluklarda düzenleme */
    .cta-title {
        margin-bottom: 40px;
        font-size: 1.8rem;
    }
    
    .cta .container {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* Deal Section */
.deal {
    background-color: var(--background-dark);
    text-align: center;
    padding: 80px 0;
    color: white;
}

.deal h2 {
    margin-bottom: 20px;
}

.deal p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ccc;
}

.deal-actions {
    display: flex;
    justify-content: center;
}

/* Footer Styles */
.footer {
    background-color: #1D1D1D;
    color: #fff;
    padding: 60px 0 30px;
}

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

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

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* 3 sütunlu düzen */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Orta sütun hizalama */
.contact-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Sağ sütun hizalama - uygulamalar */
.apps-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.app-link {
    transition: opacity 0.3s;
}

.app-link:hover {
    opacity: 0.8;
}

.app-link img {
    height: 40px;
    width: auto;
}

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

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

.social-links a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-column:first-child {
        grid-column: span 2; /* İlk sütun daha geniş olsun */
    }
    
    .apps-column {
        align-items: flex-start; /* Tablet boyutunda sol hizalama */
    }
    
    .app-links {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column:first-child {
        grid-column: span 1;
    }
    
    .contact-column, .apps-column {
        align-items: center; /* Mobilde ortalama */
    }
    
    .app-links {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 40px 0 0;
    }
    
    .cta .container {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav ul {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 40px;
    }
}