/* --- Değişkenler (Variables) --- */
:root {
    --doha-blue: #001A49;
    --doha-blue-80: rgba(0, 26, 73, 0.8);
    --doha-blue-95: rgba(0, 26, 73, 0.95);
    --doha-green: #B4C424;
    --doha-green-hover: #a3b120;
    --text-white: #ffffff;
    --text-white-90: rgba(255, 255, 255, 0.9);
    --text-white-80: rgba(255, 255, 255, 0.8);
    --text-white-70: rgba(255, 255, 255, 0.7);
    --text-white-50: rgba(255, 255, 255, 0.5);
    --text-slate-600: #475569;
    --text-slate-700: #334155;
    --bg-white-10: rgba(255, 255, 255, 0.1);
    --bg-white-20: rgba(255, 255, 255, 0.2);
    --bg-white-30: rgba(255, 255, 255, 0.3);
    --bg-white-80: rgba(255, 255, 255, 0.8);
    --bg-white-5: rgba(255, 255, 255, 0.05);
    --border-white-5: rgba(255, 255, 255, 0.05);
    --border-white-10: rgba(255, 255, 255, 0.1);
    --border-white-20: rgba(255, 255, 255, 0.2);
}
/* .NET Tag Helper ile oluşan option'ların görünümünü düzeltir */

/* --- Logo Geçiş Efekti (Bunu mevcut .logo-img içine ekle veya güncelle) --- */
.logo-img {
    height: 6rem; /* Mobil varsayılan */
    width: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Yumuşak geçiş için timing function */
    transform: scale(1.1);
}

/* --- Scrolled Durumu: Logo Boyutlandırma --- */

/* Mobil (0 - 640px) */
.navbar.scrolled .logo-img {
    height: 3.5rem;
    transform: scale(1);
}

/* Tablet (640px - 768px) */
@media (min-width: 640px) {
    .navbar.scrolled .logo-img {
        height: 4.5rem;
    }
}

/* Desktop (768px+) */
@media (min-width: 768px) {
    .navbar.scrolled .logo-img {
        /* Mevcut 14rem'den 5.5rem'e güvenli iniş */
        height: 8.5rem;
        transform: scale(1);
    }
}

/* Opsiyonel: Navbar içindeki gap'i daraltmak logoyu daha ortalı gösterir */
.navbar.scrolled {
    height: 15vh;
    gap: 1rem;
}



/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
    color: var(--text-white);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-white-80);
}

a {
    text-decoration: none;
    color: inherit;
}

img, video, svg {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 80rem; /* 1280px */
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* --- Arka Plan --- */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main-content {
    position: relative;
    width: 100%;
    z-index: 10;
}

/* --- Header & Navbar --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: transparent;
    transition: all 0.7s ease;
}

    .header.scrolled {
        background-color: var(--bg-white-20);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

.header-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40vh;
    transition: all 0.5s ease-in-out;
}

    .navbar.scrolled {
        height: 15vh;
    }

.logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 6rem; /* 24 */
    width: auto;
    object-fit: contain;
    transition: all 0.5s;
    transform: scale(1.1);
}

@media (min-width: 640px) {
    .logo-img {
        height: 8rem;
    }
}

@media (min-width: 768px) {
    .logo-img {
        height: 14rem;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s;
}

    .nav-link:hover {
        color: var(--doha-green);
    }

.offer-btn-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .offer-btn-wrapper {
        display: flex;
        align-items: center;
    }
}

.btn-primary {
    background-color: var(--doha-green);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    display: inline-block;
}

    .btn-primary:hover {
        background-color: var(--doha-green-hover);
        transform: translateY(-4px);
    }

    .btn-primary:active {
        transform: scale(0.95);
    }

.mobile-menu-toggle {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    outline: none;
}

    .icon-btn svg {
        height: 2.5rem;
        width: 2.5rem;
    }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--doha-blue-95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
}

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
    }

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    outline: none;
}

    .close-menu-btn svg {
        height: 3rem;
        width: 3rem;
    }

.mobile-nav-link {
    color: var(--text-white);
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s;
}

    .mobile-nav-link:hover {
        color: var(--doha-green);
    }

.mobile-btn {
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    margin-top: 2rem;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40vh;
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
    max-width: 56rem;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15));
}

    .hero-title span {
        color: var(--text-white-90);
    }

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
        line-height: 1;
    }
}

