/* ==========================================================================
   RESPONSIVE TASARIM
   ========================================================================== */

/* Geniş Ekranlar */
@media (max-width: 1200px) {
    .riva-container {
        padding: 15px 30px;
    }
    .riva-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Tablet Ekranlar */
@media (max-width: 992px) {
    .riva-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 30px;
        transition: var(--gecis);
        z-index: 999;
    }
    .riva-menu.active {
        left: 0;
    }
    .riva-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    .riva-menu a {
        padding: 12px 15px;
        font-size: 16px;
    }
    .riva-social {
        margin: 30px 0 0;
        justify-content: center;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hakkimizda-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hakkimizda-gorsel {
        max-width: 600px;
        margin: 0 auto;
    }
    .features-carousel {
        animation: scroll-mobile 30s linear infinite;
        width: calc(240px * 8);
    }
    @keyframes scroll-mobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-240px * 4)); }
    }
}

/* Küçük Tablet ve Büyük Telefonlar */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .riva-logo .logo-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-location {
        width: 100%;
        max-width: 250px;
    }
    .section-header h2, .section-title {
        font-size: 2.2rem;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    .accordion-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

/* Küçük Telefonlar */
@media (max-width: 576px) {
    .container, .riva-container {
        padding: 12px 20px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-header h2, .section-title {
        font-size: 1.8rem;
    }
    .hakkimizda {
        padding: 4rem 0;
    }
    .hakkimizda-baslik {
        font-size: 2rem;
    }
    .deneyim-badge {
        width: 100px;
        height: 100px;
        right: -10px;
    }
    .deneyim-badge span {
        font-size: 2rem;
    }
    .feature-box {
        width: 100%;
    }
    .contact-content {
        flex-direction: column;
    }
    .harita-container {
        height: 300px;
    }
}
/* responsive.css */
@media (max-width: 768px) {
  .service-card-modern {
    height: 220px !important;  /* 300px'ten küçültüldü */
  }
  .card-title {
    font-size: 1.3rem !important;  /* 1.8rem'den küçültüldü */
  }
}
/* responsive.css */
@media (max-width: 992px) {
  .features-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
  }
  .feature-card {
    min-width: 80%;
    scroll-snap-align: start;
  }
}
/* responsive.css */
@media (max-width: 768px) {
  .service-card-modern {
    height: 220px !important;
  }
  .card-title {
    font-size: 1.3rem !important;
  }
}