* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #4a90e2 0%, #d53333 100%);
    min-height: 100vh;
  }

  /* Ana sayfa scroll disable - sadece mobile */
  @media (max-width: 768px) {
    body.homepage-no-scroll {
      overflow: hidden;
      height: 100vh;
    }
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles */
  .header {
    background: #d53333;
    color: white;
  }
  
/* Desktop Header */
  .header-top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-top-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

.header-top-left a {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 40px;
    filter: brightness(0) invert(1);
  }
  


.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-download-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-download-section a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s;
}

.app-download-section a:hover {
    opacity: 0.8;
  }
  
  .download-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
  }
  
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .social-icons {
    display: flex;
    gap: 8px;
  }
  
  .social-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    color: white;
    text-decoration: none;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
  
  .social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
.customer-service {
    text-align: right;
    color: white;
  }
  
.service-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 2px;
  }
  
  .phone-number {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #f0f0f0;
}

/* Mobile Header */
.mobile-header {
    display: none;
    background: white;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.mobile-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-logo {
    width: 50px;
    height: 40px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    object-fit: contain;
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #d53333;
    letter-spacing: 0.5px;
}

.mobile-brand-slogan {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Navigation */
  .navigation {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px 0;
  }
  
  .navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #d53333;
  }
  
  .dropdown-arrow {
    font-size: 10px;
  }

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    color: white;
    padding-left: 28px;
}