/* --- Çözümler Section --- */
.solutions-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1.5rem;
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
    border-top: 1px solid var(--border-white-5);
    border-bottom: 1px solid var(--border-white-5);
}

@media (min-width: 1024px) {
    .solutions-section {
        padding: 4rem 3rem;
    }
}

.solutions-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.solutions-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.btn-secondary {
    background-color: var(--bg-white-20);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-white-20);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .btn-secondary {
        width: auto;
    }
}

.btn-secondary:hover {
    background-color: var(--bg-white-30);
}

.btn-secondary:active {
    transform: scale(0.95);
}

.stats-wrapper {
    background-color: var(--bg-white-10);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-white-10);
    border-radius: 40px;
    padding: 2rem 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .stats-wrapper {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .stats-wrapper {
        border-radius: 9999px;
        padding: 2rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        gap: 2.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

    .stat-item.border-left {
        border-left: 1px solid var(--border-white-10);
    }

@media (min-width: 1024px) {
    .stat-item.border-left-lg {
        border-left: 1px solid var(--border-white-10);
    }
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-white-80);
    margin-top: 0.5rem;
    font-weight: 300;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1.125rem;
    }
}

/* --- Süreç Section --- */
.process-section {
    background-color: var(--bg-white-80);
    padding: 6rem 1.5rem;
    color: var(--doha-blue);
}

@media (min-width: 640px) {
    .process-section {
        padding: 8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .process-section {
        padding: 8rem 3rem;
    }
}

.process-container {
    max-width: 56rem;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .process-header {
        margin-bottom: 6rem;
    }
}

.process-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .process-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .process-title {
        font-size: 3.75rem;
    }
}

.process-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-slate-600);
}

@media (min-width: 640px) {
    .process-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .process-subtitle {
        font-size: 1.25rem;
    }
}

.process-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 14px;
    top: 0.5rem;
    bottom: 0;
    width: 2px;
    background-color: var(--doha-blue-80);
}

@media (min-width: 640px) {
    .timeline-line {
        left: 22px;
    }
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 6rem;
}

    .timeline-item.pb-last {
        margin-bottom: 0;
        padding-bottom: 5rem;
    }

@media (min-width: 640px) {
    .timeline-item {
        padding-left: 5rem;
        margin-bottom: 10rem;
    }
}

.timeline-marker {
    position: absolute;
    left: -8px;
    top: 0.25rem;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .timeline-marker {
        left: 0;
    }
}

.marker-bg {
    width: 3rem;
    height: 1.5rem;
    background-color: var(--doha-green);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.marker-dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--doha-blue-80);
    border-radius: 50%;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .timeline-content h3 {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .timeline-content h3 {
        font-size: 2.25rem;
    }
}

.timeline-content p {
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--text-slate-700);
    max-width: 42rem;
    font-weight: 300;
}

@media (min-width: 640px) {
    .timeline-content p {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .timeline-content p {
        font-size: 1.5rem;
    }
}

/* --- Üretim Yetkinliklerimiz --- */
.capabilities-section {
    background-color: var(--bg-white-80);
    padding: 6rem 1.5rem;
    color: var(--doha-blue);
}

@media (min-width: 640px) {
    .capabilities-section {
        padding: 8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .capabilities-section {
        padding: 8rem 3rem;
    }
}

.capabilities-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .capabilities-header {
        margin-bottom: 5rem;
    }
}

.capabilities-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .capabilities-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .capabilities-title {
        font-size: 3rem;
    }
}

.capabilities-grid-top, .capabilities-grid-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .capabilities-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .capabilities-grid-bottom {
        grid-template-columns: repeat(3, 1fr);
        max-width: 64rem;
        margin: 2rem auto 0;
    }
}

@media (min-width: 1024px) {
    .capabilities-grid-top {
        grid-template-columns: repeat(4, 1fr);
    }
}

