/* Patya Website - Kurumsal Tasarım */

/* Scroll animasyonları - varsayılan görünür (JS yoksa içerik görünsün) */
html.scroll-anim-ready .scroll-animate {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html.scroll-anim-ready .scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

html.scroll-anim-ready .scroll-animate .scroll-animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item {
    opacity: 1;
    transform: translateY(0);
}

html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(1) { transition-delay: 0.05s; }
html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(2) { transition-delay: 0.1s; }
html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(3) { transition-delay: 0.15s; }
html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(4) { transition-delay: 0.2s; }
html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(5) { transition-delay: 0.25s; }
html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(6) { transition-delay: 0.3s; }
html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(7) { transition-delay: 0.35s; }
html.scroll-anim-ready .scroll-animate.is-visible .scroll-animate-item:nth-child(8) { transition-delay: 0.4s; }

:root {
    --color-white: #ffffff;
    --color-off-white: #fafafa;
    --color-gray-50: #f8f9fa;
    --color-gray-100: #f1f3f5;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-500: #6c757d;
    --color-gray-600: #5c636a;
    --color-gray-700: #495057;
    --color-gray-900: #212529;
    --color-text: #000000;
    --color-primary: #0d6efd;
    --color-primary-hover: #0b5ed7;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --transition: 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-white);
    color: var(--color-gray-900);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sayfa yükleme ekranı */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner {
    text-align: center;
}

.page-loader-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.page-loader-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
}

.page-loader-spinner {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    border: 3px solid var(--color-gray-200);
    border-top-color: #00a8c5;
    border-radius: 50%;
    animation: page-loader-spin 0.8s linear infinite;
}

@keyframes page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Üst bar (sosyal medya) */
.topbar {
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
    margin-bottom: 3px;
    overflow: visible;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 24px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topbar-left {
    flex: 1;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.social-icon--facebook { background: #1877f2; }
.social-icon--instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon--twitter { background: #1da1f2; }
.social-icon--linkedin { background: #0a66c2; }
.social-icon--youtube { background: #ff0000; }
.social-icon--whatsapp { background: #25d366; }

@media (max-width: 768px) {
    .topbar-container {
        min-height: 44px;
        padding: 4px 16px;
        justify-content: flex-end;
    }

    .topbar-social {
        gap: 6px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Navbar */
.navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.navbar-logo {
    height: 88px;
    width: auto;
    object-fit: contain;
}

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

.navbar-brand-name {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-family: 'Georgia', 'Times New Roman', serif;
    display: inline-block;
}

.brand-letter {
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.15);
}

.brand-letter--pink {
    color: #ff1493;
    text-shadow: 0 2px 4px rgba(255, 20, 147, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.brand-letter--blue {
    color: #00a8c5;
    text-shadow: 0 2px 4px rgba(0, 168, 197, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.brand-letter--group {
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.navbar-brand-tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.2;
    font-style: italic;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.navbar-links > li {
    position: relative;
}

.navbar-link-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar-link {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition);
    border-radius: 6px;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--color-primary);
}

/* Dropdown: üzerine gelince görünsün */
.navbar-item-has-children .navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 100;
    margin-top: 4px;
}

.navbar-item-has-children:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown li {
    margin: 0;
}

.navbar-dropdown-link {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.navbar-dropdown-link:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
}

/* Chevron: sadece alt menüsü olanlarda, masaüstünde gizli */
.navbar-chevron {
    display: none;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    transition: var(--transition);
}

/* Main Content */
.main-content {
    flex: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
    padding: 80px 24px 100px;
    text-align: center;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-gray-900);
    min-height: 400px;
}

@media (min-width: 769px) {
    .slider {
        min-height: 560px;
    }
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    min-height: 400px;
}

@media (min-width: 769px) {
    .slider-slide {
        min-height: 560px;
    }
}

.slider-image-wrap {
    position: absolute;
    inset: 0;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.slider-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 24px 48px 32px;
    z-index: 2;
}

.slider-inner {
    max-width: 560px;
    width: 100%;
    text-align: left;
}

@media (min-width: 769px) {
    .slider-content {
        padding: 64px 48px 64px 120px;
    }

    .slider-inner {
        max-width: 560px;
    }
}

.slider-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
    .slider-title {
        font-size: 2.5rem;
    }
}

.slider-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    .slider-subtitle {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }
}

.btn-slider {
    box-shadow: var(--shadow-md);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    opacity: 0;
}

.slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
}

.slider-prev {
    left: 32px;
}

.slider-next {
    right: 32px;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.is-active {
    background: var(--color-white);
    border-color: var(--color-white);
}

/* Kategoriler */
.categories {
    background: var(--color-white);
    padding: 48px 24px 56px;
}

.categories-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.categories-viewport {
    overflow: hidden;
}

.categories-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    transition: transform 0.4s ease;
}

.category-item {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    padding: 24px 16px;
    border-radius: 12px;
    transition: background var(--transition), color var(--transition);
}

.category-item:hover {
    background: var(--color-gray-50);
    color: var(--color-gray-900);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    color: #00a8c5;
}

.category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.categories-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.categories-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-gray-300);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}

.categories-dot:hover {
    background: var(--color-gray-400);
}

.categories-dot.is-active {
    background: var(--color-gray-700);
}

@media (min-width: 769px) {
    .categories {
        padding: 64px 48px 72px;
    }

    .category-item {
        flex: 0 0 calc(25% - 12px);
    }

    .category-icon {
        width: 120px;
        height: 120px;
    }
}

/* Tagline / Slogan (kategorilerden sonra) */
.tagline-section {
    background: var(--color-white);
    padding: 48px 24px 56px;
}

.tagline-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tagline-text {
    font-size: 1.3125rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.tagline-highlight {
    color: #00a8c5;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tagline-section {
        padding: 40px 20px 48px;
    }

    .tagline-text {
        font-size: 1.125rem;
    }
}

/* İçerik blokları */
.content-blocks {
    background: var(--color-white);
}

.content-block {
    padding: 64px 24px;
}

.content-block-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.content-block--text-left .content-block-inner {
    grid-template-areas: "text image";
}

.content-block--image-left .content-block-inner {
    grid-template-areas: "image text";
}

.content-block--text-left .content-block-text { grid-area: text; }
.content-block--text-left .content-block-image { grid-area: image; }
.content-block--image-left .content-block-text { grid-area: text; }
.content-block--image-left .content-block-image { grid-area: image; }

.content-block-subtitle {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.content-block-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.25;
    margin-bottom: 20px;
}

.content-block-desc {
    position: relative;
    padding-left: 96px;
}

.content-block-num {
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-gray-300);
    line-height: 1;
    letter-spacing: -0.03em;
}

.content-block-desc p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.content-block-btn {
    margin-top: 24px;
}

.content-block-image {
    overflow: hidden;
    border-radius: 8px;
    max-height: 660px;
}

.content-block-image img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .content-block {
        padding: 40px 0px;
    }

    .content-block-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
        grid-template-areas: none;
    }

    .content-block--text-left .content-block-inner,
    .content-block--image-left .content-block-inner {
        grid-template-areas: none;
    }

    .content-block-image {
        display: none;
    }

    .content-block-subtitle {
        font-size: 0.75rem;
        margin-left: -12px;
    }

    .content-block-title {
        font-size: 1.25rem;
        margin-left: -12px;
    }

    .content-block-desc {
        padding-left: 48px;
    }

    .content-block-desc p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .content-block-num {
        font-size: 2.5rem;
        left: -12px;
    }
}

/* Hakkımızda */
.about-sections {
    background: var(--color-white);
}

.about-section {
    padding: 80px 24px;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrap {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-inner--no-image {
    grid-template-columns: 1fr;
}

.about-lead {
    font-size: 1.0625rem;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.about-subheading {
    font-size: 1rem;
    font-weight: 600;
    color: #00a8c5;
    margin-bottom: 20px;
}

.about-text {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.75;
}

.about-text p {
    margin-bottom: 16px;
}

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

.about-attribution {
    font-size: 0.875rem;
    color: var(--color-text);
    margin-top: 20px;
    margin-bottom: 0;
}

.btn-about {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    background: #00a8c5;
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--transition), opacity var(--transition);
}

.btn-about:hover {
    background: #0095ad;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px 48px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-content {
        min-width: 0;
    }

    .about-lead,
    .about-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-text p {
        margin-bottom: 1.25em;
    }

    .about-image-wrap {
        display: none;
    }

    .btn-about {
        margin-top: 28px;
    }

    .about-heading {
        font-size: 1.35rem;
    }

    .about-subheading {
        font-size: 0.9375rem;
    }
}

/* Referanslar sayfası – kart düzeni */
.references-section {
    background: var(--color-gray-50);
    padding: 64px 24px 80px;
}

.references-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-width: 0;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.references-lead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 48px;
    max-width: 720px;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 300px));
    gap: 28px 24px;
    min-width: 0;
    width: 100%;
    justify-content: center;
}

