/* Mobile First */
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .menu { display: flex; flex-direction: row; align-items: center; gap: 1rem; }
  .nav-toggle { display: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  
  /* Desktop Menu Groups */
  .menu-group { position: relative; }
  .menu-group:hover .submenu { 
    display: block; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: white; 
    border: 1px solid #e5e7eb; 
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    min-width: 200px; 
    z-index: 100;
    padding: 0.5rem 0;
  }
  .submenu a { 
    padding: 0.75rem 1rem; 
    border-left: none;
    border-radius: 0;
    margin: 0;
  }
  .submenu a:hover { 
    background: rgba(30,64,175,0.08); 
    border-left-color: transparent;
  }
  
  /* Desktop Logo Styles */
  .logo-img {
    height: 45px;
  }
  
  .section-header-with-logo {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
    align-items: start;
  }
  
  .section-header-with-logo h2 {
    font-size: 3rem;
    order: 2;
    margin-bottom: 1rem;
    grid-column: 2;
    height: 180px;
    display: flex;
    align-items: center;
    line-height: 1.2;
  }
  
  .section-logo {
    height: 180px;
    order: 1;
    margin-bottom: 1rem;
    grid-column: 1;
  }
  
  .section-header-with-logo .check-list {
    order: 3;
    grid-column: 3;
    margin: 0;
    max-width: none;
    align-self: start;
    gap: 0.2rem;
  }
  
  .section-header-with-logo .check-list li {
    font-size: 1.0rem;
    padding: 0.3rem 0;
    align-items: center;
    line-height: 1.4;
    padding-left: 1.5rem;
  }
  
  .section-header-with-logo .check-list li::before {
    width: 6px;
    height: 6px;
  }
}

@media (min-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  /* Desktop Gallery Improvements */
  .gallery-slide {
    gap: 1.2rem;
    width: 100%;
  }
  
  .gallery-item {
    width: 100%;
    height: 100%;
  }
  
  .gallery-overlay {
    padding: 1.5rem;
  }
  
  .gallery-info h3 {
    font-size: 1.1rem;
  }
  
  .gallery-info p {
    font-size: 0.9rem;
  }
}

@media (min-width: 1440px) {
  .container { width: min(1200px, 86%); }
}

/* Teşekkür Sayfası Responsive Stilleri */
@media (min-width: 768px) {
  .contact-buttons,
  .navigation-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .contact-buttons .btn,
  .navigation-buttons .btn {
    width: auto;
    max-width: none;
  }
  
  .success-icon svg {
    width: 80px;
    height: 80px;
  }
  
  .contact-info {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .success-icon svg {
    width: 96px;
    height: 96px;
  }
  
  .contact-info {
    padding: 2.5rem;
  }
}

@media (max-width: 480px) {
  .success-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .consent-section {
    padding: 0.75rem;
  }
  
  .checkbox-label {
    font-size: 0.8rem;
  }
  
  .checkmark {
    width: 16px;
    height: 16px;
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
  }
}
