/* style.css - Main Styles for AcasHub Accounting Website */
/* Reset and Base Styles */
:root {
    --primary-color: #2E4C6D;
    --secondary-color: #accecf;
    --accent-color: #ff7e33;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --white: #ffffff;
    --black: #000000;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    
    /* Typography */
    --font-main: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Breakpoints */
    --bp-mobile: 480px;
    --bp-tablet: 768px;
    --bp-desktop: 1024px;
    --bp-wide: 1200px;
  }
  
  /* iOS-specific fixes */
  @supports (-webkit-touch-callout: none) {
    /* Fix for Safari viewport units */
    :root {
      --vh: 1vh;
    }
    
    /* Fix for sticky hover on iOS */
    @media (hover: none) {
      .btn:hover, .nav-link:hover, .social-link:hover {
        transform: none !important;
        background-color: initial !important;
      }
    }
  }
  
  /* Reset */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
    -webkit-font-smoothing: antialiased; /* Better font rendering */
  }
  
  body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1rem; }
  
  p {
    margin-bottom: var(--space-sm);
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--accent-color);
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    color: var(--primary-color);
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: var(--space-sm) auto 0;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  /* Modern Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

/* Brand Identity */
.brand-identity {
    display: flex;
    align-items: center;
}

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

.logo-icon {
    margin-right: 12px;
    transition: transform 0.3s ease;

}

.logo:hover .logo-icon {
    transform: rotate(15deg);
}

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

.logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E4C6D;
    line-height: 1;
}

.logo-name-highlight {
    color: #accecf;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #7a8499;
    margin-top: 2px;
}

/* Main Navigation */
.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 12px;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #2E4C6D;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    overflow: hidden;
}

.nav-link-text {
    position: relative;
    z-index: 1;
}

.nav-link-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #accecf;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-link-hover {
    transform: translateX(0);
}

.dropdown-icon {
    margin-left: 6px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f7fafc;
    color: #2E4C6D;
    padding-left: 25px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #2E4C6D;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 76, 109, 0.2);
}

.cta-button i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 76, 109, 0.3);
}

.social-links {
    display: flex;
    margin-left: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f7fa;
    color: #4a5568;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2E4C6D;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #2E4C6D;
    left: 0;
    transition: all 0.3s ease;
}

.top-line {
    top: 0;
}

.middle-line {
    top: 50%;
    transform: translateY(-50%);
}

.bottom-line {
    bottom: 0;
}