.reference-card {
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 8px 40px rgba(0, 0, 0, 0.04);
    padding: 0 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    max-width: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}

.reference-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 168, 197, 0.06);
    transform: translateY(-2px);
}

.reference-card-image {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    margin-bottom: 18px;
    background: var(--color-gray-50);
}

.reference-card-logo {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.reference-card-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: var(--color-gray-200);
    color: #00a8c5;
    font-size: 2.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-card-name,
.reference-card-desc,
.reference-card-btn {
    padding-left: 20px;
    padding-right: 20px;
}

.reference-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00a8c5;
    margin-bottom: 14px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.reference-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 22px;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.reference-card-desc p {
    margin-bottom: 10px;
}

.reference-card-desc p:last-child {
    margin-bottom: 0;
}

.reference-card-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    background: #00a8c5;
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--transition), opacity var(--transition);
    border: none;
    cursor: pointer;
}

.reference-card-btn:hover {
    background: #0095ad;
    opacity: 0.95;
}

.reference-card-btn--disabled {
    cursor: default;
    opacity: 0.9;
}

.reference-card-btn--disabled:hover {
    background: #00a8c5;
    opacity: 0.9;
}

.references-empty {
    font-size: 1rem;
    color: var(--color-text);
    text-align: center;
    padding: 48px 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .references-section {
        padding: 40px 20px 56px;
    }

    .references-lead {
        margin-bottom: 32px;
        font-size: 1rem;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reference-card {
        padding-bottom: 24px;
    }

    .reference-card-image {
        height: 220px;
        padding: 20px 16px;
        margin-bottom: 18px;
    }

    .reference-card-logo {
        max-height: 180px;
    }

    .reference-card-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.25rem;
    }

    .reference-card-name,
    .reference-card-desc,
    .reference-card-btn {
        padding-left: 20px;
        padding-right: 20px;
    }

    .reference-card-name {
        font-size: 1.125rem;
    }

    .reference-card-desc {
        font-size: 0.9375rem;
        margin-bottom: 18px;
    }
}