.dropdown-menu a:hover::before {
    content: '›';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 16px;
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .login {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login:hover {
    color: #d53333;
}

.login-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  
  /* Main Content */
  .main-content {
    position: relative;
    min-height: calc(100vh - 120px);
    background: white;
  }
  
  .hero-section {
    position: relative;
    height: calc(100vh - 120px);
    background: linear-gradient(135deg, #4a90e2 0%, #d53333 100%);
    overflow: hidden;
  }
  
  .hero-background {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Slider Container */
.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

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

.slider-slide.active {
    opacity: 1;
}

.slider-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 5;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slider-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.slider-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.slider-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-description {
        font-size: 1rem;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    font-size: 48px;
    color: white;
    cursor: pointer;
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.3s;
    user-select: none;
    pointer-events: auto;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-arrow.left-arrow {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-arrow.right-arrow {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-arrow:hover {
    color: #f0f0f0;
    transform: scale(1.2) translateY(-50%);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.slider-arrow:active {
    transform: scale(0.9) translateY(-50%);
  }
  
  /* Booking Form */
  .booking-form-container {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
  }
  
  .booking-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .trip-type {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
  }
  
  .radio-option input[type="radio"] {
    display: none;
  }
  
  .radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #d53333;
    border-radius: 50%;
    position: relative;
  }
  
  .radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #d53333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
  }
  
  .form-group {
    flex: 1;
    min-width: 180px;
}

.form-group.departure-arrival {
    flex: 0 0 200px;
    min-width: 200px;
}

.form-group.date-group {
    flex: 1;
    min-width: 180px;
}

.form-group.return-date-group {
    flex: 1;
    min-width: 180px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
  }
  
  .select-wrapper {
    position: relative;
  }
  
  .form-select,
  .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s;
    cursor: pointer;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
  }
  
  .form-select:focus,
  .form-input:focus {
    outline: none;
    border-color: #d53333;
    box-shadow: 0 0 0 3px rgba(213, 51, 51, 0.1);
}

.form-select:hover {
    border-color: #d53333;
}

.date-input {
    cursor: pointer;
    min-width: 120px;
    width: 100%;
    height: 46px;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
  }
  
  .search-button {
    background: #d53333;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    height: 46px;
    min-width: 150px;
    flex-shrink: 0;
  }
  
  .search-button:hover {
    background: #b82828;
  }
  
.return-date-group {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop header, show mobile header */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Mobile header adjustments */
    .mobile-header .container {
        padding: 0 20px;
    }
    
    /* Mobile navigation styles */
    .navigation {
        background: white;
        color: #333;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navigation.active {
        max-height: 300px;
    }
    
    .navigation .container {
        padding: 20px;
    display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 16px;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
    }
    
    .login {
        font-size: 16px;
        gap: 8px;
        padding: 12px 0;
    }
    
    /* Form adjustments for mobile */
    .form-row {
      flex-direction: column;
      gap: 20px;
    }
    
    .date-input-group {
      gap: 12px;
    }
    
    .date-buttons {
      justify-content: center;
      gap: 12px;
      margin-top: 0;
    }
    
    .date-btn {
      padding: 10px 20px;
      font-size: 14px;
      height: 40px;
      min-width: 80px;
    }
    
    .booking-form-container {
        position: static;
        transform: none;
        margin: 20px auto;
        width: 95%;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    /* Adjust main content height for mobile */
    .main-content {
        min-height: calc(100vh - 80px);
    }
    
    .hero-section {
        height: auto;
        min-height: calc(100vh - 80px);
    }
}

@media (min-width: 769px) {
    /* Hide mobile header, show desktop header */
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal[style*="display: block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Modal Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        min-height: 100vh;
    }
    
    .modal-content {
        margin: 0;
        width: 100%;
        max-width: none;
        border-radius: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 20px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .modal-header h2 {
    font-size: 18px;
        flex: 1;
        min-width: 0;
    }
    
    .modal-title-with-logo {
        flex: 1;
        min-width: 0;
    }
    
    .modal-logo {
        height: 24px;
    }
    
    .close-modal {
        width: 28px;
        height: 28px;
        font-size: 24px;
        flex-shrink: 0;
    }
}

.modal-title-with-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
}

.modal-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.close-modal {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.close-modal svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-body {
    padding: 30px;
}

/* Mobile Modal Body */
@media (max-width: 768px) {
    .modal-body {
        padding: 20px 15px;
    }
}



.search-form .form-group {
    margin-bottom: 30px;
}

.search-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    text-align: center;
}

.search-form .form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Mobile Form Elements */
@media (max-width: 768px) {
    .search-form .form-group {
        margin-bottom: 20px;
    }
    
    .search-form label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .search-form .form-input {
        padding: 15px 15px;
        font-size: 16px;
        border-radius: 12px;
        letter-spacing: 0.5px;
    }
}

.search-form .form-input:focus {
    outline: none;
    border-color: #d53333;
    box-shadow: 0 0 0 4px rgba(213, 51, 51, 0.1);
    transform: translateY(-3px);
}

.search-form .form-input::placeholder {
    color: #bdc3c7;
    font-weight: 400;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.search-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.cancel-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cancel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Mobile Form Actions */
@media (max-width: 768px) {
    .form-actions {
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
    }
    
    .search-btn,
    .cancel-btn {
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 20px;
        width: 100%;
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Icon Styles */
.header-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: currentColor;
}

/* Tarih Seçici Stilleri */
.date-picker-content {
    max-width: 400px;
    width: 90%;
}

.date-picker-header {
    background: #d53333;
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    text-align: center;
    position: relative;
}

.date-picker-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.date-picker-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
}

.date-picker-month-year {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    flex: 1;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Date Picker */
@media (max-width: 768px) {
    .date-picker-content {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .date-picker-header {
        padding: 15px 10px;
        border-radius: 15px 15px 0 0;
    }
    
    .date-picker-header h2 {
        font-size: 16px;
    }
    
    .date-picker-controls {
        padding: 12px 15px;
    }
    
    .date-picker-month-year {
        font-size: 14px;
        margin: 0 10px;
    }
    
    .date-picker-logo {
        height: 20px;
    }
}

.date-picker-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.date-nav-btn {
    background: #d53333;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-nav-btn:hover {
    background: #b82828;
    transform: scale(1.05);
}

.date-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.date-picker-calendar {
    background: white;
    padding: 0 20px 20px 20px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 15px;
}

.weekday {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    padding: 10px 5px;
    background: #f8f9fa;
    border-radius: 6px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    text-align: center;
    padding: 12px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid transparent;
}

/* Mobile Date Picker Calendar */
@media (max-width: 768px) {
    .date-nav-btn {
        width: 35px;
        height: 35px;
        border-radius: 6px;
    }
    
    .date-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .date-picker-calendar {
        padding: 0 15px 15px 15px;
    }
    
    .weekday {
        font-size: 12px;
        padding: 8px 3px;
        border-radius: 4px;
    }
    
    .calendar-day {
        padding: 10px 4px;
        font-size: 13px;
        border-radius: 4px;
    }
    
    .calendar-weekdays,
    .calendar-days {
        gap: 1px;
    }
}

.calendar-day:hover {
    background: #e9ecef;
    border-color: #d53333;
}

.calendar-day.active {
    background: #d53333;
    color: white;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: #999;
}

.calendar-day.today {
    background: #f8f9fa;
    border-color: #d53333;
    color: #d53333;
    font-weight: 600;
}

.calendar-day.departure-date {
    background: white;
    border: 2px solid #d53333;
    color: #333;
    font-weight: 500;
}

.calendar-day.departure-date.active {
    background: #d53333;
    color: white;
    border: 2px solid #d53333;
}

.label-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: currentColor;
    vertical-align: middle;
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: currentColor;
    vertical-align: middle;
}

.link-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    fill: currentColor;
    vertical-align: middle;
}

/* Mobile Icon Sizes */
@media (max-width: 768px) {
    .label-icon,
    .btn-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    
    .link-icon {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }
}

/* Login Form Styles */
.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Mobile Login Form */
@media (max-width: 768px) {
    .login-form .form-group {
        margin-bottom: 20px;
    }
    
    .login-form label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .forgot-password {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 14px;
    }
}

.forgot-link {
    color: #d53333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.forgot-link:hover {
    color: #b82828;
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Hide page background on mobile - sadece ana sayfa için */
    body.homepage {
        background: none !important;
        overflow: hidden;
    }
    
    body.homepage .main-content {
        background: none !important;
        overflow: hidden;
    }
    
    .mobile-header {
        background: white;
        padding: 15px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

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

    .mobile-logo {
        height: 35px;
        width: auto;
    }

    .mobile-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    }

    .mobile-login-btn {
        width: 32px;
        height: 32px;
        background: #f8f9fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-login-btn:hover {
        background: #e9ecef;
        transform: scale(1.05);
    }

    .mobile-login-btn svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .mobile-hamburger {
        width: 32px;
        height: 32px;
        background: #f8f9fa;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    position: relative;
  }
  
    .mobile-hamburger svg {
        width: 20px;
        height: 20px;
        color: #333;
        transition: all 0.3s ease;
    position: absolute;
    }

    .mobile-hamburger .hamburger-icon {
        opacity: 1;
        transform: rotate(0deg);
    }

    .mobile-hamburger .close-icon {
        opacity: 0;
        transform: rotate(180deg);
    }

    .mobile-hamburger.active .hamburger-icon {
        opacity: 0;
        transform: rotate(-180deg);
    }

    .mobile-hamburger.active .close-icon {
        opacity: 1;
        transform: rotate(0deg);
    }

    .mobile-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-menu {
        list-style: none;
        margin: 0;
        padding: 20px 0;
    }

    .mobile-nav-link {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.3s ease;
    }

    .mobile-nav-link:hover {
        background: #f8f9fa;
        color: #d53333;
    }

    .mobile-form-section {
        margin-top: 65px;
    position: relative;
        height: 100vh;
        overflow: hidden;
        background: none;
    }

    .mobile-hero-background {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    .mobile-booking-form-container {
        position: relative;
        z-index: 2;
        padding: 30px 20px;
        padding-top: 20px;
    }

    .mobile-booking-form {
        background: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .mobile-trip-type {
    display: flex;
        gap: 10px;
        margin-bottom: 25px;
    }

    .mobile-radio-option {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .mobile-radio-option input[type="radio"] {
        display: none;
    }

    .mobile-radio-custom {
        width: 20px;
        height: 20px;
        border: 2px solid #ddd;
        border-radius: 50%;
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-radio-option input[type="radio"]:checked + .mobile-radio-custom {
        border-color: #d53333;
        background: #d53333;
    }

    .mobile-radio-option input[type="radio"]:checked + .mobile-radio-custom::after {
    content: '';
    position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
    }

    .mobile-form-row {
        margin-bottom: 20px;
    }

    .mobile-form-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        font-weight: 600;
    color: #333;
        font-size: 14px;
    }

    .mobile-label-icon {
        width: 18px;
        height: 18px;
        fill: #666;
        flex-shrink: 0;
        display: block;
    }

    .mobile-select-wrapper {
        position: relative;
    }

    .mobile-form-select {
        width: 100%;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
    font-size: 14px;
        background: white;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 16px;
        padding-right: 45px;
    }

    .mobile-date-row {
        display: flex;
        gap: 4px; /* Daha da küçültüldü */
        align-items: center; /* Dikey hizalama için center yapıldı */
        width: 100%;
        max-width: 100%;
    }

    .mobile-date-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; /* Dikey hizalama için */
    }

    .mobile-date-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center; /* Butonları ortalamak için */
        justify-content: center; /* Dikey hizalama için */
    }

    .mobile-date-text {
        font-weight: 500;
        color: #333;
    }

    .mobile-date-buttons {
        display: flex;
        flex-direction: column;
        gap: 4px; /* Butonlar büyüdü, gap artırıldı */
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 36px; /* Match input height */
        max-width: 100%;
        align-self: center; /* Dikey hizalama için */
    }

    .mobile-return-date-inline {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mobile-date-input {
        width: 100%;
        padding: 10px 40px 10px 12px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 14px;
        background: white;
        color: #333;
        transition: border-color 0.3s;
        height: 42px;
        box-sizing: border-box;
        min-width: 0;
        max-width: 100%;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
    }

    .mobile-date-input:focus {
        outline: none;
        border-color: #d53333;
    }

    .mobile-date-btn {
        padding: 6px 8px; /* Boyut büyütüldü */
        border: none;
        border-radius: 10px; /* Boyuta uygun */
        font-size: 11px; /* Yazı büyütüldü */
    font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #e9ecef;
        color: #666;
        width: 60%; /* Genişlik küçültüldü */
        text-align: center;
        max-width: 60%;
        box-sizing: border-box;
    }

    .mobile-date-btn.active {
        background: #d53333;
        color: white;
    }

    .mobile-search-button {
        width: 100%;
        background: #d53333;
        color: white;
        border: none;
        padding: 18px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 20px;
    }

    .mobile-search-button:hover {
        background: #b82828;
        transform: translateY(-2px);
    }

    .mobile-date-labels {
        display: flex;
        gap: 3px; /* Daha da küçültüldü */
        margin-bottom: 6px; /* Daha da küçültüldü */
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
    }

    .mobile-date-label {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 2px; /* Küçültüldü */
        font-weight: 600;
    color: #333;
        font-size: 11px; /* Küçültüldü */
        height: 20px; /* Küçültüldü */
        line-height: 1;
        white-space: nowrap;
        min-width: 0;
        max-width: 100%;
    }

    .mobile-date-label span {
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        flex-shrink: 1;
    }
}

/* Utility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Ana Sayfa İçerik Stilleri */
.main-sections {
    background: white;
}

/* Hero ve Özellikler Birleşik Bölümü */
.hero-features-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e8ecef;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 16px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Profesyonel Özellikler Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: #d53333;
    box-shadow: 0 4px 12px rgba(213, 51, 51, 0.08);
    background: white;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #d53333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-content p {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

/* Popüler Seferler */
.popular-routes-section {
    padding: 60px 0;
    background: #f8fafb;
}

.popular-routes-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.route-card:hover {
    border-color: #d53333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.route-image {
    height: 160px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.02);
}

.route-content {
    padding: 20px;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.route-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    flex: 1;
}

.route-arrow {
    background: #d53333;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-arrow svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.buy-button {
    width: 100%;
    background: #d53333;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.buy-button:hover {
    background: #b82828;
}

.route-price {
    font-size: 18px;
    font-weight: 700;
    color: #d53333;
    margin-bottom: 4px;
}

.route-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.route-description {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Popüler Güzergahlar */
.popular-destinations {
    padding: 60px 0;
    background: white;
}

.popular-destinations h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.destinations-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.destination-link {
    display: block;
    padding: 16px 20px;
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    color: #1a202c;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s ease;
}

.destination-link:hover {
    background: #d53333;
    color: white;
    border-color: #d53333;
}

/* Şehir Tanıtımları */
.city-promotions {
    padding: 60px 0 60px 0;
    background: #f8f9fa;
    display: block;
    clear: both;
    width: 100%;
    overflow: hidden;
}

.city-promotions h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #718096;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
}

.city-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.city-card:hover {
    transform: scale(1.02);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.city-overlay h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
}

/* Sol büyük kart */
.city-main {
    grid-row: 1 / -1;
}

/* Orta sütun */
.cities-middle {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

/* Sağ sütun */
.cities-right {
    display: grid;
    grid-template-rows: repeat(3, 1fr) 1fr;
    gap: 8px;
}

.cities-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Footer - Temiz Modern Tasarım */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: #ecf0f1;
    padding: 60px 0 0 0;
    margin: 0;
    width: 100%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 20L100 10L100 20" fill="rgba(255,255,255,0.02)"/></svg>') repeat-x;
    pointer-events: none;
}



.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 3px solid #d53333;
    padding-bottom: 8px;
    display: inline-block;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30%;
    height: 3px;
    background: #ecf0f1;
}

.contact-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-info p {
    margin-bottom: 12px;
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.contact-info p:hover {
    color: #ecf0f1;
}

.contact-info strong {
    color: #e74c3c;
    font-weight: 600;
    display: inline-block;
    margin-right: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

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

/* Liste ok simgesi */
.footer-links li::before {
    content: '▶';
    color: #e74c3c;
    margin-right: 10px;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links li:hover::before {
    color: #ecf0f1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.footer-logo { justify-self: start; }
.footer-logo img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-self: center;
}

.footer-links-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s ease;
}

.footer-links-bottom a:hover { color: #d53333; }

.footer-social {
    display: flex;
    gap: 12px;
    justify-self: end;
}

.social-link {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #d53333;
    color: #ffffff;
    border-color: transparent;
}

.social-link svg { width: 18px; height: 18px; }

.footer-copyright {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-copyright p {
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer { padding: 24px 0 0 0; }
    
    .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .footer-column h3 { font-size: 14px; margin-bottom: 12px; }
    
    .footer-links li { font-size: 13px; margin-bottom: 6px; }
    
    .contact-info { padding: 0; }
    
    .contact-info p { font-size: 13px; margin-bottom: 6px; }
    
    .footer-bottom-content { grid-template-columns: 1fr; gap: 12px; }
    
    .footer-links-bottom { gap: 12px; justify-self: center; }
    
    .footer-links-bottom a { font-size: 12px; }
    
    .footer-social { gap: 8px; justify-self: center; }
    
    .social-link { width: 36px; height: 36px; }
    
    .social-link svg { width: 16px; height: 16px; }
    
    .footer-copyright p { font-size: 12px; }
}

@media (max-width: 480px) {
    .footer-columns { grid-template-columns: 1fr; gap: 18px; }
    .footer-links-bottom { flex-direction: column; gap: 8px; }
    .footer-links-bottom a { width: fit-content; margin: 0 auto; }
}


/* İletişim Sayfası Stilleri */
.sub-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .sub-header {
        height: 250px;
        margin-top: 65px; /* Mobile header yüksekliği kadar */
    }
}

.sub-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sub-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(213,51,51,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.sub-header-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 8px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8fafb;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    gap: 60px;
}

/* Contact Info Cards */
.contact-info-section {
    margin-bottom: 40px;
}

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

.contact-card {
    background: #f8fafb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #d53333;
    box-shadow: 0 8px 25px rgba(213, 51, 51, 0.1);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #d53333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.contact-card-content p {
    color: #718096;
    line-height: 1.6;
}

.contact-card-content a {
    color: #d53333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #b82828;
}

/* Contact Form and Map */
.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section {
    background: #f8fafb;
    border-radius: 12px;
    padding: 40px;
}



.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
    text-align: center;
}

/* İletişim Formu Özel Stiller */
.contact-form .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form .contact-form-group label {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form .contact-form-group input,
.contact-form .contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.contact-form .contact-form-group input:focus,
.contact-form .contact-form-group textarea:focus {
    outline: none;
    border-color: #d53333;
    box-shadow: 0 0 0 3px rgba(213, 51, 51, 0.1);
}

.contact-form .contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .contact-submit-btn {
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.contact-form .contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(213, 51, 51, 0.3);
}

.contact-form .contact-submit-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Map Section */
.map-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    display: block;
}

  /* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

.mobile-dropdown-menu {
    display: none;
    background: #f8fafb;
    border-radius: 8px;
    margin: 8px 0;
    padding: 8px 0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    list-style: none;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
}

.mobile-dropdown-menu a:hover {
    background: #d53333;
    color: white;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile Contact Styles */
    .sub-header {
        height: 200px;
    }
    
    .sub-header-overlay h1 {
        font-size: 32px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-header p {
    font-size: 16px;
  }
  
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-map {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-form .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Blog Sayfası Stilleri */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #718096;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-title a {
    color: #1a202c;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d53333;
}

.blog-excerpt {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d53333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #b82828;
    gap: 12px;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Blog Detay Sayfası */
.blog-detail-section {
    padding: 80px 0;
    background: #f8fafb;
}

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

.blog-detail-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-detail-header {
    padding: 40px 40px 20px 40px;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #718096;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin: 0;
}

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

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 40px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
}

.blog-detail-body h3 {
    color: #1a202c;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blog-detail-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-detail-list li:last-child {
    border-bottom: none;
}

.blog-detail-footer {
    padding: 30px 40px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    
.blog-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label {
    color: #718096;
    font-weight: 600;
    font-size: 14px;
}

.blog-tag {
    background: #f8fafb;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: #d53333;
    color: white;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    color: #718096;
    font-weight: 600;
    font-size: 14px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-navigation {
    margin-top: 40px;
    text-align: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d53333;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #d53333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #d53333;
    color: white;
}

.back-to-blog svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Blog Mobil Responsive */
@media (max-width: 768px) {
    .blog-section,
    .blog-detail-section {
        padding: 40px 0;
    }
    
    .blog-header h2,
    .blog-detail-title {
        font-size: 28px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card {
        margin: 0 10px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-detail-header,
    .blog-detail-body,
    .blog-detail-footer {
        padding: 20px;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .blog-detail-footer {
      flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-meta,
    .blog-detail-meta {
      flex-direction: column;
        gap: 10px;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-header {
      text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.about-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    margin-bottom: 80px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.about-intro-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-details {
    background: #f8fafb;
    padding: 40px;
    border-radius: 12px;
}

.about-details p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-details p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.about-features {
    margin-bottom: 80px;
}

.about-features h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-width: 0;
    display: block;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-item p {
    color: #718096;
    line-height: 1.5;
    font-size: 13px;
}

/* Timeline Section */
.about-timeline {
    background: #f8fafb;
    padding: 60px 40px;
    border-radius: 12px;
}

.about-timeline h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 0 30px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Hakkımızda Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
}

/* Hakkımızda Mobil Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-details {
        padding: 30px 20px;
    }
    
    .about-features,
    .about-timeline {
        margin-bottom: 40px;
    }
    
    .about-timeline {
        padding: 40px 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    

    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        min-width: 60px;
        font-size: 14px;
        padding: 8px 12px;
        margin-right: 20px;
    }
    
    .timeline-content {
        margin: 0;
        flex: 1;
    }
    
    .timeline-content::before {
        display: none;
    }
}

/* Mobil Uygulama Sayfası Stilleri */
.mobile-app-hero {
    padding: 80px 0;
    background: white;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.mobile-app-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.mobile-app-text p {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
}

.app-features {
    margin-bottom: 40px;
}

.mobile-app-hero .feature-item {
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    padding: 15px;
    background: #f8fafb;
    border-radius: 12px;
    border-left: 4px solid #d53333;
}

.mobile-app-hero .feature-icon {
    width: 40px;
    height: 40px;
    background: #d53333;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.mobile-app-hero .feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.app-store-btn,
.play-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.app-store-btn:hover,
.play-store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.app-store-btn div,
.play-store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-text {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.mobile-app-qr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    text-align: center;
    padding: 40px;
    background: #f8fafb;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.mobile-app-image {
    width: 250px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.qr-container p {
    font-size: 16px;
    color: #4a5568;
    font-weight: 500;
    margin: 0;
}

/* App Features Section */
.app-features-section {
    padding: 80px 0;
    background: #f8fafb;
}

.app-features-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

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

.app-features-section .feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.app-features-section .feature-card:hover {
    border-color: #d53333;
    box-shadow: 0 8px 25px rgba(213, 51, 51, 0.1);
    transform: translateY(-5px);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.feature-card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.app-features-section .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.app-features-section .feature-card p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Mobile App Responsive */
  @media (max-width: 768px) {
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mobile-app-text h2 {
        font-size: 28px;
    }
    
    .mobile-app-text p {
        font-size: 16px;
    }
    
    .app-download-buttons {
        justify-content: center;
      flex-direction: column;
        align-items: center;
    }
    
    .qr-container {
        padding: 30px 20px;
    }
    
    .mobile-app-image {
        width: 200px;
        margin-bottom: 15px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .app-features-section .features-grid {
        grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .app-features-section .feature-card {
        padding: 30px 20px;
    }
    
    .app-features-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 80px 0;
    background: white;
}

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

.legal-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
      text-align: center;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d53333;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #f8fafb;
    padding-bottom: 10px;
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin: 30px 0 15px 0;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.company-info {
    background: #f8fafb;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #d53333;
}

.company-info h4 {
    color: #d53333;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 10px;
}

.contact-info {
    background: #f8fafb;
      padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.service-details table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-details table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
}

.service-details table tr:last-child td {
    border-bottom: none;
}

.service-details table td:first-child {
    background: #f8fafb;
    width: 200px;
    font-weight: 600;
    color: #1a202c;
}

.cancellation-rules {
    background: #fff8dc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
    margin: 25px 0;
}

.cancellation-rules h4 {
    color: #d68910;
    margin-bottom: 15px;
}

.court-info {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    margin: 25px 0;
}

.court-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

.court-info table th,
.court-info table td {
    padding: 12px;
    border: 1px solid #bdc3c7;
    text-align: left;
}

.court-info table th {
    background: #3498db;
    color: white;
    font-weight: 600;
}

.acceptance {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
    margin: 30px 0;
    text-align: center;
}

.academy-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.academy-info h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.academy-info p {
    color: rgba(255, 255, 255, 0.9);
}

.training-features {
    margin: 40px 0;
}

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

.training-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.training-item:hover {
    border-color: #d53333;
    box-shadow: 0 8px 25px rgba(213, 51, 51, 0.1);
    transform: translateY(-5px);
}

.training-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.training-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.training-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.training-item p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Legal Pages Mobile Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 0 20px;
    }
    
    .legal-content h2 {
        font-size: 28px;
    }
    
    .legal-content h3 {
        font-size: 20px;
    }
    
    .legal-content h4 {
        font-size: 18px;
    }
    
    .legal-content p,
    .legal-content ul li {
        font-size: 15px;
    }
    
    .company-info,
    .contact-info,
    .cancellation-rules,
    .court-info,
    .academy-info {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .service-details table td {
        padding: 12px 10px;
        font-size: 14px;
    }
    
    .service-details table td:first-child {
        width: 120px;
    }
    
    .training-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .training-item {
        padding: 25px 15px;
    }
}

/* Şehir Tanıtım Sayfası Stilleri */
.city-detail-section {
    padding: 80px 0;
    background: white;
}

.city-hero-image {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.city-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.city-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.city-header {
    text-align: center;
    margin-bottom: 60px;
}

.city-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    position: relative;
}

.city-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d53333 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.city-subtitle {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.city-attractions {
    margin-bottom: 60px;
}

.attraction-item {
    background: #f8fafb;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 15px;
    border-left: 5px solid #d53333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.attraction-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(213, 51, 51, 0.02) 0%, rgba(255, 107, 107, 0.02) 100%);
    z-index: 1;
}

.attraction-item > * {
    position: relative;
    z-index: 2;
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(213, 51, 51, 0.1);
    border-left-width: 8px;
}

.attraction-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d53333;
    margin-bottom: 15px;
    position: relative;
}

.attraction-item h3::before {
    content: '📍';
    margin-right: 12px;
    font-size: 20px;
}

.attraction-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

.city-conclusion {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.city-conclusion p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Şehir Tanıtım Sayfası Mobile Responsive */
@media (max-width: 768px) {
    .city-detail-section {
        padding: 40px 0;
    }
    
    .city-hero-image {
        margin-bottom: 40px;
        border-radius: 15px;
    }
    
    .city-main-image {
        height: 250px;
    }
    
    .city-detail-content {
        padding: 0 20px;
    }
    
    .city-header {
        margin-bottom: 40px;
    }
    
    .city-header h2 {
      font-size: 32px;
        margin-bottom: 15px;
    }
    
    .city-header h2::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    
    .city-subtitle {
        font-size: 16px;
    }
    
    .city-attractions {
        margin-bottom: 40px;
    }
    
    .attraction-item {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .attraction-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .attraction-item h3::before {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .attraction-item p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .city-conclusion {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .city-conclusion p {
        font-size: 16px;
    }
}

/* Tümünü Gör Butonları */
.btn-view-all {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    background-color: #d53333;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(213, 51, 51, 0.2);
}

.btn-view-all:hover {
    background-color: #b82828;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(213, 51, 51, 0.3);
}