.capability-card {
    background-color: var(--doha-blue);
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .capability-card:hover {
        transform: translateY(-8px);
    }

    .capability-card h3 {
        color: var(--text-white);
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
    }

        .capability-card h3.title-sm {
            font-size: 1.25rem;
        }

@media (min-width: 768px) {
    .capability-card h3.title-sm {
        font-size: 1.5rem;
    }
}

.card-icon {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .card-icon.icon-sm {
        width: 4rem;
    }

.capability-card:hover .icon-scale {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.capability-card:hover .icon-rotate {
    transform: rotate(180deg);
    transition: transform 0.5s;
}

.capability-card:hover .icon-translate {
    transform: translateY(-4px);
    transition: transform 0.3s;
}

.card-desc {
    color: var(--text-white-80);
    font-size: 1rem;
    font-weight: 300;
    flex-grow: 1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    white-space: pre-line;
    line-height: 1.6;
}

.card-btn {
    background-color: var(--doha-green);
    color: var(--doha-blue);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .card-btn:hover {
        background-color: var(--doha-green-hover);
    }

    .card-btn:active {
        transform: scale(0.95);
    }

/* --- Markalar --- */
.brands-section {
    background-color: var(--bg-white-80);
    padding: 6rem 1.5rem;
    color: var(--doha-blue);
}

@media (min-width: 640px) {
    .brands-section {
        padding: 8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .brands-section {
        padding: 8rem 3rem;
    }
}

.brands-container {
    text-align: center;
}

.brands-header {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .brands-header {
        margin-bottom: 4rem;
    }
}

.brands-header h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

@media (min-width: 640px) {
    .brands-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .brands-header h2 {
        font-size: 3.75rem;
    }
}

.brands-header p {
    font-size: 0.75rem;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .brands-header p {
        font-size: 0.875rem;
        letter-spacing: 0.2em;
    }
}

@media (min-width: 768px) {
    .brands-header p {
        font-size: 1.125rem;
    }
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .brands-grid {
        gap: 4rem;
        margin-top: 3rem;
    }
}

@media (min-width: 768px) {
    .brands-grid {
        gap: 8rem;
    }
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s;
}

    .brand-item:hover {
        transform: scale(1.1);
    }

.brand-box {
    width: 10rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 1rem;
    padding: 1rem;
}

@media (min-width: 640px) {
    .brand-box {
        width: 12rem;
        height: 8rem;
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .brand-box {
        width: 16rem;
    }
}

.brand-box img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s;
}

.brand-item:hover .brand-box img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Tedarikçiler --- */
.suppliers-section {
    background-color: var(--bg-white-80);
    padding: 6rem 1.5rem;
    color: var(--doha-blue);
}

@media (min-width: 640px) {
    .suppliers-section {
        padding: 8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .suppliers-section {
        padding: 8rem 3rem;
    }
}

.suppliers-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.suppliers-header {
    text-align: center;
    margin-bottom: 5rem;
}

@media (min-width: 640px) {
    .suppliers-header {
        margin-bottom: 7rem;
    }
}

.suppliers-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .suppliers-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .suppliers-header h2 {
        font-size: 3rem;
    }
}

.suppliers-header p {
    font-size: 0.875rem;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .suppliers-header p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .suppliers-header p {
        font-size: 1.125rem;
    }
}

.suppliers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
}

@media (min-width: 768px) {
    .suppliers-wrapper {
        gap: 8rem;
    }
}

.supplier-box {
    position: relative;
    width: 100%;
    border: 3px solid var(--doha-blue);
    border-radius: 2.5rem;
    padding: 4rem 2rem 2rem;
}

@media (min-width: 640px) {
    .supplier-box {
        padding: 5rem 3rem 3rem;
    }
}

@media (min-width: 768px) {
    .supplier-box {
        padding: 5rem 4rem 4rem;
    }
}

.supplier-box-sm {
    max-width: 64rem;
    margin: 0 auto;
}

.supplier-badge {
    position: absolute;
    left: 50%;
    top: -1.75rem;
    transform: translateX(-50%);
    background-color: var(--doha-blue);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .supplier-badge {
        top: -2rem;
        font-size: 1.25rem;
        padding: 1rem 4rem;
    }
}

@media (min-width: 768px) {
    .supplier-badge {
        font-size: 1.5rem;
    }
}

.supplier-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .supplier-grid-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .supplier-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.supplier-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 640px) {
    .supplier-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.supplier-logo {
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .supplier-logo {
        height: 5rem;
    }
}

.supplier-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.supplier-logo-desc {
    width: 100%;
    height: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 640px) {
    .supplier-logo-desc {
        height: 7rem;
    }
}

.supplier-logo-desc img {
    max-width: 100%;
    height: 3rem;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .supplier-logo-desc img {
        height: 4rem;
    }
}

.supplier-logo-desc span {
    font-size: 0.625rem;
    color: #6b7280;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .supplier-logo-desc span {
        font-size: 0.75rem;
    }
}


/* --- Footer --- */
.footer {
    position: relative;
    background-color: var(--doha-blue-80);
    color: white;
    padding: 4rem 1.5rem 3rem;
    border-top: 1px solid var(--border-white-10);
}

@media (min-width: 640px) {
    .footer {
        padding: 6rem 1.5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 6rem 3rem 3rem;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 0;
    }
}

.footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-brand {
        width: 40%;
        gap: 2rem;
    }
}

.footer-logo {
    height: 5rem;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    transition: transform 0.3s;
}

    .footer-logo:hover {
        transform: scale(1.05);
    }

@media (min-width: 640px) {
    .footer-logo {
        height: 6rem;
    }
}

@media (min-width: 768px) {
    .footer-logo {
        height: 10rem;
    }
}

.footer-brand p {
    color: var(--text-white-70);
    font-size: 0.875rem;
    line-height: 1.625;
    font-weight: 300;
    max-width: 24rem;
}

@media (min-width: 640px) {
    .footer-brand p {
        font-size: 1rem;
    }
}

.footer-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-contact {
        width: 40%;
        gap: 2rem;
    }
}

.footer-contact h4 {
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 2px solid var(--doha-green);
    padding-bottom: 0.5rem;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

@media (min-width: 768px) {
    .footer-contact h4 {
        align-self: flex-end;
    }
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-white-90);
    font-weight: 300;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-contact ul {
        gap: 1.25rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .footer-contact ul {
        text-align: right;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .contact-item {
        justify-content: flex-end;
    }
}

.contact-item.item-address {
    align-items: flex-start;
    line-height: 1.375;
}

.contact-text {
    transition: color 0.3s;
    order: 1;
}

@media (min-width: 768px) {
    .contact-text {
        order: 0;
        max-width: 17.5rem;
    }
}

.contact-item:hover .contact-text {
    color: var(--doha-green);
}

.contact-icon {
    padding: 0.5rem;
    background-color: var(--bg-white-5);
    border-radius: 0.5rem;
    transition: all 0.3s;
    order: 2;
}

@media (min-width: 768px) {
    .contact-icon {
        order: 0;
    }
}

.contact-item.item-address .contact-icon {
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .contact-item.item-address .contact-icon {
        margin-top: 0;
    }
}

.contact-item:hover .contact-icon {
    background-color: rgba(180, 196, 36, 0.2);
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--doha-green);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-white-10);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.625rem;
    color: var(--text-white-50);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        margin-top: 6rem;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        font-size: 0.75rem;
        text-align: left;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-links {
        gap: 2rem;
    }
}

.footer-links a {
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

    .footer-links a:hover {
        color: var(--doha-green);
        border-color: var(--doha-green);
    }

/* --- Navigation Eklemeleri --- */
.nav-link.active,
.mobile-nav-link.active {
    font-weight: 700;
}

.mobile-nav-link.active {
    color: var(--doha-green);
}

/* --- Services Sayfası Özel --- */
.services-hero {
    padding-top: 35vh;
    padding-bottom: 4rem;
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (min-width: 640px) {
    .services-hero {
        padding-top: 45vh;
        padding-bottom: 6rem;
    }
}

.services-hero .capabilities-title {
    color: var(--text-white);
}

/* --- Service Details (Kapsül, Tablet vb.) --- */
.service-detail-section {
    position: relative;
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--border-white-10);
    scroll-margin-top: 6rem; /* scroll-mt-24 karşılığı */
}

@media (min-width: 640px) {
    .service-detail-section {
        padding: 6rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-detail-section {
        padding: 6rem 3rem;
    }
}

/* Arka plan varyasyonları */
.bg-trans-80 {
    background-color: rgba(0, 0, 0, 0);
}
/* bg-transparent/80 karşılığı */
.bg-doha-80 {
    background-color: var(--doha-blue-80);
}

.blur-backdrop {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.service-detail-container {
    max-width: 72rem; /* max-w-6xl */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .service-icon-wrapper.icon-circle {
        height: 3rem;
    }

    .service-icon-wrapper.icon-toz {
        height: 3rem;
        width: 5rem;
        position: relative;
    }

    .service-icon-wrapper.icon-softjel {
        height: 3rem;
    }

.service-title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 2.25rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .service-title {
        font-size: 3rem;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 100%;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

.service-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-prefix, .stat-suffix {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .stat-prefix, .stat-suffix {
        font-size: 1.25rem;
    }
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3.75rem;
    }
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-weight: 300;
    color: var(--text-white-90);
    font-size: 0.875rem;
    white-space: pre-line;
}

@media (min-width: 640px) {
    .service-features {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .service-features {
        font-size: 1.125rem;
    }
}

/* Button Outline Varyasyonu */
.btn-outline-white {
    background-color: var(--bg-white-10);
    border: 1px solid var(--border-white-20);
    color: var(--text-white);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s;
    letter-spacing: 0.025em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-outline-white {
        width: auto;
        padding: 0.75rem 2.5rem;
    }
}

.btn-outline-white:hover {
    background-color: var(--bg-white-20);
}

.btn-outline-white:active {
    transform: scale(0.95);
}

/* Footer bottom alignment class (Flexbox) */
.mt-auto {
    margin-top: auto;
}

/* --- Offer (Teklif Al) Sayfası Özel --- */
.offer-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20vh;
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (min-width: 640px) {
    .offer-hero {
        padding-top: 30vh;
    }
}

.offer-title {
    max-width: 100%;
    letter-spacing: 0.025em;
    margin-bottom: 1.5rem;
}

    .offer-title span {
        font-style: italic;
        color: var(--text-white);
    }

@media (min-width: 1024px) {
    .offer-title {
        font-size: 4.5rem;
    }
}

.offer-subtitle {
    font-size: 0.875rem;
    color: var(--text-white-90);
    font-style: italic;
    font-weight: 500;
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.625;
    letter-spacing: 0.025em;
    padding: 0 1rem;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));
}

@media (min-width: 640px) {
    .offer-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .offer-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .offer-subtitle {
        font-size: 1.5rem;
    }
}

.offer-form-section {
    position: relative;
    z-index: 20;
    padding: 2rem 1rem 4rem;
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (min-width: 640px) {
    .offer-form-section {
        padding: 3rem 1.5rem 6rem;
    }
}

.form-container {
    max-width: 56rem;
}

/* --- Form Yapısı --- */
.form-wrapper {
    background-color: var(--bg-white-10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-white-20);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s;
    display: none; /* JS ile yönetilecek */
}

    .form-wrapper.active-form {
        display: block;
    }

@media (min-width: 640px) {
    .form-wrapper {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .form-wrapper {
        padding: 2.5rem;
    }
}

.form-header-box {
    background-color: var(--bg-white-10);
    border-radius: 0.75rem;
    border: 1px solid var(--border-white-10);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .form-header-box {
        margin-bottom: 2rem;
    }
}

.form-header-box h2 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: var(--text-white);
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));
}

@media (min-width: 640px) {
    .form-header-box h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .form-header-box h2 {
        font-size: 1.875rem;
    }
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .custom-form {
        gap: 1.5rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .input-group.mt-6 {
        margin-top: 1.5rem;
    }

    .input-group label {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.025em;
        color: var(--text-white-90);
    }

@media (min-width: 640px) {
    .input-group label {
        font-size: 0.875rem;
    }
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background-color: var(--bg-white-10);
    border: 1px solid transparent;
    color: var(--text-white);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: all 0.3s;
    font-size: 0.875rem;
    font-family: inherit;
}

@media (min-width: 640px) {
    .input-group input, .input-group select, .input-group textarea {
        font-size: 1rem;
    }
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--doha-green);
    background-color: var(--bg-white-20);
}

.input-group select {
    appearance: none;
    cursor: pointer;
}

.option-dark {
    color: #111827;
}
/* Select içi siyah renk, tailwind'deki text-gray-900 karşılığı */
.input-group textarea {
    resize: none;
}

/* --- Form Alt Kısmı (KVKK & Buton) --- */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .form-actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .checkbox-wrapper input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

.checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--text-white);
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-wrapper input:checked + .checkbox-custom {
    background-color: var(--doha-green);
    border-color: var(--doha-green);
}

.checkbox-custom svg {
    width: 0.875rem;
    height: 0.875rem;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
}

.checkbox-wrapper input:checked + .checkbox-custom svg {
    opacity: 1;
}

.checkbox-text {
    font-size: 0.75rem;
    color: var(--text-white-90);
    transition: color 0.3s;
}

@media (min-width: 640px) {
    .checkbox-text {
        font-size: 0.875rem;
    }
}

.checkbox-group:hover .checkbox-text {
    color: var(--text-white);
}

.checkbox-text a {
    text-decoration: underline;
    transition: color 0.3s;
}

    .checkbox-text a:hover {
        color: var(--doha-green);
    }

.btn-submit {
    width: 100%;
    background-color: var(--doha-green);
    color: var(--text-white);
    font-weight: 700;
    padding: 0.75rem 3rem;
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .btn-submit {
        width: auto;
    }
}

.btn-submit:hover {
    background-color: var(--doha-green-hover);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: scale(0.95);
}

/* --- Başarı Ekranı --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-wrapper {
    display: none; /* Default hidden, JS will make it display:flex */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out forwards;
}

    .success-wrapper.is-visible {
        display: flex;
    }

.success-badge {
    background-color: var(--doha-green);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    z-index: 10;
    transform: translateY(50%);
    letter-spacing: 0.05em;
    text-align: center;
    box-shadow: 0 10px 30px rgba(180, 196, 36, 0.4);
}

@media (min-width: 640px) {
    .success-badge {
        font-size: 1.875rem;
        padding: 1rem 4rem;
    }
}

@media (min-width: 768px) {
    .success-badge {
        font-size: 2.25rem;
    }
}

.success-message-box {
    background-color: var(--bg-white-10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-white-20);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 2rem;
    padding-top: 3rem; /* Badge overlap için */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    width: 100%;
    max-width: 48rem;
}

@media (min-width: 640px) {
    .success-message-box {
        padding: 2rem 2rem 3.5rem;
        padding-top: 4rem;
    }
}

@media (min-width: 768px) {
    .success-message-box {
        padding: 3.5rem;
        padding-top: 5rem;
    }
}

.success-message-box p {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0.025em;
}

@media (min-width: 640px) {
    .success-message-box p {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .success-message-box p {
        font-size: 1.25rem;
    }
}

/* --- İletişim (Contact) Sayfası Özel --- */
.contact-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40vh 1.5rem 4rem; /* pt-[40vh] px-6 */
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (min-width: 1024px) {
    .contact-section {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));
}

@media (min-width: 640px) {
    .contact-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-card {
    width: 100%;
    max-width: 42rem; /* max-w-2xl */
    background-color: var(--bg-white-10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-white-10);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 640px) {
    .contact-card {
        padding: 3rem;
        gap: 2.5rem;
    }
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-info-row {
        gap: 2rem;
    }
}

.contact-icon-wrapper {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .contact-icon-wrapper {
        width: 4rem;
        height: 4rem;
    }
}

.contact-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-row p {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375;
}

@media (min-width: 640px) {
    .contact-info-row p {
        font-size: 1.125rem;
    }
}


/* --- Flexbox Layout (Gövdeyi kaplamak için flex-col) --- */
.flex-col-layout {
    display: flex;
    flex-direction: column;
}

.flex-grow-content {
    flex-grow: 1;
}

/* --- Kurumsal (Company) Sayfası Özel --- */
.company-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40vh;
    padding-bottom: 4rem;
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.company-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.company-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 2.5rem;
    text-align: center;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15));
}