/* Galeri sayfası */
.gallery-section {
    background: var(--color-white);
    padding: 64px 24px 80px;
}

.gallery-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-block {
    margin-bottom: 56px;
}

.gallery-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00a8c5;
    text-align: center;
    margin-bottom: 24px;
}

.gallery-viewport {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.gallery-item {
    background: var(--color-gray-50);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    font-size: 0.9375rem;
    color: var(--color-text);
    padding: 12px 16px;
}

.gallery-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: var(--color-gray-300);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-dot.is-active {
    background: #00a8c5;
    transform: scale(1.2);
}

.gallery-empty {
    font-size: 1rem;
    color: var(--color-text);
    text-align: center;
    padding: 24px 0;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 20px 56px;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    .gallery-viewport {
        overflow: hidden;
    }

    .gallery-track {
        display: flex;
        gap: 0;
    }

    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-dots {
        display: flex;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
}

/* Intro Section */
.intro {
    padding: 80px 24px;
    background: var(--color-white);
}

.container {
    max-width: 720px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    text-align: center;
}

.section-text {
    font-size: 1.0625rem;
    color: var(--color-text);
    text-align: center;
    line-height: 1.75;
}

/* Testimonials (müşteri yorumları) */
.testimonials {
    background: var(--color-white);
    padding: 80px 24px;
}

.testimonials-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    margin-bottom: 48px;
}

.testimonials-subtitle {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.testimonials-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.3;
}

.testimonials-highlight {
    color: #00a8c5;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    transition: transform 0.35s ease-out;
}

.testimonial-card {
    flex: 0 0 calc(50% - 16px);
    min-width: 0;
    padding: 32px;
    background: var(--color-off-white);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-quote p {
    margin-bottom: 12px;
}

.testimonial-quote p:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00a8c5;
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    font-style: normal;
}

.testimonial-title {
    font-size: 0.875rem;
    color: var(--color-text);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonials-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-gray-300);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}

