html {
    scroll-behavior: smooth;
}

html.home-scroll {
    scroll-snap-type: y mandatory;
}

.home-scroll .hero {
    scroll-snap-align: start; 
    scroll-snap-stop: always; 
}

.home-scroll #hizmetler-vitrini {
    scroll-snap-align: start; 
    scroll-snap-stop: always;
    scroll-margin-top: 15px; 
}

.home-scroll footer {
    scroll-snap-align: none; 
}

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

:root {
    --primary-rgb: 2, 132, 199;     
    --secondary-rgb: 16, 185, 129;  
    --accent-orange: #E17055;       
    
    
    --primary: rgb(var(--primary-rgb));
    --secondary: rgb(var(--secondary-rgb));
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;
    
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --nav-height: 90px;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    
    background-color: #f0f9ff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(var(--primary-rgb), 0.25) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(var(--secondary-rgb), 0.25) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(var(--primary-rgb), 0.25) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(var(--secondary-rgb), 0.25) 0px, transparent 50%);
    background-size: 150% 150%;
    animation: gradientWave 15s ease infinite alternate;
    background-attachment: fixed;
    overflow-x: hidden;
}

@keyframes gradientWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.navbar {
    height: 90px;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    
    
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.container {
    max-width: 1200px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; position: relative;
}

.logo-container {
    position: relative; 
    display: flex; align-items: center;
    background: transparent; 
    padding: 0; border: none; backdrop-filter: none;
}
.logo-img { 
    height: 55px; width: auto; 
    filter: brightness(0) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}
.logo-container:hover .logo-img { transform: scale(1.05); }

.nav-links { display: flex; gap: 15px; align-items: center; height: 100%; }

.nav-links a {
    font-weight: 600; color: var(--text-main); font-size: 0.95rem; 
    position: relative; 
    padding: 32px 10px; 
    display: flex; align-items: center;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-cta)::after {
    content: ''; position: absolute; bottom: 25px; left: 10px; right: 10px;
    width: auto; height: 2px; background: var(--primary);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:not(.btn-cta):hover::after,
.nav-links a.active:not(.btn-cta)::after { transform: scaleX(1); transform-origin: left; }

.nav-links a:not(.btn-cta):hover { color: var(--primary); }

.dropdown-parent { position: relative; height: 100%; display: flex; align-items: center; }

.dropdown {
    position: absolute; 
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%) translateY(20px); 
    min-width: 260px; 
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px; 
    padding: 10px;
    opacity: 0; visibility: hidden; 
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
}

.dropdown-parent:hover .dropdown { 
    opacity: 1; visibility: visible; 
    transform: translateX(-50%) translateY(0); 
}

.dropdown li a { 
    display: block; 
    padding: 12px 15px; 
    border-radius: 8px; 
    width: 100%;
    text-align: left;
    white-space: nowrap; 
    color: #334155;
}
.dropdown li a:hover { 
    background: rgba(var(--primary-rgb), 0.08); 
    color: var(--primary); 
    transform: translateX(5px); 
}
.dropdown li a::after { display: none; }

.btn-cta {
    background: var(--primary); color: white !important;
    padding: 0.7rem 1.5rem !important; border-radius: 50px;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    height: auto; display: inline-block;
}

.btn-cta:hover {
    background: var(--secondary); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.4);
}

.menu-toggle {
    display: none; 
    cursor: pointer;
    color: var(--text-main);
}

.hero {
    height: 100vh; 
    width: 100%;
    position: relative;
    display: flex; align-items: center; justify-content: center; text-align: center;
    overflow: hidden; 
    padding-top: 80px;
    background-color: #0f172a; 
    isolation: isolate;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1; opacity: 1; 
}

.hero .hero-bg {
    animation: slowZoom 20s infinite alternate;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.2); 
    z-index: 2; pointer-events: none;
}

#tsparticles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3; pointer-events: auto;
}

.hero-content {
    max-width: 900px;
    position: relative; z-index: 10;

    background: rgba(11, 17, 32, 0.75); 
    padding: 2rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    
    
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    margin: 0 20px;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; font-weight: 700; font-size: 1.1rem;
    border-radius: 50px; text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    border: 2px solid transparent;
    margin-top: 10px;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.4);
    border-color: var(--secondary);
    background: rgba(255,255,255,0.1);
}