@media (min-width: 640px) {
    .company-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .company-title {
        font-size: 3.75rem;
    }
}

.company-content-box {
    width: 100%;
    max-width: 64rem; /* max-w-5xl */
    background-color: var(--bg-white-10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-white-10);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    white-space: pre-line;
    
}
@media (min-width: 640px) {
    .company-content-box {
        padding: 3rem;
    }
}

@media (min-width: 768px) {
    .company-content-box {
        padding: 4rem;
    }
}

.company-content-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .company-content-box p {
        font-size: 1.125rem;
    }
}

.company-content-box p:last-child {
    margin-bottom: 0;
}

/* --- Galeri Bölümü --- */
.company-gallery {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1.5rem;
    background-color: var(--doha-blue-80);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-top: 1px solid var(--border-white-5);
}

@media (min-width: 1024px) {
    .company-gallery {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.gallery-grid {
    width: 100%;
    max-width: 64rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    background-color: var(--bg-white-10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-white-10);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    aspect-ratio: 3 / 4; /* Varsayılan aspect-[3/4] */
}

@media (min-width: 640px) {
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
}
/* sm:aspect-square */
@media (min-width: 768px) {
    .gallery-item {
        aspect-ratio: 3 / 4;
    }
}
/* md:aspect-[3/4] */
.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}