.testimonials-dots button.is-active {
    background: var(--color-gray-700);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 56px 20px;
    }

    .testimonials-header {
        margin-bottom: 32px;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    .testimonial-avatar,
    .testimonial-avatar--placeholder {
        width: 48px;
        height: 48px;
    }

    .testimonial-name {
        font-size: 0.9375rem;
    }

    .testimonial-title {
        font-size: 0.8125rem;
    }
}

/* Mesaj bildirimleri */
.messages-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.alert {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

/* İletişim bölümü */
.contact-section {
    background: var(--color-gray-50);
    padding: 72px 24px 80px;
}

.contact-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00a8c5;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--color-text);
    max-width: 560px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #00a8c5;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.contact-card-text {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-card-text a {
    color: #00a8c5;
    text-decoration: none;
}

.contact-card-text a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00a8c5;
    margin-bottom: 4px;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 24px;
}

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

.contact-form-row {
    display: flex;
    gap: 16px;
}

.contact-form-row--2 {
    flex-wrap: wrap;
}

.contact-form-row--2 .contact-form-field {
    flex: 1;
    min-width: 0;
}

.contact-form-field {
    flex: 1;
    min-width: 0;
    position: relative;
}

.contact-form-field--full {
    flex: 1 1 100%;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
}

.contact-form-field textarea {
    padding-top: 12px;
    min-height: 100px;
    resize: vertical;
}

.contact-form-field--textarea .contact-form-icon {
    top: 14px;
}

.contact-form-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--color-text);
    pointer-events: none;
}

.contact-form-icon svg {
    width: 20px;
    height: 20px;
}

.contact-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-text);
    cursor: pointer;
}

.contact-form-checkbox input {
    margin-top: 4px;
}

.contact-form-checkbox a {
    color: #00a8c5;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: #00a8c5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-contact-submit:hover {
    background: #0095ad;
}

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

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        order: 2;
    }

    .contact-form-card {
        order: 1;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 48px 20px 56px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-row--2 .contact-form-field {
        flex: 1 1 100%;
    }
}

/* İletişim sayfası – sadece bilgi kartları / sadece form */
.contact-page-info-grid {
    grid-template-columns: 1fr;
}

.contact-page-info-grid .contact-info-cards {
    max-width: 800px;
    margin: 0 auto;
}

.contact-page-form-grid {
    grid-template-columns: 1fr;
    justify-items: center;
}

.contact-page-form-grid .contact-form-card {
    max-width: 560px;
    width: 100%;
}

/* Ofislerimiz */
.offices-section {
    background: var(--color-white);
    padding: 72px 24px 80px;
}