.services-showcase {
    height: 100vh;
    width: 100%;
    padding-top: 90px; 
    padding-bottom: 20px;
    background: transparent;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.services-showcase .container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center; 
    margin-top: 10px; 
    margin-bottom: 15px; 
    flex-shrink: 0; 
    z-index: 10;
}

.section-title h2 {
    font-size: 2rem; 
    color: var(--text-main); 
    margin-bottom: 0;
    line-height: 1.2;
}

.section-title p { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    margin-top: 5px;
}

.vitrin-grid {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    flex-grow: 1; 
    min-height: 0; 
}

.vitrin-row {
    display: flex;
    gap: 12px; 
    flex: 1; 
    min-height: 0;
}

.service-card {
    flex: 1; 
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1rem;
    display: flex; flex-direction: column; 
    align-items: center; justify-content: center; text-align: center;
    text-decoration: none; color: inherit;
    position: relative; 
    overflow: hidden; 
    cursor: pointer;
    transition: flex 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                background 0.3s ease, 
                border-color 0.3s ease;
    will-change: flex; 
    transform: translateZ(0);
}

.service-card:hover {
    flex: 2.5; 
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.1);
}

.card-icon {
    width: 28px; height: 28px; 
    color: var(--primary);
    margin-bottom: 8px;
    transition: color 0.3s;
    flex-shrink: 0;
}
.service-card:hover .card-icon { color: var(--secondary); }

.service-card h3 {
    font-size: 1rem; 
    font-weight: 700;
    color: var(--text-main); 
    margin: 0;
    white-space: nowrap; 
}

.card-detail {
    max-height: 0; opacity: 0; 
    overflow: hidden;
    transition: opacity 0.4s ease 0.1s; 
    width: 100%;
}

.service-card:hover .card-detail {
    max-height: 60px;
    opacity: 1; 
    margin-top: 8px;
}

