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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-decoration: none;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.2s;
}

.logo a:hover {
    opacity: 0.8;
}

.site-logo-image {
    display: block;
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 1rem;
    color: #1e293b;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.nav-item > a i {
    font-size: 0.75rem;
    opacity: 0.7;
    transition: transform 0.2s;
}

.nav-item > a:hover {
    background-color: rgba(241, 245, 249, 0.7);
    color: #0f172a;
}

.nav-item > a.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.nav-item > a.active:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 0;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1), 0 8px 15px -6px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    list-style: none;
    z-index: 100;
}

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

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 0.95rem;
    color: #334155;
    text-decoration: none;
    transition: background 0.15s, padding-left 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background-color: #f8fafc;
    color: #0f172a;
    padding-left: 30px;
    border-left-color: #3b82f6;
}

.mobile-toggle {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(56, 159, 196, 0.18);
    border-radius: 16px;
    color: #1e293b;
    cursor: pointer;
    transition: color 0.2s, background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.mobile-toggle:hover {
    color: #3b82f6;
}

.mobile-toggle-icon,
.mobile-toggle-icon::before,
.mobile-toggle-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease, background-color 0.24s ease;
}

.mobile-toggle-icon {
    position: relative;
}

.mobile-toggle-icon::before,
.mobile-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-toggle-icon::before {
    top: -6px;
}

.mobile-toggle-icon::after {
    top: 6px;
}

.mobile-toggle.is-open .mobile-toggle-icon {
    background: transparent;
}

.mobile-toggle.is-open .mobile-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle.is-open .mobile-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-text {
    max-width: 750px;
}

.hero-pretitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
    border-left: 3px solid #3b82f6;
    padding-left: 15px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title-light {
    font-weight: 300;
    color: #94a3b8;
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 400;
}

.scroll-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    margin-top: 80px;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: #475569;
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8fafc;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b82f6;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: #475569;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.8rem;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0f172a;
}

.feature-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-image {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-card, .mission-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0f172a;
}

.vision-card p, .mission-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 12px;
}

.card-link i {
    font-size: 0.9rem;
}

.quality-policy-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quality-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.quality-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #f8fafc;
    border-radius: 40px;
    font-weight: 500;
    color: #0f172a;
}

.highlight-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.quality-policy-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 20px;
}

.policy-subtitle {
    font-weight: 600;
    color: #0f172a;
    margin: 30px 0 20px;
    font-size: 1.2rem;
}

.policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #334155;
    line-height: 1.6;
}

.policy-list li i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.policy-footer {
    margin-top: 30px;
    font-weight: 500;
    color: #0f172a;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.privacy-content,
.kvkk-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.privacy-content h3,
.kvkk-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin: 30px 0 20px;
}

.privacy-content h3:first-of-type {
    margin-top: 0;
}

.privacy-list,
.kvkk-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-list li,
.kvkk-list li {
    color: #475569;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.privacy-list li::before,
.kvkk-list li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.kvkk-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.kvkk-footnote {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 30px;
    font-style: italic;
}

.vision-detail-wrapper,
.mission-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vision-icon-large,
.mission-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.vision-icon-large i,
.mission-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.vision-lead,
.mission-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 40px;
    font-weight: 400;
    border-left: 4px solid #3b82f6;
    padding-left: 30px;
}

.vision-principles h3,
.mission-principles h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 25px;
}

.principles-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.principles-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #334155;
    padding: 10px 0;
}

.principles-list li i {
    color: #10b981;
    font-size: 1.2rem;
}

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 30px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.02em;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    text-decoration: none;
    margin-left: 6px;
}