.mobile-menu-toggle.active .top-line {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active .middle-line {
    opacity: 0;
}

.mobile-menu-toggle.active .bottom-line {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    padding: 100px 30px 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E4C6D;
    text-decoration: none;
    border-bottom: 1px solid #edf2f7;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 10px 0;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
}

.mobile-dropdown-item:hover {
    color: #2E4C6D;
}

.mobile-nav-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.mobile-cta-button {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #2E4C6D;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-links a {
    color: #4a5568;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .nav-item {
        margin: 0 8px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .header-actions {
        margin-left: 15px;
    }
    
    .cta-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .main-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        height: 70px;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 20px;
    }
    
    .logo-name {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
}
  /* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 76, 109, 0.9) 0%, rgba(25, 45, 70, 0.95) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    color: #accecf;
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(172, 206, 207, 0.3);
    z-index: -1;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta .btn i {
    font-size: 0.9rem;
}

.hero-cta .btn-primary {
    background: #accecf;
    color: #2E4C6D;
    border: 2px solid #accecf;
}

.hero-cta .btn-primary:hover {
    background: transparent;
    color: #accecf;
    transform: translateY(-3px);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #accecf;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 700px;
    z-index: 1;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(70, 70, 70, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-badge i {
    font-size: 1.5rem;
    color: #accecf;
}

.image-badge span {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.hero-scroll-indicator span {
    font-size: 0.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    height: 15px;
    background: #accecf;
    border-radius: 3px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(35px);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
        height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding-top: 0;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 50px auto 0;
    }
    
    .hero-title-highlight::after {
        height: 10px;
        bottom: 2px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        margin-bottom: 15px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}
  
  /* About Section */
  .about-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
  }
  
  .about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-features {
    list-style: none;
    margin-top: var(--space-md);
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
  }
  
  .feature-icon {
    color: var(--accent-color);
    margin-right: var(--space-sm);
  }
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
  }
  
  .service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: var(--space-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
  }
  
  .service-features {
    list-style: none;
    margin-top: var(--space-md);
  }
  
  .service-features li {
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: var(--space-md);
  }
  
  .service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
  }
  
  /* Solutions Section */
  .tabs-container {
    margin-top: var(--space-lg);
  }
  
  .tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  .tab-button {
    padding: var(--space-sm) var(--space-md);
    background-color: transparent;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tab-button.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
  }
  
  .tab-content {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .tab-text {
    flex: 1;
  }

  .tab-text-ul{
    margin: 5px;
  }
  
  .tab-image {
    flex: 1;
  }
  
  .tab-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Stats Section */
  .stats-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-xl) 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    text-align: center;
  }
  
  .stat-item {
    padding: var(--space-md);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
  }
  
  .stat-label {
    font-size: 1.25rem;
    opacity: 0.9;
  }
  
  /* Testimonials Section */
  .testimonials-slider {
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .testimonial-card {
    min-width: 100%;
    padding: var(--space-md);
    min-width: 100%; /* Her slide tam ekran genişliğinde */
    flex-shrink: 0; /* Slide'ların küçülmesini engeller */
    box-sizing: border-box;
  }
  
  .testimonial-content {
    background-color: var(--white);
    border-radius: 8px;
    padding: var(--space-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .testimonial-rating {
    color: var(--accent-color);
    margin-bottom: var(--space-sm);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: var(--space-md);
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--space-sm);
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-name {
    font-weight: 600;
  }
  
  .author-title {
    color: var(--dark-gray);
    font-size: 0.875rem;
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-md);
    gap: var(--space-md);
  }
  
  .slider-prev,
  .slider-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: var(--space-xs);
  }
  
  .slider-dots {
    display: flex;
    gap: var(--space-xs);
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dot.active {
    background-color: var(--primary-color);
  }
  
  /* Partners Section */
  .partners-section {
    background-color: var(--light-gray);
    padding: var(--space-xl) 0;
  }
  
  .partners-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--primary-color);
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-xl);
    align-items: center;
  }
  
  .partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }


  /* Testimonials Section */
.testimonials-section {
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/testimonial-bg-pattern.png') no-repeat;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-image {
    position: relative;
    margin-right: 20px;
}

.client-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    border: 2px solid white;
}

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

.client-title {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.client-rating {
    color: #FFC107;
    font-size: 0.9rem;
}

.testimonial-quote {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: rgba(46, 76, 109, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
}

.service-used {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.service-used i {
    color: var(--accent-color);
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--dark-gray);
}


  
  /* CTA Section */
  .cta-section {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: var(--space-xl) 0;
  }
  
  .cta-content h2 {
    margin-bottom: var(--space-sm);
  }
  
  .cta-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
  }







/* ----------------Contact Form Styles --------------*/
.contact-form-section {
    padding: 80px 0;
    background-color: #f9fafc;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    color: #2E4C6D;
    margin-bottom: 10px;
}

.form-header p {
    color: #6b7280;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background-color: transparent;
    transition: all 0.3s ease;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group select {
    appearance: none;
    cursor: pointer;
}

.input-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2E4C6D;
    transition: width 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-bottom-color: transparent;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group select:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group select:not([value=""]) + label {
    top: -15px;
    font-size: 0.8rem;
    color: #2E4C6D;
}

.input-group input:focus ~ .input-underline,
.input-group textarea:focus ~ .input-underline,
.input-group select:focus ~ .input-underline {
    width: 100%;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 5px;
    height: 16px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: #2E4C6D;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
}

.submit-btn:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 76, 109, 0.3);
}

.send-icon {
    width: 18px;
    height: 18px;
    fill: white;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.8rem;
}

.form-note i {
    color: #10b981;
}



/* Success Message */
.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 40px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.form-success.active {
    opacity: 1;
    pointer-events: all;
}

.success-icon {
    width: 60px;
    height: 60px;
    fill: #10b981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    color: #2E4C6D;
    margin-bottom: 10px;
}

.form-success p {
    color: #6b7280;
    margin-bottom: 25px;
}