.card-detail p { 
    font-size: 0.8rem; color: var(--text-muted); margin-bottom: 5px;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

.btn-detail {
    display: inline-block;
    background: var(--primary); color: white; 
    padding: 4px 12px; border-radius: 50px; 
    font-size: 0.75rem; font-weight: 600;
    text-decoration: none;
}
.btn-detail:hover { background: var(--secondary); }

footer {
    position: relative;
    background: rgba(15, 23, 42, 0.98); 
    backdrop-filter: blur(20px);
    color: #cbd5e1;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    scroll-snap-align: end;
    scroll-snap-stop: always;
}

.footer-container { display: flex; flex-direction: column; }

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

.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo img { height: 100px; filter: brightness(0) invert(1); }
.footer-logo h3 { color: #fff; font-size: 1.5rem; margin: 0; }
.footer-desc { font-size: 0.95rem; line-height: 1.6; color: #94a3b8; }

.footer-col h4 {
    color: #fff; font-size: 1.1rem; margin-bottom: 20px;
    position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 40px; height: 3px; background: var(--secondary); border-radius: 2px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.footer-links a:hover { color: var(--secondary); transform: translateX(5px); }

.contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 0.95rem; }
.contact-list i { width: 20px; height: 20px; color: var(--secondary); margin-top: 3px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; font-size: 0.9rem; color: #64748b;
}

.page-hero {
    min-height: 60vh;
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 34px;
    background-color: #0f172a;
    isolation: isolate;
}

.page-hero .hero-bg { animation: slowZoom 20s infinite alternate; }
    @keyframes slowZoom {
        0% { transform: scale(1); }
        100% { transform: scale(1.5); }
}

.page-hero .hero-title {
    font-size: clamp(1.85rem, 6.2vw, 2.8rem);
    line-height: 1.15;
    margin: 0 0 14px 0;
}

.page-hero .hero-description {
    font-size: clamp(0.98rem, 3.2vw, 1.1rem);
    line-height: 1.6;
    max-width: 68ch;
    margin: 0 auto;
}

.home-scroll .page-hero {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
}

@media (max-width: 900px) {
    .page-hero { height: 100vh; }
}

.section-premium {
    background-color: #f8fafc !important; 
    padding: 100px 0 150px 0;
    color: #334155;
    position: relative;
    overflow: hidden;
    --color-blue: rgb(37, 99, 235);
    --color-green: rgb(16, 185, 129);
    --mouse-x: 50%; --mouse-y: 50%; --mix-ratio: 50%;
}

.section-premium::before {
    content: ''; position: absolute;
    top: var(--mouse-y); left: var(--mouse-x);
    transform: translate(-50%, -50%);
    width: 800px; height: 800px; border-radius: 50%;
    filter: blur(200px); 
    background: color-mix(in srgb, var(--color-blue) var(--mix-ratio), var(--color-green));
    opacity: 0.25; z-index: 0; pointer-events: none;
    transition: background 0.1s ease-out, opacity 0.3s ease;
    will-change: transform, background;
}

.content-wrapper { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 25px;}

.premium-title {
    font-size: 2.5rem; font-weight: 800;
    color: color-mix(in srgb, rgb(37, 99, 235) 70%, rgb(16, 185, 129));
    margin-bottom: 30px; letter-spacing: -0.5px; display: block; position: relative;
}
.premium-title::after {
    content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin-top: 15px; border-radius: 2px;
}

.premium-text { font-size: 1.15rem; line-height: 1.8; color: #475569; margin-bottom: 25px; font-weight: 400; }
.premium-text strong { color: #0f172a; font-weight: 700; }

.services-grid-clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.clean-card {
    background: #f8fafc; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clean-card:hover {
    transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background: #fff; border-color: var(--primary);
}
.clean-card h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin: 15px 0 10px; }
.clean-card p { font-size: 0.95rem; color: #64748b; line-height: 1.5; }

.mv-block { margin-bottom: 60px; padding-left: 30px; border-left: 4px solid #cbd5e1; transition: border-left-color 0.3s ease; }
.mv-block:hover { border-left-color: var(--primary); }
.mv-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.mv-title { font-size: 1.8rem; font-weight: 700; color: color-mix(in srgb, var(--color-blue) var(--mix-ratio), var(--color-green)); margin: 0; }
.mv-desc { font-size: 1.1rem; line-height: 1.8; color: #475569; }

.services-accordion-section {
    background-color: #f8fafc;
    padding: 100px 0 150px;
    min-height: 60vh;
}

.services-accordion-section .container {
    display: block !important;
    height: auto !important;
    max-width: 900px !important;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    scroll-margin-top: 110px; 
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 30px;
    background: none; border: none; cursor: pointer;
    text-align: left; transition: background 0.2s;
}

.accordion-header:hover { background-color: #f1f5f9; }

.header-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.acc-icon { color: var(--primary); width: 28px; height: 28px; flex-shrink: 0; }
.accordion-header h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0; }

.arrow-icon { color: #94a3b8; transition: transform 0.3s ease; flex-shrink: 0; }
.accordion-item.active .arrow-icon { transform: rotate(180deg); color: var(--primary); }

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); background-color: #ffffff; }
.content-inner { padding: 0 30px 30px 78px; color: #475569; }
.lead-text { font-size: 1.1rem; font-weight: 500; color: #334155; margin-bottom: 15px; }
.content-inner p { margin-bottom: 20px; line-height: 1.7; }

.service-list { margin-top: 20px; padding: 20px; background: #f8fafc; border-radius: 8px; border-left: 4px solid var(--secondary); }
.service-list li { margin-bottom: 8px; font-weight: 600; color: #334155; position: relative; padding-left: 20px; }
.service-list li::before { content: '•'; position: absolute; left: 0; color: var(--secondary); font-size: 1.5rem; line-height: 1rem; top: 2px; }

@media (max-width: 900px) {
    body { background-attachment: scroll; animation: none; }

    
    html.home-scroll { scroll-snap-type: none; }
    .home-scroll .hero,
    .home-scroll #hizmetler-vitrini,
    .home-scroll footer {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

    
    #tsparticles { pointer-events: none; }

    
    .menu-toggle { display: block; font-size: 1.8rem; }
    
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; height: auto; padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 1px solid rgba(0,0,0,0.05);
        max-height: calc(100vh - 90px); overflow-y: auto;
    }
    .nav-links.active { display: flex; }
    
    .nav-links a { padding: 15px; width: 100%; justify-content: center; }
    .nav-links a:not(.btn-cta)::after { display: none; }

    
    .dropdown {
        position: static; width: 100%; transform: none; 
        opacity: 1; visibility: visible; display: none;
        box-shadow: none; border: none; background: rgba(0,0,0,0.03); 
        margin-top: 0; min-width: 0;
    }
    .dropdown.open { display: block; animation: slideDown 0.3s ease; }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
    
    .dropdown li a { text-align: center; padding: 12px; }
    .dropdown-parent > a { cursor: pointer; }

    
    .services-showcase { height: auto; padding: 100px 20px 40px; }
    .services-showcase .container { display: block !important; }
    .vitrin-row { flex-direction: column; flex: none; }
    .service-card { min-height: 120px; margin-bottom: 10px; }
    .service-card:hover { flex: 1; }
    .card-detail { max-height: 100px; opacity: 1; margin-top: 10px; }
    .card-detail p { white-space: normal; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-logo, .contact-list li { justify-content: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .services-grid-clean { grid-template-columns: 1fr; }
    .premium-title { font-size: 2rem; }
    .content-wrapper { padding: 0 20px; }
    
    .accordion-header { padding: 20px; }
    .header-left { gap: 15px; }
    .content-inner { padding: 0 20px 25px 20px; }
    .accordion-header h3 { font-size: 1.1rem; }
    
    .hero-content {
        padding: 2rem 1.5rem;
        background: rgba(11, 17, 32, 0.90);
    }}

.gradient-text-legal {
    background: linear-gradient(to right, #22c55e, #0ea5e9);
    -webkit-background-clip: text;  
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 1px rgba(34, 197, 94, 0.5)); 
}

.gradient-text-digital {
    background: linear-gradient(to right, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 1px rgba(59, 130, 246, 0.5)); 
}

.hero-title {
    color: #ffffff;
    text-shadow: none; 
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 20px auto;
    font-weight: 400;
}

.hero-description strong {
    color: #fff;
    font-weight: 700;
}

.partnership-header {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 50px;  
    margin-bottom: 75px;
    margin-top: -35px;
    flex-wrap: wrap;
}

.partner-logo-box {
    height: 175px;
    width: 300px;          
    display: flex; 
    align-items: center;
    justify-content: center;
    background: #fff;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);

    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.partner-logo-box img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partnership-header {
        flex-direction: column;
    }
}

.partners-section-wrapper {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid #e2e8f0;
}

.logos-slider {
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-slide-track {
    display: flex;
    align-items: center;
    width: calc(200px * 12); 
    animation: scrollLogos 30s linear infinite;
}

.slide-logo {
    width: 200px; 
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.slide-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    
    
    filter: grayscale(100%) opacity(0.7); 
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.slide-logo img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.logos-slide-track:hover {
    animation-play-state: paused;
}

.slide-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); } 
    
}

@media (max-width: 768px) {
    .logos-slider {
        mask-image: none;
        -webkit-mask-image: none;
        height: auto;
    }

    .logos-slide-track {
        animation: none; 
        width: 100%;
        
        overflow-x: auto; 
        scroll-behavior: smooth;
        
        gap: 10px;
        padding-bottom: 20px;
    }

    .logos-slide-track::-webkit-scrollbar {
        display: none;
    }

    .slide-logo {
        flex: 0 0 140px; 
        min-width: 140px;
    }
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-side {
    flex: 1;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.info-card:hover { transform: translateY(-3px); border-color: var(--primary); }

.icon-box {
    width: 50px; height: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.info-text h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: #0f172a; }
.info-text p { margin: 0; color: #64748b; font-size: 0.95rem; line-height: 1.5; }

.contact-form-side {
    flex: 1.2;
}

.form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex; align-items: center;
}

.input-icon {
    position: absolute; left: 15px;
    color: #94a3b8; width: 20px; height: 20px;
    pointer-events: none;
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 12px 15px 12px 45px; 
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-box textarea { padding: 15px; } 

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column; 
    }
    
    .form-box {
        padding: 25px;
    }
}

.map-hero-section {
    width: 100%;
    height: 50vh;
    min-height: 450px;
    margin-top: 90px;
    position: relative;
    background: #e2e8f0;
}

.map-hero-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    
    
}

@media (max-width: 768px) {
    .map-hero-section {
        height: 40vh;
        min-height: 300px;
    }
}

.btn-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.btn-detail-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.btn-detail-link i {
    width: 20px; 
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-detail-link:hover i {
    transform: translateX(3px);
}

.page-header-simple {
    padding: 120px 0 40px 0; 
    background: #f8fafc;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-header-simple h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header-simple p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.margin-b100 { margin-bottom: 100px; }

@media (max-width: 768px) {
    .page-header-simple {
        padding: 100px 20px 30px 20px;
    }
    .page-header-simple h1 {
        font-size: 1.8rem;
    }
    .nav-links.active {
        right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    body { animation: none; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

@supports (height: 100svh) {
  .hero { height: 100svh; }
  .page-hero {
    min-height: 50svh;
    height: auto;
  }
  @media (max-width: 900px) {
    .page-hero { min-height: calc(90svh - var(--nav-height)); }
  }
}


.hero-title {
  color: #ffffff;
  text-shadow: none;
  font-size: clamp(1.65rem, 5.6vw, 3rem);
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hero-description {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 900px) {
  .hero-content { padding: 1.5rem 1.1rem; gap: 1rem; }
  .hero-title { max-inline-size: 22ch; }
  .hero-title br { display: none; }
  .hero-description { font-size: 1rem; line-height: 1.55; }
}
@media (max-width: 480px) {
  .hero-content { width: calc(100% - 24px); }
}

@media (max-width: 900px) {
  .nav-links { overflow-x: hidden; }
  .dropdown-parent { display: block; width: 100%; height: auto; }
  .dropdown-parent > a { justify-content: center; }
  .dropdown-parent:hover .dropdown { transform: none; }
  .dropdown { margin-top: 10px; }
  .dropdown li a {
    white-space: normal;
    text-align: left;
    justify-content: flex-start;
    line-height: 1.25;
  }
  .dropdown li a:hover { transform: none; }
}

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  opacity: 0;
  transition: opacity 180ms ease;
}
.info-modal.is-open {
  display: block;
  opacity: 1;
}
.info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.info-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(560px, calc(100% - 32px));
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.30), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  padding: 18px;
  opacity: 0;
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;
  will-change: transform, opacity;
  max-height: calc(100dvh - 32px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.info-modal.is-open .info-modal__dialog {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
@supports (padding: env(safe-area-inset-top)) {
  .info-modal__dialog {
    max-height: calc(100dvh - 32px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
}
.info-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary), var(--accent-orange), var(--primary));
  opacity: 0.95;
  border-radius: 20px 20px 0 0;
}
.info-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.info-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--secondary-rgb), 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14), 0 0 18px rgba(var(--secondary-rgb), 0.22);
}
.info-modal__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 8px 6px;
}
.modal-title {
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: #0f172a;
  margin: 6px 0 0;
  text-align: center;
}
.modal-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  text-align: center;
}
.modal-logos {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px;
  margin: 14px 0 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}
.modal-logos::before {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(circle at 30% 40%, rgba(var(--secondary-rgb), 0.22), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(225, 112, 85, 0.18), transparent 55%);
  filter: blur(14px);
  opacity: 0.85;
  pointer-events: none;
}
.modal-logos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.30), transparent 55%);
  pointer-events: none;
}
.modal-logos img,
.modal-logo {
  position: relative;
  z-index: 1;
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.14));
}
@media (max-width: 480px) {
  .info-modal__dialog {
    width: calc(100% - 24px);
    border-radius: 18px;
    padding: 16px;
  }
  .modal-logos img,
  .modal-logo {
    height: 60px;
    max-width: 180px;
  }
}
html.modal-open,
body.modal-open {
  overflow: hidden;
}

.modal-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  user-select: none;
  justify-content: center;
}
.modal-switch__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.modal-switch__track {
  position: relative;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.10);
  transition: 0.2s ease;
}
.modal-switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}
.modal-switch__input:checked + .modal-switch__track {
  background: rgba(var(--secondary-rgb), 0.88);
  box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.18), 0 8px 18px rgba(var(--secondary-rgb), 0.22);
}
.modal-switch__input:checked + .modal-switch__track::after {
  transform: translateX(18px);
}
.modal-switch__label {
  font-weight: 800;
  font-size: 0.95rem;
  color: #334155;
}

.back-nav {
  position: fixed;
  left: 18px;
  top: calc(90px + 16px);
  z-index: 1200;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.back-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--secondary-rgb), 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}
.back-btn:active {
  transform: translateY(0);
}
.back-btn .back-ico {
  width: 18px;
  height: 18px;
  color: rgb(var(--secondary-rgb));
}
@media (max-width: 900px) {
  .back-nav {
    top: auto;
    bottom: 16px;
    left: 16px;
  }
  .back-btn {
    position: relative;
    background: rgba(15, 23, 42, 0.72);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 22px rgba(var(--secondary-rgb), 0.28);
    padding: 12px 14px;
  }
  .back-btn::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    pointer-events: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 26px rgba(255, 140, 0, 0.18);
  }
  .back-btn .back-ico {
    filter: drop-shadow(0 0 10px rgba(var(--secondary-rgb), 0.35));
  }
  .back-btn:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 28px rgba(var(--secondary-rgb), 0.34);
  }
}