.footer-credit a:hover {
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .header-inner {
        height: 70px;
    }
    
    .logo a {
        font-size: 1.6rem;
    }

    .site-logo-image {
        height: 44px;
        max-width: 190px;
    }
    
    .nav-item > a {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

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

    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .quality-policy-wrapper {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .hero-content {
        padding: 0 20px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn {
        padding: 12px 24px;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

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

    .video-background video {
        object-position: center center;
    }

    .page-header {
        padding: 40px 0;
        margin-top: 70px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-policy-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .quality-highlights {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .quality-policy-content,
    .privacy-content,
    .kvkk-content {
        padding: 25px;
    }
    
    .policy-list li {
        gap: 10px;
    }

    .vision-detail-wrapper,
    .mission-detail-wrapper {
        padding: 30px;
    }
    
    .vision-lead,
    .mission-lead {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .principles-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-pretitle {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .vision-card, .mission-card {
        padding: 30px;
    }
}

.dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-menu li:first-child {
    margin-top: 0;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

/* ===== HİZMET KAPSAMI TAB STİLLERİ ===== */
.services-tabs-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.services-sidebar {
    background: #f8fafc;
    padding: 30px 0;
    border-right: 1px solid #e2e8f0;
}

.services-tab-list {
    list-style: none;
}

.tab-item {
    padding: 16px 30px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 1rem;
}

.tab-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

.tab-item.active {
    background-color: white;
    color: #3b82f6;
    border-left-color: #3b82f6;
    font-weight: 600;
}

.services-content {
    padding: 40px;
    min-height: 500px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.tab-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tab-description p {
    margin-bottom: 15px;
}

.analysis-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.analysis-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.analysis-table thead {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.analysis-table th {
    padding: 16px 20px;
    text-align: left;
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

.analysis-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    vertical-align: top;
}

.analysis-table tbody tr:hover {
    background-color: #f8fafc;
}

.analysis-table tbody tr:last-child td {
    border-bottom: none;
}

.service-scope-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

.service-scope-table th,
.service-scope-table td {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.service-scope-table td {
    line-height: 1.65;
}

.service-scope-table th:nth-child(1),
.service-scope-table td:nth-child(1) {
    width: 27%;
}

.service-scope-table th:nth-child(2),
.service-scope-table td:nth-child(2) {
    width: 47%;
}

.service-scope-table th:nth-child(3),
.service-scope-table td:nth-child(3) {
    width: 26%;
}

.scope-group-title {
    margin: 32px 0 14px;
    color: var(--brand-deep, #1f5d4d);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.scope-group-title:first-of-type {
    margin-top: 0;
}

/* ===== FORMLAR SAYFASI STİLLERİ ===== */
.forms-section {
    background: linear-gradient(180deg, rgba(237, 247, 245, 0.45) 0%, rgba(248, 248, 242, 0.95) 100%);
}

.forms-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 18px;
    align-items: end;
    margin-bottom: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(56, 159, 196, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 38px -34px rgba(21, 62, 51, 0.32);
}

.forms-search-label {
    grid-column: 1 / -1;
    color: var(--brand-earth, #7a552d);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.forms-search-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(56, 159, 196, 0.18);
    border-radius: 18px;
    background: #ffffff;
    color: var(--brand-forest, #1f5d49);
}

.forms-search-control:focus-within {
    border-color: var(--brand-teal, #389fc4);
    box-shadow: 0 0 0 3px rgba(56, 159, 196, 0.14);
}

.forms-search-control input {
    width: 100%;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--brand-ink, #18392f);
    font: inherit;
}

.forms-search-control input::placeholder {
    color: rgba(93, 118, 109, 0.72);
}

.forms-search-status {
    align-self: center;
    color: var(--brand-muted, #5d766d);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.forms-category-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.forms-category-card {
    padding: 32px;
    border: 1px solid rgba(56, 159, 196, 0.13);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 44px -34px rgba(21, 62, 51, 0.32);
}

.forms-category-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.forms-category-header .card-icon {
    margin-bottom: 0;
}

.forms-category-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand-earth, #7a552d);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.forms-category-header h3 {
    color: var(--brand-ink, #18392f);
    font-size: 1.45rem;
    font-weight: 650;
    line-height: 1.25;
    margin-bottom: 10px;
}

.forms-category-header p {
    color: var(--brand-muted, #5d766d);
    line-height: 1.65;
    max-width: 780px;
}

.form-download-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-download-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 76px;
    padding: 16px 18px;
    border: 1px solid rgba(56, 159, 196, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(237, 247, 245, 0.68) 100%);
    color: var(--brand-ink, #18392f);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-download-item:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 159, 196, 0.34);
    box-shadow: 0 18px 28px -24px rgba(21, 62, 51, 0.42);
}

.form-download-item.is-hidden,
.forms-category-card.is-hidden {
    display: none;
}

.form-file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(122, 85, 45, 0.1);
    color: var(--brand-earth, #7a552d);
    font-size: 1.2rem;
}

.form-file-meta {
    min-width: 0;
}

.form-file-meta strong {
    display: block;
    color: var(--brand-ink, #18392f);
    font-size: 0.98rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.form-file-meta small {
    display: block;
    margin-top: 4px;
    color: var(--brand-muted, #5d766d);
    font-size: 0.82rem;
}

.form-download-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-forest, #1f5d49) 0%, var(--brand-teal, #389fc4) 100%);
    color: white;
    flex-shrink: 0;
}

.forms-empty-state {
    margin-top: 28px;
    padding: 36px 24px;
    border: 1px dashed rgba(56, 159, 196, 0.28);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-muted, #5d766d);
    text-align: center;
}

.forms-empty-state i {
    color: var(--brand-earth, #7a552d);
    font-size: 2rem;
    margin-bottom: 14px;
}

.forms-empty-state h2 {
    color: var(--brand-ink, #18392f);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .services-tabs-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-sidebar {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 10px 0;
    }
    
    .tab-item {
        padding: 14px 20px;
    }
    
    .services-content {
        padding: 25px;
    }
    
    .tab-title {
        font-size: 1.6rem;
    }
    
    .analysis-table th,
    .analysis-table td {
        padding: 10px 15px;
    }

    .service-scope-table {
        min-width: 720px;
    }

    .forms-search-panel {
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 18px;
        border-radius: 22px;
    }

    .forms-search-status {
        white-space: normal;
    }

    .forms-category-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .forms-category-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .forms-category-header h3 {
        font-size: 1.22rem;
    }

    .form-download-list {
        grid-template-columns: 1fr;
    }

    .form-download-item {
        padding: 14px;
    }
}

@media screen and (max-width: 480px) {
    .form-download-item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .form-download-action {
        grid-column: 1 / -1;
        width: 100%;
        border-radius: 14px;
    }
}

/* ===== İLETİŞİM SAYFASI STİLLERİ ===== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-card a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: #2563eb;
}

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

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.contact-form-desc {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group.full-width {
    grid-column: span 2;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0f172a;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.contact-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 30px;
}

.contact-form .checkbox-group input {
    width: 20px;
    height: 20px;
    accent-color: #3b82f6;
    cursor: pointer;
}

.contact-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: #475569;
}

.contact-form .checkbox-group a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-form .checkbox-group a:hover {
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    gap: 10px;
}

.contact-form .btn:disabled {
    opacity: 0.72;
    cursor: wait;
}

.contact-form .btn.is-loading {
    pointer-events: none;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-map-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.map-info-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.map-info-card i {
    font-size: 1.8rem;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.map-info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.map-info-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-about p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo-image {
    display: block;
    height: 76px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
}

.footer-contact li i {
    width: 20px;
    margin-top: 3px;
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    color: #64748b;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

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

@media screen and (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.scroll-indicator {
    background: none;
    border: none;
    padding: 0;
}

.section-intro {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card,
.trust-card,
.process-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 18px 35px -18px rgba(15, 23, 42, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
    padding: 32px 28px;
}

.service-card:hover,
.trust-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 45px -22px rgba(15, 23, 42, 0.25);
}

.service-card h3,
.trust-card h3,
.process-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.service-card p,
.trust-card p,
.process-card p {
    color: #475569;
    line-height: 1.7;
}

.service-card ul,
.trust-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0 28px;
}

.service-card li,
.trust-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #334155;
    line-height: 1.6;
}

.service-card li i,
.trust-card li i {
    color: #10b981;
    margin-top: 4px;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.home-trust-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.home-highlight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.trust-card {
    padding: 36px 32px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    padding: 28px;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.home-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 28px 60px -30px rgba(15, 23, 42, 0.5);
}

.home-cta-panel .section-tag {
    color: #bfdbfe;
}

.home-cta-panel .section-title {
    color: white;
    margin-bottom: 16px;
}

.home-cta-panel p {
    max-width: 700px;
    color: #dbeafe;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: #0f172a;
    box-shadow: 0 16px 30px -15px rgba(255, 255, 255, 0.6);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 35px -16px rgba(255, 255, 255, 0.7);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.form-notice {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.form-notice.is-visible {
    display: block;
}

.form-notice.is-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.form-notice.is-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .home-services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-trust-grid,
    .home-cta-panel {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .header-inner {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 24px;
        box-shadow: 0 24px 40px -24px rgba(15, 23, 42, 0.35);
        padding: 12px;
    }

    .main-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 6px;
    }

    .nav-item > a {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .home-services-grid,
    .home-highlight-list,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-content,
    .trust-card,
    .service-card,
    .process-card {
        padding: 28px 22px;
    }

    .home-cta-panel {
        padding: 36px 24px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .contact-form .checkbox-group {
        align-items: flex-start;
    }
}

:root {
    --brand-forest: #1f5d49;
    --brand-forest-deep: #153e33;
    --brand-teal: #389fc4;
    --brand-teal-deep: #226f88;
    --brand-teal-soft: #8dc7d6;
    --brand-earth: #7a552d;
    --brand-earth-soft: #a67b50;
    --brand-ivory: #f8f8f2;
    --brand-mist: #edf7f5;
    --brand-ink: #18392f;
    --brand-muted: #5d766d;
}

body {
    background-color: var(--brand-ivory);
    color: var(--brand-ink);
}

.site-header {
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(56, 159, 196, 0.12);
}

.logo a {
    color: var(--brand-forest);
    background: none !important;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    text-fill-color: currentColor;
    display: inline-flex;
    align-items: center;
    position: relative;
    line-height: 0;
}

.nav-item > a {
    color: var(--brand-ink);
}

.nav-item > a:hover {
    background-color: rgba(56, 159, 196, 0.1);
    color: var(--brand-forest);
}

.nav-item > a.active,
.nav-item > a.active:hover {
    background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-teal) 100%);
    color: white;
}

.dropdown-menu li a:hover {
    background-color: var(--brand-mist);
    color: var(--brand-forest);
    border-left-color: var(--brand-teal);
}

.mobile-toggle {
    color: var(--brand-forest);
}

.mobile-toggle:hover {
    color: var(--brand-teal);
}

.hero-video {
    background: linear-gradient(135deg, #d7ece8 0%, #f8f8f2 34%, #d8eef3 100%);
}

.video-overlay {
    background: linear-gradient(105deg, rgba(12, 57, 47, 0.9) 0%, rgba(18, 85, 69, 0.7) 42%, rgba(22, 87, 116, 0.76) 100%);
}

.hero-pretitle {
    color: #dff5f1;
    border-left-color: var(--brand-teal-soft);
}

.hero-title-light,
.stat-label {
    color: #b8e2dd;
}

.page-header {
    background: linear-gradient(135deg, var(--brand-forest-deep) 0%, var(--brand-teal-deep) 100%);
}

.section-tag {
    color: var(--brand-earth);
}

.section-intro,
.about-text,
.vision-card p,
.mission-card p,
.quality-content p,
.policy-list li,
.privacy-list li,
.kvkk-list li,
.contact-card p,
.contact-form-desc,
.process-card p,
.service-card p,
.trust-card p {
    color: var(--brand-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-teal) 100%);
    box-shadow: 0 12px 24px -8px rgba(31, 93, 73, 0.45);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-forest-deep) 0%, var(--brand-teal-deep) 100%);
    box-shadow: 0 18px 28px -10px rgba(31, 93, 73, 0.5);
}

.btn-outline:hover {
    background: rgba(141, 199, 214, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn-light {
    color: var(--brand-forest-deep);
}

.btn-ghost {
    border-color: rgba(141, 199, 214, 0.45);
}

.card-link {
    color: var(--brand-forest);
}

.card-link:hover {
    color: var(--brand-teal-deep);
}

.card-icon,
.contact-card-icon,
.vision-icon-large,
.mission-icon-large,
.map-info-card i {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-forest) 100%);
}

.feature-item i {
    background: linear-gradient(135deg, rgba(56, 159, 196, 0.16) 0%, rgba(31, 93, 73, 0.12) 100%);
    color: var(--brand-forest);
    box-shadow: inset 0 0 0 1px rgba(56, 159, 196, 0.1);
}

.vision-card .card-icon,
.mission-card .card-icon {
    background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-teal) 100%);
}

.map-info-card i {
    color: white;
}

.home-trust-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 247, 245, 0.95) 100%);
}

.highlight-item {
    background: rgba(56, 159, 196, 0.08);
    color: var(--brand-ink);
}

.highlight-item i,
.service-card li i,
.trust-card li i,
.policy-list li i,
.principles-list li i {
    color: var(--brand-earth);
}

.tab-item:hover {
    background-color: rgba(56, 159, 196, 0.08);
    color: var(--brand-forest);
}

.tab-item.active {
    color: var(--brand-forest);
    border-left-color: var(--brand-teal);
}

.contact-card a,
.contact-form .checkbox-group a {
    color: var(--brand-teal-deep);
}

.contact-card a:hover,
.contact-form .checkbox-group a:hover {
    color: var(--brand-forest);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(56, 159, 196, 0.15);
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231f5d49' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-notice.is-success {
    background: rgba(237, 247, 245, 0.95);
    border-color: rgba(31, 93, 73, 0.18);
    color: var(--brand-forest);
}

.form-notice.is-error {
    background: rgba(254, 242, 242, 0.98);
    border-color: rgba(185, 28, 28, 0.16);
    color: #991b1b;
}

.site-footer {
    background: linear-gradient(135deg, var(--brand-forest-deep) 0%, #134f5d 100%);
}

.footer-about h3 {
    background: none !important;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    text-fill-color: currentColor;
    color: white;
}

.footer-logo-link {
    line-height: 0;
}

.footer-logo-image {
    filter: none;
}

.social-links a,
.social-links a i,
.footer-contact li i {
    color: white;
}

.social-links a:hover {
    background: var(--brand-teal);
}

.footer-links a:hover,
.footer-bottom-links a:hover,
.footer-contact a:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .footer-logo-image {
        height: 64px;
        max-width: 210px;
    }
}

.home-cta-panel {
    background: linear-gradient(135deg, var(--brand-forest-deep) 0%, var(--brand-teal-deep) 100%);
}

.home-cta-panel .section-tag {
    color: #d7f0ee;
}

.gallery-showcase-section {
    background: linear-gradient(180deg, rgba(237, 247, 245, 0.45) 0%, rgba(248, 248, 242, 0.95) 100%);
}

.gallery-slider {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 93, 73, 0.08);
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 28px 55px -32px rgba(21, 62, 51, 0.35);
    overflow: hidden;
}

.gallery-slider-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.gallery-slider-meta h3 {
    font-size: 1.5rem;
    color: var(--brand-forest-deep);
    margin-bottom: 8px;
}

.gallery-slider-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(56, 159, 196, 0.1);
    color: var(--brand-forest);
    font-weight: 700;
    white-space: nowrap;
}

.gallery-stage {
    position: relative;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(18, 85, 69, 0.05) 0%, rgba(56, 159, 196, 0.08) 100%);
    border: 1px solid rgba(56, 159, 196, 0.12);
    min-height: 620px;
    overflow: hidden;
    outline: none;
}

.gallery-slides {
    position: relative;
    min-height: 620px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(16px) scale(0.985);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.gallery-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.gallery-slide-hit {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 26px 26px 82px;
    cursor: zoom-in;
}

.gallery-slide-hit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 22px;
    background: rgba(248, 248, 242, 0.95);
}

.gallery-zoom-hint {
    position: absolute;
    top: 42px;
    right: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(21, 62, 51, 0.74);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-forest);
    box-shadow: 0 18px 30px -20px rgba(21, 62, 51, 0.5);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gallery-nav:hover {
    background: white;
    color: var(--brand-teal-deep);
    transform: translateY(-50%) scale(1.05);
}

.gallery-nav-prev {
    left: 18px;
}

.gallery-nav-next {
    right: 18px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.gallery-thumb {
    border: 2px solid transparent;
    background: rgba(237, 247, 245, 0.75);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    aspect-ratio: 1.35 / 1;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
}

.gallery-thumb.is-active {
    border-color: var(--brand-teal);
    box-shadow: 0 16px 28px -20px rgba(34, 111, 136, 0.55);
}

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

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(8, 20, 16, 0.82);
    backdrop-filter: blur(8px);
}

.gallery-lightbox-dialog {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    width: min(1280px, calc(100vw - 40px));
    height: min(92vh, 920px);
    margin: 4vh auto;
    z-index: 1;
}

.gallery-lightbox-figure {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.gallery-lightbox-image {
    width: 100%;
    height: calc(100% - 56px);
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.gallery-lightbox-caption {
    text-align: center;
    color: #eef9f7;
    font-size: 1rem;
    line-height: 1.6;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.04);
}

.gallery-lightbox-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    z-index: 2;
}

.gallery-lightbox-nav {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

@media screen and (max-width: 1024px) {
    .gallery-slider-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-stage,
    .gallery-slides {
        min-height: 520px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gallery-lightbox-dialog {
        width: min(100vw - 28px, 1080px);
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-lightbox-figure {
        height: auto;
    }

    .gallery-lightbox-image {
        height: min(72vh, 760px);
    }

    .gallery-lightbox-nav {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .gallery-slider {
        padding: 20px;
        border-radius: 26px;
    }

    .gallery-stage,
    .gallery-slides {
        min-height: 360px;
    }

    .gallery-slide-hit {
        padding: 14px 14px 72px;
    }

    .gallery-zoom-hint {
        top: 24px;
        right: 24px;
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .gallery-nav {
        width: 44px;
        height: 44px;
    }

    .gallery-nav-prev {
        left: 10px;
    }

    .gallery-nav-next {
        right: 10px;
    }

    .gallery-thumbs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        margin-right: -2px;
        scrollbar-width: thin;
    }

    .gallery-thumb {
        min-width: 108px;
        flex: 0 0 108px;
    }

    .gallery-lightbox-dialog {
        margin: 20px auto;
        height: auto;
    }

    .gallery-lightbox-image {
        height: auto;
        max-height: 72vh;
    }

    .main-nav {
        border-color: rgba(56, 159, 196, 0.16);
    }
}

.analysis-table-wrapper {
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 900px) {
    html {
        scroll-padding-top: 88px;
    }

    .services-tabs-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
    }

    .services-sidebar {
        padding: 0;
        border: none;
        background: transparent;
    }

    .services-tab-list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 0 0 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-tab-list::-webkit-scrollbar {
        display: none;
    }

    .tab-item {
        flex: 0 0 auto;
        padding: 12px 15px;
        border: 1px solid rgba(56, 159, 196, 0.16);
        border-left: none;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        white-space: nowrap;
        font-size: 0.93rem;
    }

    .tab-item:hover {
        background: rgba(255, 255, 255, 0.96);
    }

    .tab-item.active {
        background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-teal) 100%);
        color: white;
        border-color: transparent;
        box-shadow: 0 14px 24px -18px rgba(31, 93, 73, 0.58);
    }

    .services-content {
        padding: 20px 0 0;
        min-height: 0;
    }

    .tab-title {
        font-size: 1.55rem;
        margin-bottom: 16px;
    }

    .scope-group-title {
        margin: 24px 0 12px;
        font-size: 0.92rem;
    }

    .analysis-table-wrapper {
        margin-top: 14px;
        overflow: visible;
        border: none;
        border-radius: 0;
        background: transparent;
    }

    .service-scope-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0;
        background: transparent;
    }

    .service-scope-table thead {
        display: none;
    }

    .service-scope-table,
    .service-scope-table tbody,
    .service-scope-table tr,
    .service-scope-table td {
        display: block;
        width: 100%;
    }

    .service-scope-table tbody tr {
        margin-bottom: 14px;
        padding: 15px 16px 12px;
        border-radius: 20px;
        border: 1px solid rgba(56, 159, 196, 0.12);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 30px -24px rgba(21, 62, 51, 0.22);
    }

    .service-scope-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.98);
    }

    .service-scope-table tbody tr::before {
        content: attr(data-mobile-group);
        display: block;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(56, 159, 196, 0.12);
        color: var(--brand-forest);
        font-weight: 700;
        font-size: 0.86rem;
        line-height: 1.55;
        white-space: normal;
    }

    .service-scope-table td {
        min-width: 0 !important;
        padding: 9px 0;
        border-bottom: 1px solid #e5edf1;
        display: grid;
        grid-template-columns: minmax(110px, 40%) minmax(0, 1fr);
        gap: 10px;
        line-height: 1.65;
    }

    .service-scope-table td::before {
        content: attr(data-label);
        color: var(--brand-ink);
        font-weight: 700;
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .service-scope-table td[data-is-row-header="true"] {
        display: none;
    }

    .service-scope-table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .header-inner {
        height: 64px;
        gap: 14px;
    }

    .site-logo-image {
        height: 38px;
        max-width: 160px;
    }

    .mobile-toggle {
        font-size: 1.45rem;
    }

    .main-nav {
        top: calc(100% + 10px);
        border-radius: 20px;
        padding: 10px;
        max-height: calc(100vh - 96px);
        overflow: auto;
    }

    .nav-item > a {
        font-size: 0.95rem;
    }

    .hero-video {
        min-height: 620px;
        height: 100svh;
    }

    .hero-content {
        padding: 110px 20px 92px;
        justify-content: flex-end;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-pretitle {
        font-size: 0.76rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.1rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero-description {
        max-width: 100%;
        font-size: 0.98rem;
        margin-bottom: 28px;
    }

    .hero-buttons {
        width: 100%;
        margin-bottom: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
        max-width: 430px;
    }

    .stat-item {
        min-width: 0;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:last-child {
        grid-column: 1 / -1;
    }

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

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

    .scroll-indicator {
        display: none;
    }

    .page-header {
        margin-top: 64px;
        padding: 34px 0;
    }

    .page-title {
        font-size: 1.85rem;
        line-height: 1.1;
    }

    .breadcrumb {
        flex-wrap: wrap;
        row-gap: 6px;
        font-size: 0.85rem;
    }

    .section-padding {
        padding: 42px 0;
    }

    .section-header {
        text-align: left;
        margin: 0 0 28px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.18;
    }

    .section-intro {
        font-size: 0.98rem;
    }

    .gallery-slider {
        padding: 16px;
        border-radius: 22px;
    }

    .gallery-slider-meta {
        gap: 12px;
        margin-bottom: 16px;
    }

    .gallery-slider-meta h3 {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .gallery-slider-counter {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .gallery-stage,
    .gallery-slides {
        min-height: 290px;
    }

    .gallery-slide-hit {
        padding: 10px 10px 54px;
    }

    .gallery-slide-hit img {
        border-radius: 16px;
    }

    .gallery-zoom-hint {
        top: auto;
        right: 14px;
        bottom: 14px;
        gap: 8px;
        padding: 7px 10px;
        font-size: 0.74rem;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .gallery-nav:hover {
        transform: scale(1.02);
    }

    .gallery-nav-prev {
        left: 14px;
    }

    .gallery-nav-next {
        left: 60px;
        right: auto;
    }

    .gallery-thumb {
        min-width: 82px;
        flex: 0 0 82px;
        border-radius: 14px;
    }

    .home-services-grid,
    .home-highlight-list,
    .process-grid,
    .quality-highlights,
    .contact-cards-grid {
        gap: 16px;
    }

    .service-card,
    .process-card,
    .trust-card,
    .home-trust-content,
    .contact-card,
    .contact-form-wrapper {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .home-cta-panel {
        padding: 28px 18px;
        border-radius: 24px;
        gap: 20px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .contact-grid {
        gap: 24px;
    }

    .contact-form .form-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .contact-form .form-group.full-width {
        grid-column: auto;
        margin-bottom: 12px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .contact-form .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-map-wrapper,
    .map-placeholder {
        min-height: 340px;
    }

    .map-overlay-info {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .map-info-card {
        padding: 14px;
        gap: 12px;
        align-items: flex-start;
    }

    .map-info-card i {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .footer-grid {
        gap: 24px;
        padding: 34px 0 24px;
    }

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

    .social-links {
        gap: 12px;
    }

    .footer-contact li {
        gap: 10px;
    }

    .footer-contact a {
        word-break: break-word;
    }

    .footer-bottom {
        padding: 20px 0;
        gap: 10px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 0.84rem;
    }

    .footer-credit {
        font-size: 0.72rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero-content {
        padding: 104px 14px 84px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item:last-child {
        grid-column: auto;
    }

    .page-title {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .gallery-stage,
    .gallery-slides {
        min-height: 250px;
    }

    .gallery-thumb {
        min-width: 74px;
        flex-basis: 74px;
    }

    .gallery-lightbox-dialog {
        width: calc(100vw - 16px);
        margin: 10px auto;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }

    .service-scope-table tbody tr {
        padding: 14px;
        border-radius: 18px;
    }

    .service-scope-table td {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .service-scope-table td::before {
        font-size: 0.78rem;
    }

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

    .footer-logo-image {
        height: 56px;
        max-width: 180px;
    }

    .footer-bottom-links span {
        display: none;
    }
}



@media (hover: none) and (pointer: coarse) {
  
    .dropdown .dropdown-menu {
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    }
  
    .dropdown.active .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

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

    .dropdown.active .dropdown-toggle i {
      transform: rotate(180deg);
    }
  

    .mobile-toggle {
      min-width: 48px;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  

    .nav-item > a,
    .dropdown-toggle,
    .tab-item,
    .gallery-thumb,
    .gallery-nav,
    .btn,
    .social-links a {
      min-height: 44px;
      min-width: 44px;
    }
  
  
    .gallery-nav {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
  }
  

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
  
 
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    backdrop-filter: blur(2px);
  }
  

  @media screen and (max-width: 768px) {
    html {
      scroll-padding-top: 70px;
    }
  }
  

  @media screen and (max-width: 768px) {
    .dropdown-menu {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.95);
      width: calc(100% - 32px);
      max-width: 380px;
      max-height: 70vh;
      overflow-y: auto;
      border-radius: 28px;
      box-shadow: 0 30px 50px rgba(0,0,0,0.2);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    }
  
    .dropdown.active .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(1);
    }
  

    .dropdown-menu li a {
      padding: 16px 24px;
      font-size: 1.1rem;
    }
  

    .dropdown:last-child .dropdown-menu {
      left: 50%;
      right: auto;
    }
  }
  

  @media (hover: none) and (pointer: coarse) {
    .gallery-stage {
      touch-action: pan-y pinch-zoom;
    }
  
    .gallery-zoom-hint {
      background: rgba(31, 93, 73, 0.85);
      font-size: 0.8rem;
      padding: 8px 14px;
      backdrop-filter: blur(6px);
    }
  

    .gallery-thumbs {
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--brand-teal) rgba(0,0,0,0.1);
    }
  
    .gallery-thumbs::-webkit-scrollbar {
      height: 4px;
    }
    .gallery-thumbs::-webkit-scrollbar-thumb {
      background-color: var(--brand-teal);
      border-radius: 10px;
    }
  }
  

  @media screen and (max-width: 900px) {

    .service-scope-table td:not([data-label])::before {
      content: "Detay";
      color: var(--brand-muted);
      font-weight: 600;
    }
  

    .service-scope-table td {
      word-break: break-word;
    }
  

    .service-scope-table tbody tr {
      margin-bottom: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }
  

    .service-scope-table tbody tr::before {
      font-size: 1rem;
      color: var(--brand-forest-deep);
      margin-bottom: 16px;
    }
  }
  

  @media screen and (max-width: 768px) {
    input, select, textarea, button {
      font-size: 16px !important;
    }
  
    .contact-form .checkbox-group {
      align-items: flex-start;
    }
  
    .contact-form .checkbox-group input {
      margin-top: 2px;
      width: 22px;
      height: 22px;
    }
  }
  

  @media screen and (max-width: 480px) {
    .footer-logo-link {
      justify-content: center;
      width: 100%;
    }
  
    .social-links {
      justify-content: center;
    }
  
    .footer-about {
      text-align: center;
    }
  
    .footer-about p {
      text-align: center;
    }
  }
  

  body {
    overflow-x: hidden;
  }
  

@media screen and (max-width: 576px) {
    .btn {
      width: 100%;
      justify-content: center;
    }
  
    .hero-buttons .btn,
    .cta-actions .btn {
      width: 100%;
    }
  

    .stat-item {
      padding: 12px;
    }
  }

@media screen and (max-width: 768px) {
    .site-header {
        z-index: 1200;
    }

    .header-inner {
        position: relative;
        z-index: 1201;
    }

    .mobile-toggle {
        display: inline-flex !important;
        min-width: 48px;
        min-height: 48px;
        margin-left: auto;
        z-index: 1203;
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 76px;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100svh - 92px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        z-index: 1202;
    }

    .main-nav.is-open {
        display: block !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.menu-open::before {
        z-index: 1100;
    }
}

/* ===== LAYOUT RECOVERY ===== */
.services-tabs-wrapper {
    align-items: stretch;
}

.services-content,
.footer-about,
.footer-links,
.footer-contact {
    min-width: 0;
}

.footer-grid {
    align-items: start;
}

.footer-about p,
.footer-links a,
.footer-contact a,
.footer-bottom p {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 18px 24px;
    align-items: center;
}

.footer-bottom > p:first-child {
    justify-self: start;
    margin: 0;
}

.footer-credit {
    margin: 0;
    justify-self: center;
    text-align: center;
}

.footer-bottom-links {
    justify-self: end;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media screen and (max-width: 900px) {
    .services-sidebar {
        min-width: 0;
        overflow: hidden;
    }

    .services-tab-list {
        flex-wrap: nowrap;
        width: 100%;
        white-space: nowrap;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        padding-bottom: 12px;
    }

    .tab-item {
        white-space: nowrap;
        scroll-snap-align: start;
    }
}

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

    .footer-about {
        grid-column: 1 / -1;
        max-width: 720px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom > p:first-child,
    .footer-credit,
    .footer-bottom-links {
        justify-self: center;
    }
}

@media screen and (max-width: 768px) {
    .about-image {
        max-width: none;
        margin-left: 0;
        aspect-ratio: 5 / 4;
    }

    .services-content {
        padding: 20px 0 0;
    }

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

    .footer-about {
        grid-column: auto;
        max-width: none;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-logo-link {
        justify-content: flex-start;
        width: auto;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-about,
    .footer-about p {
        text-align: left;
    }
}

/* ===== HERO VIEWPORT FIXES ===== */
:root {
    --site-header-height: 80px;
}

.hero-video {
    height: auto;
    min-height: 100vh;
    padding-top: var(--site-header-height);
}

.hero-content {
    height: auto;
    min-height: calc(100vh - var(--site-header-height));
    padding: clamp(40px, 7vh, 76px) 40px 84px;
    justify-content: center;
}

.hero-title {
    font-size: clamp(3.35rem, 6vw, 5.35rem);
}

.hero-description {
    max-width: 680px;
}

.hero-stats {
    flex-wrap: wrap;
    gap: clamp(18px, 3vw, 42px);
}

@supports (min-height: 100svh) {
    .hero-video {
        min-height: 100svh;
    }

    .hero-content {
        min-height: calc(100svh - var(--site-header-height));
    }
}

@supports (min-height: 100dvh) {
    .hero-video {
        min-height: 100dvh;
    }

    .hero-content {
        min-height: calc(100dvh - var(--site-header-height));
    }
}

@media screen and (max-width: 768px) {
    :root {
        --site-header-height: 64px;
    }

    .hero-video {
        min-height: 100svh;
    }

    .hero-content {
        min-height: calc(100svh - var(--site-header-height));
        padding: 30px 20px 72px;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-description {
        font-size: 0.96rem;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .hero-buttons {
        margin-bottom: 24px;
    }

    .hero-stats {
        max-width: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-content {
        padding: 24px 14px 60px;
    }

    .hero-pretitle {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8.8vw, 2.5rem);
    }
}

@media screen and (max-width: 768px) and (max-height: 760px) {
    .hero-content {
        justify-content: flex-start;
        padding-top: 22px;
        padding-bottom: 48px;
    }
}