.offices-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.offices-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
    text-align: center;
    margin-bottom: 48px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.office-card {
    background: var(--color-gray-50);
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
}

.office-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #00a8c5;
    margin-bottom: 16px;
}

.office-address,
.office-phone,
.office-email {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 12px;
}

.office-address svg,
.office-phone svg,
.office-email svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--color-text);
}

.office-card a {
    color: #00a8c5;
    text-decoration: none;
}

.office-card a:hover {
    text-decoration: underline;
}

.office-map-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .offices-section {
        padding: 48px 20px 56px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .offices-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
}

/* Statistics (sayı alanı) */
.statistics {
    background: var(--color-white);
    padding: 80px 24px;
}

.statistics-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px 64px;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .statistics {
        padding: 56px 20px;
    }

    .statistics-inner {
        gap: 40px 32px;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }
}

/* Footer - Profesyonel Kurumsal Tasarım */
.footer {
    margin-top: auto;
    background: #0f2942;
    color: rgba(255, 255, 255, 0.9);
}

.footer--light {
    background: #f8f9fa;
    color: #2c3e50;
    border-top: 1px solid #e9ecef;
}

.footer-main {
    padding: 64px 32px 48px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px 64px;
    align-items: start;
}

.footer-grid--simple {
    grid-template-columns: minmax(280px, 1.1fr) minmax(600px, 1.9fr);
    gap: 48px 80px;
    align-items: start;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 16px;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.85;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
    display: inline-block;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.5;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #495057;
    max-width: 100%;
    margin-bottom: 0;
}

.footer-desc p {
    margin-bottom: 14px;
    text-align: justify;
}

.footer-desc p:last-child {
    margin-bottom: 0;
}

.footer-links-columns {
    display: flex;
    width: 100%;
    gap: 0;
}

.footer-link-group {
    flex: 1 1 33.33%;
    padding: 0 32px;
    min-width: 0;
}

.footer-link-group:first-child {
    padding-left: 0;
}

.footer-link-group:last-child {
    padding-right: 0;
}

.footer-link-group--contact {
    flex: 1 1 36%;
}

.footer-link-group--contact .footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-group-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00a8c5;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.footer-group-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: #00a8c5;
    opacity: 0.5;
}

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

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list li:last-child {
    margin-bottom: 0;
}

.footer-link {
    color: #495057;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #00a8c5;
    padding-left: 4px;
}

.footer-link-list--contact li {
    color: #495057;
    font-size: 0.9375rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #00a8c5;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
}

.footer-contact-text {
    display: block;
    color: inherit;
    word-break: break-word;
    white-space: normal;
    flex: 1;
}