.new-message-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid #2E4C6D;
    color: #2E4C6D;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-message-btn:hover {
    background-color: #2E4C6D;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-container {
        padding: 30px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 25px 20px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
}







  
  /* --------------Footer ----------------*/
  .main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-xl) 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
  
  .footer-heading {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: var(--space-xs);
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
  }
  
  .contact-item i {
    margin-right: var(--space-sm);
    color: var(--accent-color);
  }
  
  .footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
  }
  
  .footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: var(--space-md) 0;
    text-align: center;
  }
  
  .footer-copyright {
    margin-bottom: var(--space-xs);
  }
  
  .footer-legal {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
  }
  
  .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
  }
  
  .footer-legal a:hover {
    color: var(--white);
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .about-content,
    .tab-content {
      flex-direction: column;
    }
    
    .about-image,
    .tab-image {
      margin-top: var(--space-lg);
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
    
    .main-nav {
      position: fixed;
      top: var(--header-hight);
      left: 0;
      width: 100%;
      background-color: var(--white);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-150%);
      transition: transform 0.3s ease;
      padding: var(--space-md) 0;
    }
    
    .main-nav.open {
      transform: translateY(0);
    }
    
    .main-nav__items {
      flex-direction: column;
    }
    
    .main-nav__item {
      margin-left: 0;
      margin-bottom: var(--space-sm);
      padding: 0 var(--space-md);
    }
    
    .nav-link {
      display: block;
      padding: var(--space-sm) 0;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero-cta {
      flex-direction: column;
      gap: var(--space-sm);
    }
    
    .section {
      padding: var(--space-lg) 0;
    }
  }
  
  @media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .section-title::after {
      width: 60px;
    }
    
    .stats-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* iOS Specific Fixes */
  @media (hover: none) {
    /* Disable hover effects on touch devices */
    .btn:hover,
    .nav-link:hover,
    .social-link:hover,
    .service-card:hover,
    .partner-item:hover img {
      transform: none !important;
      background-color: initial !important;
      color: initial !important;
      filter: initial !important;
      opacity: initial !important;
      box-shadow: initial !important;
    }
  }
  
  /* Safari specific fixes */
  _::-webkit-full-page-media,
  _:future,
  :root .safari_only {
    /* Fix for Safari flexbox gap issues */
    .services-grid,
    .stats-grid,
    .partners-grid,
    .footer-grid {
      margin: -0.5em;
    }
    
    .services-grid > *,
    .stats-grid > *,
    .partners-grid > *,
    .footer-grid > * {
      margin: 0.5em;
    }
  }
  
  /* Print Styles */
  @media print {
    .main-header,
    .main-footer,
    .cta-section,
    .slider-controls {
      display: none !important;
    }
    
    body {
      font-size: 12pt;
      line-height: 1.3;
      color: #000;
      background: none;
    }
    
    .container {
      width: 100%;
      max-width: 100%;
      padding: 0;
    }
    
    .section {
      padding: 0 !important;
      margin-bottom: 1cm;
      page-break-inside: avoid;
    }
    
    a::after {
      content: " (" attr(href) ")";
      font-size: 0.8em;
      font-weight: normal;
    }
  }

  /* CSS ile düzenle */
.g-recaptcha {
    margin: 20px 0;
    transform: scale(0.85); /* Küçültebilirsiniz */
    transform-origin: left;
}



/* Hero Stats Section */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap; /* Mobilde alt satıra geçmesi için */
    justify-content: center; /* Ortalama */
}

.stat-item {
    text-align: center;
    flex: 1; /* Eşit genişlik */
    min-width: 100px; /* Minimum genişlik */
    padding: 0 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #accecf;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
    white-space: nowrap; /* Metin alt satıra geçmesin */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats {
        gap: 15px; /* Aralıkları küçült */
    }
    
    .stat-number {
        font-size: 2rem; /* Yazı boyutunu küçült */
    }
    
    .stat-label {
        font-size: 0.8rem; /* Daha küçük etiket */
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: nowrap; /* Alt alta değil yan yana */
        overflow-x: auto; /* Kaydırma çubuğu gerekirse */
        padding-bottom: 10px; /* Kaydırma çubuğu için boşluk */
        justify-content: flex-start; /* Sola yasla */
        -webkit-overflow-scrolling: touch; /* iOS kaydırma */
    }
    
    .stat-item {
        flex: 0 0 auto; /* Otomatik genişlik */
        min-width: 80px; /* Daha küçük kartlar */
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}