.footer-social--light {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-pill {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.footer-social-pill--facebook { background: #1877f2; }
.footer-social-pill--instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-social-pill--twitter { background: #1da1f2; }
.footer-social-pill--linkedin { background: #0a66c2; }
.footer-social-pill--youtube { background: #ff0000; }
.footer-social-pill--whatsapp { background: #25d366; }

.footer--light .footer-logo {
    color: inherit;
}

.footer--light .footer-brand-name .brand-letter--group {
    color: #1a1a1a;
}

.footer--light .footer-tagline {
    color: #6c757d;
}

.footer--light .footer-desc {
    color: #495057;
}

.footer--light .footer-group-title {
    color: #00a8c5;
}

.footer--light .footer-link,
.footer--light .footer-link-list--contact li {
    color: #495057;
}

.footer--light .footer-link:hover {
    color: #00a8c5;
}

@media (max-width: 1024px) {
    .footer-grid--simple {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-link-group {
        padding: 0 16px;
    }

    .footer-link-group:first-child {
        padding-left: 0;
    }

    .footer-link-group:last-child {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 48px 20px 40px;
    }

    .footer-links-columns {
        flex-direction: column;
        gap: 32px;
    }

    .footer-link-group {
        padding: 0;
        flex: 1 1 100%;
    }

    .footer-brand-name {
        font-size: 1.375rem;
    }

    .footer-group-title {
        font-size: 0.8125rem;
        margin-bottom: 16px;
    }

    .footer-link,
    .footer-link-list--contact li {
        font-size: 0.875rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 24px;
}

.footer-container--bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-email {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}

.footer-email:hover {
    color: #5fc4d4;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-legal {
    font-size: 0.875rem;
    color: #5fc4d4;
    text-decoration: none;
}

.footer-legal:hover {
    text-decoration: underline;
}

.footer-stats {
    display: flex;
    align-items: center;
    gap: 32px 48px;
}

.footer-stat-item {
    text-align: right;
}

.footer-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #5fc4d4;
    line-height: 1.2;
}

.footer-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 20px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-columns {
        flex-direction: column;
        gap: 32px;
    }

    .footer-container--bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-stats {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-stat-item {
        text-align: left;
    }

    .footer-stat-number {
        font-size: 1.25rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-container {
        min-height: 76px;
    }

    .navbar-logo {
        height: 64px;
    }

    .navbar-brand {
        gap: 10px;
    }

    .navbar-brand-name {
        font-size: 1.125rem;
    }

    .navbar-brand-tagline {
        font-size: 0.6875rem;
    }

    .navbar-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 0 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        align-items: stretch;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease-out, opacity 0.3s ease-out, visibility 0.35s, padding 0.35s ease-out;
    }

    .navbar-links.is-open {
        max-height: 85vh;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 24px;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, visibility 0.3s, padding 0.35s ease-out;
    }

    /* Mobil: chevron görünsün, tıklanınca açılsın */
    .navbar-chevron {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid currentColor;
        margin-left: 4px;
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    .navbar-item-has-children.is-expanded .navbar-chevron {
        transform: rotate(180deg);
    }

    .navbar-item-has-children .navbar-link-wrap {
        cursor: pointer;
    }

    .navbar-item-has-children .navbar-dropdown {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        margin: 0;
        padding: 0 0 0 16px;
        margin-left: 12px;
        border-left: 2px solid var(--color-gray-200);
        transition: max-height 0.3s ease-out, opacity 0.2s ease, visibility 0.2s, margin 0.25s ease, padding 0.25s ease;
    }

    .navbar-item-has-children.is-expanded .navbar-dropdown {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        margin-top: 8px;
        padding-top: 4px;
        padding-bottom: 8px;
        transition: max-height 0.35s ease-out, opacity 0.25s ease, visibility 0.25s, margin 0.25s ease, padding 0.25s ease;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Hizmet detay sayfası */
.service-hero {
    background: #00a8c5;
    padding: 48px 24px 40px;
}

.service-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.service-breadcrumb {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.8;
}

.about-page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.service-main {
    background: var(--color-white);
    padding: 64px 24px 72px;
}

.service-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.service-image-wrap {
    position: sticky;
    top: 24px;
}

.service-main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.service-main-inner--no-image {
    grid-template-columns: 1fr;
}

.service-content {
    padding-top: 0;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.service-description p {
    margin-bottom: 16px;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-gallery {
    background: var(--color-gray-50);
    padding: 64px 24px 72px;
}

.service-gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.service-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    text-align: center;
    margin-bottom: 40px;
}

.service-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #00a8c5;
    margin: 12px auto 0;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-features {
    background: var(--color-white);
    padding: 64px 24px 80px;
}

.service-features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-feature-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.service-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 168, 197, 0.12);
    color: #00a8c5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-feature-icon svg {
    width: 28px;
    height: 28px;
}

.service-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.service-feature-desc {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 36px 20px 32px;
    }

    .service-hero-title {
        font-size: 1.5rem;
    }

    .service-main {
        padding: 40px 20px 48px;
    }

    .service-main-inner {
        grid-template-columns: 1fr;
    }

    .service-image-wrap {
        position: static;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
}
