/*!
Theme Name: YBS Zirvesi 2026
Theme URI: https://2026.ybszirve.org.tr/
Author: Enes Cantürk
Description: 
Version: 4.2.0
*/

:root {
    --bg-body: #F0F2F5;
    --header-bg: #002855;
    --header-bg-scrolled: #001F3F;
    --accent-teal: #00B5AD;
    --accent-teal-hover: #00968F; 
    --text-dark: #101828;  
    --text-white: #FFFFFF; 
    --text-white-muted: rgba(255, 255, 255, 0.75);
    --nav-width: 1100px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-body);
    color: var(--text-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    pointer-events: none;
    padding-top: 24px; 
    transition: var(--transition);
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-inner {
    pointer-events: auto;
    width: 85%;
    max-width: var(--nav-width);
    height: 70px;
    background-color: var(--header-bg);
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    transition: var(--transition);
}

.site-header.is-scrolled {
    padding-top: 0;
}

.site-header.is-scrolled .navbar-inner {
    width: 92%; 
    max-width: 1200px;
    height: 60px;
    border-radius: 0 0 20px 20px;
    background-color: var(--header-bg-scrolled);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.site-branding { display: flex; align-items: center; }
.logo-link { display: flex; align-items: center; gap: 10px; }

.logo-text {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); 
    opacity: 0.95;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 1;
}

.logo-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

@media (max-width: 900px) {
    .brand-logos {
        gap: 10px;
    }

    .nav-logo {
        height: 28px;
    }

    .logo-sep {
        font-size: 1.2rem;
    }
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    position: relative;
    transition: all 0.3s ease;
}

.main-navigation ul li > a {
    color: var(--text-white-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-navigation ul li > a:hover {
    color: var(--text-white);
}

.main-navigation ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-teal);
    transition: width 0.3s ease;
}
.main-navigation ul > li:hover > a::after { width: 100%; }

.main-navigation > ul > .menu-item-has-children > a {
    padding-right: 5px;
}

.main-navigation > ul > .menu-item-has-children > a::before {
    content: '\25BE';
    font-size: 0.8em;
    opacity: 0.6;
    transition: transform 0.3s ease;
    order: 2;
    margin-left: 4px;
}

.main-navigation > ul > .menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--accent-teal);
}

.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--header-bg);
    min-width: 210px;
    padding: 8px 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul li {
    width: 100%;
    display: block;
}

.main-navigation ul ul li a {
    padding: 8px 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    border-radius: 4px;
    margin: 0 5px;
    justify-content: flex-start;
}

.main-navigation ul ul li a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #FFFFFF;
    padding-left: 20px;
}

.main-navigation ul ul li a::after { display: none; }
.main-navigation ul ul .menu-item-has-children > a::before { display: none; }

.header-right { display: flex; align-items: center; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-teal);
    color: var(--text-white);
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: var(--accent-teal-hover);
    transform: translateY(-1px);
}

.btn-icon { margin-left: 6px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px; 
    height: 30px;
    padding: 0;
    z-index: 1200;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-origin: center;
}

@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    
    .site-header.toggled .menu-toggle .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .site-header.toggled .menu-toggle .bar:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.25);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        z-index: 1000;
        padding: 0;
    }

    .site-header.toggled .main-navigation {
        max-height: 600px;
        opacity: 1;
        pointer-events: auto;
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 10px 0 20px 0;
        gap: 0;
    }

    .main-navigation ul li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
	
	.main-navigation ul li ul li {
        width: 100%;
        text-align: left;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .site-header.toggled .main-navigation ul li { opacity: 1; transform: translateY(0); }
    .site-header.toggled .main-navigation ul li:nth-child(1) { transition-delay: 0.1s; }
    .site-header.toggled .main-navigation ul li:nth-child(2) { transition-delay: 0.15s; }
    .site-header.toggled .main-navigation ul li:nth-child(3) { transition-delay: 0.2s; }
    .site-header.toggled .main-navigation ul li:nth-child(4) { transition-delay: 0.25s; }
    .site-header.toggled .main-navigation ul li:nth-child(5) { transition-delay: 0.3s; }

    .main-navigation ul li > a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        justify-content: center;
    }

    .main-navigation ul li > a:hover {
        color: #FFFFFF;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .main-navigation ul > li > a::after { display: none; }

    .main-navigation ul ul {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #0D335E;
        text-align: left !important;
		border-radius: 0 !important
    }

    .main-navigation ul li:hover > ul {
        display: block;
    }

    .main-navigation ul ul li a {
        padding: 10px 15px;
        color: rgba(255,255,255,0.7);
        justify-content: flex-start;
        margin: 0;
    }

    .main-navigation ul ul li a:hover {
        background: rgba(255,255,255,0.1);
        color: #FFFFFF;
        padding-left: 20px;
    }
    
    .main-navigation > ul > .menu-item-has-children > a::before {
        content: '+';
        font-size: 1.2em;
        margin-left: 6px;
        order: 2;
    }
}

@media (max-width: 768px) {
    .site-header { 
        padding-top: 15px; 
    }
    
    .navbar-inner {
        position: relative;
        width: 92%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 1.2rem;
        height: 60px;
        border-radius: 30px;
        transition: border-radius 0.3s ease, background-color 0.3s ease;
        overflow: visible !important; 
    }

    .site-header.toggled .navbar-inner {
        border-radius: 20px 20px 0 0;
        background-color: var(--header-bg);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header-actions { display: none; }

    .site-header.toggled .menu-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-header.toggled .menu-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh; 
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 150px; 
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    overflow: hidden;
    /*background-color: var(--bg-body);*/
	
}
.hero-section::before {
    content: '';
    position: absolute;
    z-index: -1; 
    
    bottom: -4%; 
    left: 50%; 
    transform: translateX(-50%); 
    
    width: 80%; 
    height: 60%; 
    
    background-image: url('https://2026.ybszirve.org.tr/dosyalar/yildizbg.png');
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: center bottom; 
    
    opacity: 0.65;      
    pointer-events: none; 
}

@media (max-width: 768px) {
    .hero-section::before {
        width: 90%;
        height: 50%;
        bottom: -4%; 
        opacity: 0.25;
    }
}
.hero-container {
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
        overflow: hidden;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 10px;
    }
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-teal);
    filter: blur(120px);
    opacity: 0.07;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.glow-top-left { 
    top: -200px; 
    left: 50%; 
    transform: translateX(-100%);
}
.glow-bottom-right { 
    bottom: -100px; 
    right: 50%; 
    transform: translateX(100%); 
    background: var(--header-bg); 
    opacity: 0.05; 
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
/* Hero Tarih ve Konum Etiketleri */
.hero-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: inherit; 
    white-space: nowrap; /* Metnin alt satıra kırılmasını engeller */
}

/* İkonların sıkışıp yarım görünmesini engeller */
.hero-meta-item svg {
    flex-shrink: 0; 
}

/* Mobilde alt alta düzgün durması için */
@media (max-width: 600px) {
    .hero-meta-info {
        flex-direction: column;
        gap: 10px;
    }
}
.static-text {
    color: var(--text-dark);
    font-weight: 700;
    display: block; 
    width: 100%;
}

.dynamic-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 1.3em;
    overflow: hidden;
    color: var(--accent-teal);
    padding: 0 5px;
}

.dynamic-text {
    display: block;
    white-space: nowrap; 
    transform: translateY(0%);
    opacity: 1;
    filter: blur(0);
    will-change: transform, opacity, filter;
    font-weight: 800;
}

.dynamic-text.slide-up-out {
    animation: slideUpOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dynamic-text.slide-up-in {
    animation: slideUpIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpOut {
    0% { transform: translateY(0%); opacity: 1; filter: blur(0); }
    100% { transform: translateY(-100%); opacity: 0; filter: blur(2px); }
}

@keyframes slideUpIn {
    0% { transform: translateY(100%); opacity: 0; filter: blur(2px); }
    100% { transform: translateY(0%); opacity: 1; filter: blur(0); }
}

.hero-description {
    font-size: 1rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto 32px auto;
    font-weight: 400;
    line-height: 1.5;
    padding: 5px 10px;
	background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}
.btn-link:hover { color: var(--accent-teal); }

.hero-meta {
    font-size: 0.85rem;
    color: var(--header-bg);
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
        overflow: hidden;
    }

    .hero-title {
        font-size: 1.8rem;
        gap: 8px;
        width: 100%;
        margin-bottom: 20px;
    }

    .dynamic-wrapper {
        height: auto;
        min-height: 1.3em;
        white-space: normal;
        display: block;
        padding: 0;
    }

    .dynamic-text {
        white-space: normal;
        line-height: 1.3;
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 16px;
        padding: 0 10px;
    }
    
    .btn-cta, .btn-link {
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .hero-glow {
        width: 100%;
        height: 300px;
        filter: blur(60px); 
        opacity: 0.05;
    }
    
    .glow-top-left { top: -100px; left: 0; transform: none; }
    .glow-bottom-right { bottom: -100px; right: 0; transform: none; }
}

.partners-section {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.partners-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-grey);
    margin-bottom: 24px;
    opacity: 0.6;
    text-transform: uppercase;
}

.partners-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: multiply; 
}

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

@media (max-width: 768px) {
    .partners-wrapper {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: -20px; 
        margin-right: -20px;
    }

    .partner-item {
        scroll-snap-align: center;
    }

    .partner-item img {
        height: 50px;
    }

    .partners-wrapper::-webkit-scrollbar {
        height: 4px;
    }
    .partners-wrapper::-webkit-scrollbar-thumb {
        background: #e2e8f0;
        border-radius: 10px;
    }
}

.bento-section {

    padding: 100px 0;

    background-color: var(--bg-body);

}



.section-header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px auto;

    padding: 0 20px;

}



.section-title {

    font-size: 2rem;

    color: var(--text-dark);

    font-weight: 800;

    margin-bottom: 12px;

    letter-spacing: -0.03em;

    line-height: 1.1;

}



.section-subtitle {

    font-size: 1.05rem;

    color: var(--text-grey);

    line-height: 1.6;

    font-weight: 400;

}



.bento-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-template-rows: 280px 200px; 

    gap: 20px;

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 20px;

}



.bento-card {

    background-color: var(--white);

    border-radius: 8px; 

    padding: 30px;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(0, 40, 85, 0.1); 

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);

    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}



.bento-card:hover {

    transform: translateY(-2px);

    border-color: var(--accent-teal);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}



.card-main {

    grid-column: span 2;

    background: #fff;

}



.card-main h3 {

    font-size: 1.6rem;

    font-weight: 800;

    color: var(--header-bg);

    margin-bottom: 10px;

    line-height: 1.3;

    letter-spacing: -0.02em;

margin-top: 5px

}



.card-main p {

    font-size: 1rem;

    color: var(--text-grey);

    max-width: 90%;

}



.card-badge {

    display: inline-block;

    background-color: rgba(0, 181, 173, 0.08);

    color: var(--accent-teal);

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    padding: 6px 10px;

    border-radius: 4px;

    border: 1px solid rgba(0, 181, 173, 0.2);

    align-self: flex-start;

}



.card-decoration-circle {

    position: absolute;

    bottom: 0;

    right: 0;

    width: 120px;

    height: 120px;

    background: radial-gradient(circle at bottom right, rgba(0, 40, 85, 0.05) 0%, transparent 70%);

    border-radius: 0;

    pointer-events: none;

}



.card-stat {

    grid-column: span 1;

    align-items: flex-start;

    justify-content: center;

    padding-left: 30px;

}



.card-stat.dark-bg {

    background-color: var(--header-bg);

    color: var(--text-white);

    border: none;

}



.stat-number {

    font-size: 3rem;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 12px;

    letter-spacing: -1px;

    color: var(--accent-teal);

    display: block;

}



.dark-bg .stat-number {

    color: #fff;

}



.stat-label {

    font-size: 0.9rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    opacity: 0.7;

}



.card-network {

    grid-column: span 2;

    flex-direction: row;

    align-items: center;

    gap: 20px;

}



.icon-box {

    font-size: 1.8rem;

    background-color: #F8FAFC;

    border: 1px solid #E2E8F0;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    flex-shrink: 0;

}



.text-box h3 {

    font-size: 1.25rem;

    font-weight: 700;

    margin-bottom: 6px;

    color: var(--text-dark);

}



.text-box p {

    font-size: 0.95rem;

    color: var(--text-grey);

    margin: 0;

}



.card-wide {

    grid-column: span 1;

    background-color: #fff;

}



.bento-grid {

    grid-template-rows: auto auto;

}



.card-main { grid-column: span 2; }

.card-stat.dark-bg { grid-column: span 1; }



.card-stat:nth-child(3) { grid-column: span 1; }

.card-network { grid-column: span 2; }



.card-wide {

    grid-column: span 3;

    flex-direction: row;

    align-items: center;

    background: var(--header-bg);

    color: white;

    border: none;

}



.card-wide h3 { color: #fff; margin-bottom: 5px; font-size: 1.3rem; }

.card-wide p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }



.cert-icon {

    font-size: 2.5rem;

    background: rgba(255,255,255,0.1);

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

}



@media (max-width: 900px) {

    .bento-grid {

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 16px;

    }

    

    .card-main, .card-stat, .card-network, .card-wide {

        grid-column: span 1;

    }

    

    .bento-grid { grid-template-rows: auto; }

    

    .card-stat {

        align-items: center;

        text-align: center;

        padding-left: 20px;

    }



    .card-network, .card-wide .content-row {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

}



/* --- GENİŞ İSTATİSTİK KARTI (Sertifika Tarzı) --- */

.card-stat-wide {

    grid-column: span 2; /* 2 Sütunluk yer kaplar (Grid yapına göre ayarla) */

    

    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    

    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);

    padding: 0 40px;

    min-height: 200px;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.8);

}



/* --- SOL TARA (İÇERİK) --- */

.stat-content {

    flex: 0 0 60%; /* Alanın %60'ı */

    z-index: 2;

    padding-right: 20px;

}



.stat-badge-row {

    display: flex; align-items: center; gap: 10px; margin-bottom: 15px;

}



.live-badge {

    display: inline-flex; align-items: center; gap: 6px;

    background: #fee2e2; color: #991b1b;

    padding: 5px 12px; border-radius: 20px;

    font-size: 0.75rem; font-weight: 700;

    text-transform: uppercase; border: 1px solid #fecaca;

}



.pulse-dot.red {

    width: 6px; height: 6px; background: #ef4444;

    border-radius: 50%;

    animation: pulse-red 2s infinite;

}



.year-tag {

    font-size: 0.8rem; font-weight: 800; color: #cbd5e1; letter-spacing: 2px;

}



.stat-content h3 {

    font-size: 1.8rem; color: #0f172a; margin: 0 0 8px 0; font-weight: 800;

}



.stat-content p {

    font-size: 0.95rem; color: #64748b; margin: 0 0 20px 0;

}



/* Rakamlar Satırı */

.stat-row {

    display: flex; align-items: center; gap: 20px;

}



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



.stat-num {

    font-size: 2rem; font-weight: 800; color: #00B5AD; line-height: 1;

}



.stat-sub {

    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: #94a3b8; margin-top: 4px;

}



.stat-divider-vertical {

    width: 1px; height: 40px; background: #cbd5e1;

}



/* --- SAĞ TARAF (3D SAHNE) --- */

.stat-visual {

    flex: 0 0 40%; /* Alanın %40'ı */

    display: flex;

    justify-content: center;

    align-items: center;

    perspective: 800px;

}



.stage-mockup {

    width: 160px; height: 120px;

    position: relative;

    transform: rotateX(25deg) rotateY(-15deg); /* Sahne açısı */

    transform-style: preserve-3d;

    transition: transform 0.4s ease;

}



.card-stat-wide:hover .stage-mockup {

    transform: rotateX(10deg) rotateY(0deg) scale(1.1); /* Hoverda düzleş */

}



/* Sahne Zemini */

.stage-floor {

    position: absolute; bottom: 0;

    width: 140px; height: 140px;

    background: radial-gradient(circle, #f8fafc 20%, #e2e8f0 70%);

    border-radius: 50%; /* Yuvarlak Sahne */

    border: 1px solid #cbd5e1;

    box-shadow: 0 20px 30px rgba(0,0,0,0.1);

    display: flex; align-items: center; justify-content: center;

    transform: rotateX(60deg); /* Zemini yatır */

}



/* Konuşmacı Kürsüsü (Merkez) */

.speaker-podium {

    width: 40px; height: 40px;

    background: #002855;

    border-radius: 50%;

    position: absolute; z-index: 10;

    transform: translateZ(20px); /* Havada dur */

    box-shadow: 0 10px 15px rgba(0, 40, 85, 0.4);

    display: flex; align-items: center; justify-content: center; color: #fff;

}

.speaker-podium .dashicons { font-size: 20px; transform: rotateX(-60deg); /* İkonu düzelt */ }



/* Ses Dalgaları */

.voice-waves {

    position: absolute; width: 100%; height: 100%;

    border: 2px solid rgba(0, 181, 173, 0.5); border-radius: 50%;

    animation: ping 2s infinite;

}



/* Katılımcı Halkaları */

.audience-ring {

    position: absolute; border-radius: 50%;

    border: 1px dashed #94a3b8;

    top: 50%; left: 50%; transform: translate(-50%, -50%);

}

.r1 { width: 80px; height: 80px; animation: spin-slow 20s linear infinite; }

.r2 { width: 120px; height: 120px; animation: spin-slow 30s linear infinite reverse; }



/* Katılımcı Noktaları */

.audience-dot {

    position: absolute; width: 8px; height: 8px; border-radius: 50%;

    transform: rotateX(-60deg); /* Noktaları dik tut */

    box-shadow: 0 5px 10px rgba(0,0,0,0.1);

}

.d1 { top: 20px; left: 50%; background: #f59e0b; animation: float 3s infinite; }

.d2 { bottom: 30px; right: 30px; background: #10b981; animation: float 4s infinite; }

.d3 { top: 50%; left: 10px; background: #6366f1; animation: float 3.5s infinite; }



/* Gölge */

.stage-shadow {

    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);

    width: 120px; height: 20px;

    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, transparent 70%);

    filter: blur(5px);

}



@keyframes pulse-red { 0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); } 70% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); } 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); } }

@keyframes ping { 75%, 100% { transform: scale(1.5); opacity: 0; } }

@keyframes spin-slow { 100% { transform: translate(-50%, -50%) rotate(360deg); } }



/* MOBİL UYUM */

@media (max-width: 768px) {

    .card-stat-wide {

        flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px; grid-column: span 1;

    }

    .stat-content { flex: auto; max-width: 100%; padding-right: 0; }

    .stat-badge-row, .stat-row { justify-content: center; }

    .stat-visual { flex: auto; width: 100%; }

}

/* --- SERTİFİKA KARTI (YAN YANA DÜZEN) --- */

.card-certificate {

    /* Grid içinde tüm satırı kaplaması için: */

    grid-column: 1 / -1; 

    

    /* Yan yana dizilim için Flex Row */

    display: flex;

    flex-direction: row; 

    align-items: center; 

    justify-content: space-between;

    

    background: linear-gradient(90deg, #f8fafc 0%, #e2e8f0 100%);

    padding: 0 50px; /* Kenar boşlukları */

    min-height: 200px;

    text-align: left; /* Metni sola yasla (önemli) */

    position: relative;

    overflow: hidden;

}



/* --- SOL TARA (METİN) --- */

.cert-content {

    flex: 0 0 70%; /* Genişliğin %70'ini kapla */

    max-width: 70%;

    z-index: 2;

    padding-right: 30px;

}



.cert-badges {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 12px;

    flex-wrap: wrap;

}



.cert-content h3 {

    font-size: 1.8rem;

    color: #002855;

    margin: 0 0 10px 0;

    font-weight: 800;

    line-height: 1.1;

}



.cert-content p {

    font-size: 1rem;

    color: #475569;

    margin: 0;

    line-height: 1.5;

}



/* Rozetler */

.verify-badge {

    display: inline-flex; align-items: center; gap: 6px;

    background: #dcfce7; color: #166534;

    padding: 5px 12px; border-radius: 20px;

    font-size: 0.6rem; font-weight: 700;

margin-bottom:3px;

    text-transform: uppercase; border: 1px solid #86efac;

}



.pulse-dot {

    width: 6px; height: 6px; background: #16a34a;

    border-radius: 50%;

    animation: pulse-green 2s infinite;

}



.meta-badges {

    display: flex; gap: 8px;

}

.meta-tag {

    background: #fff; border: 1px solid #cbd5e1;

    color: #64748b; font-size: 0.6rem; font-weight: 600;

    padding: 4px 10px; border-radius: 6px;

}



/* --- SAĞ TARAF (GÖRSEL) --- */

.cert-visual {

    flex: 0 0 30%; /* Genişliğin %30'unu kapla */

    max-width: 30%;

    display: flex;

    justify-content: center; /* Kendi alanında ortala */

    align-items: center;

    perspective: 800px;

}



/* 3D KAĞIT MOCKUP */

.paper-mockup {

    width: 160px;

    height: 110px;

    background: #fff;

    border: 1px solid #cbd5e1;

    border-radius: 4px;

    position: relative;

    /* Hafif sağa dönük duruş */

    transform: rotateY(-25deg) rotateX(10deg);

    transition: all 0.4s ease;

    box-shadow: -15px 15px 25px rgba(0, 40, 85, 0.1);

}



.card-certificate:hover .paper-mockup {

    transform: rotateY(0deg) scale(1.1);

    box-shadow: 0 20px 40px rgba(0, 40, 85, 0.15);

}



/* Kağıt Detayları (Aynı Kalıyor) */

.paper-header { height: 12px; background: #002855; margin-bottom: 8px; border-radius: 3px 3px 0 0; }

.paper-body { padding: 0 10px; }

.paper-lines { height: 5px; background: #e2e8f0; margin-bottom: 6px; border-radius: 2px; }

.paper-lines.long { width: 100%; }

.paper-lines.medium { width: 60%; }

.paper-lines.short { width: 40%; margin-top: 10px; }

.paper-row { display: flex; justify-content: space-between; }

.paper-qr { width: 35px; height: 35px; background: #000; border-radius: 2px; background-image: radial-gradient(#fff 30%, transparent 31%); background-size: 3px 3px; }

.paper-seal { position: absolute; bottom: 8px; right: 8px; color: #f59e0b; font-size: 18px; }

.check-floating { position: absolute; top: -10px; right: -10px; background: #10b981; color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); animation: bounce 3s infinite; }



@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); } 70% { box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); } 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); } }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }



/* --- MOBİL UYUMLULUK (Zorunlu) --- */

@media (max-width: 768px) {

    .card-certificate {

        flex-direction: column; /* Mobilde alt alta dön */

        text-align: center;

        padding: 30px 20px;

        gap: 20px;

    }

    .cert-content { flex: 0 0 100%; max-width: 100%; padding-right: 0; }

    .cert-badges { justify-content: center; }

    .cert-visual { flex: 0 0 100%; max-width: 100%; }

}



/* --- NETWORKING KARTI (TAM GENİŞLİK) --- */

.card-network-wide {

    grid-column: 1 / -1; /* Tam satır genişliği */

    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    

    /* Hafif Mor/Mavi Geçişli Arkaplan */

    background: linear-gradient(90deg, #f3e8ff 0%, #e0e7ff 100%);

    padding: 0 50px;

    min-height: 200px;

    text-align: left;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.5);

}



/* --- SOL TARA (İÇERİK) --- */

.net-content {

    flex: 0 0 70%;

    max-width: 70%;

    z-index: 2;

    padding-right: 30px;

}



.net-header-row {

    display: flex; align-items: center; gap: 15px; margin-bottom: 12px; flex-wrap: wrap;

}



.net-content h3 {

    font-size: 1.8rem;

    color: #1e1b4b; /* Koyu Lacivert/Mor */

    margin: 0 0 10px 0;

    font-weight: 800;

    line-height: 1.1;

}



.net-content p {

    font-size: 1rem;

    color: #4c1d95; /* Koyu Mor */

    margin: 0;

    line-height: 1.5;

    opacity: 0.8;

}



/* Rozetler */

.net-badge {

    display: inline-flex; align-items: center; gap: 6px;

    background: #ffedd5; color: #c2410c; /* Turuncu Tonlar */

    padding: 5px 12px; border-radius: 20px;

    font-size: 0.75rem; font-weight: 700;

    text-transform: uppercase; border: 1px solid #fed7aa;

}



.pulse-dot.orange {

    background: #f97316;

    animation: pulse-orange 2s infinite;

}



@keyframes pulse-orange {

    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }

    70% { box-shadow: 0 0 0 5px rgba(249, 115, 22, 0); }

    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }

}



/* --- SAĞ TARAF (3D GÖRSEL) --- */

.net-visual {

    flex: 0 0 30%;

    max-width: 30%;

    display: flex;

    justify-content: center;

    align-items: center;

    perspective: 800px;

}



/* NETWORK MOCKUP */

.network-mockup {

    width: 140px; height: 140px;

    position: relative;

    transform: rotateX(20deg) rotateY(-10deg);

    transform-style: preserve-3d;

    transition: transform 0.4s ease;

}



.card-network-wide:hover .network-mockup {

    transform: rotateX(0deg) rotateY(0deg) scale(1.1);

}



/* Merkez Profil */

.profile-node {

    width: 50px; height: 50px;

    border-radius: 50%;

    background: #fff;

    position: absolute;

    box-shadow: 0 10px 20px rgba(0,0,0,0.1);

    display: flex; align-items: center; justify-content: center;

    border: 3px solid #fff;

    z-index: 2;

}



.profile-node.center {

    top: 50%; left: 50%;

    transform: translate(-50%, -50%);

    background: linear-gradient(135deg, #6366f1, #8b5cf6);

    color: #fff;

    width: 60px; height: 60px;

    font-size: 24px;

}



/* Yörünge Halkası */

.orbit-ring {

    position: absolute; width: 140px; height: 140px;

    border: 1px dashed rgba(99, 102, 241, 0.3);

    border-radius: 50%;

    top: 50%; left: 50%;

    transform: translate(-50%, -50%);

    animation: spin-slow 20s linear infinite;

}



/* Çevre Profiller */

.profile-node.p1 { top: 0; left: 20px; background: #fbbf24; width: 30px; height: 30px; animation: float 3s infinite ease-in-out; }

.profile-node.p2 { bottom: 10px; left: 10px; background: #f472b6; width: 35px; height: 35px; animation: float 4s infinite ease-in-out; }

.profile-node.p3 { top: 40%; right: -20px; background: #34d399; width: 40px; height: 40px; animation: float 3.5s infinite ease-in-out; }



/* Bağlantı Çizgileri */

.connect-line {

    position: absolute; height: 2px; background: #cbd5e1;

    transform-origin: 0 50%; z-index: 0;

}

.l1 { top: 30px; left: 35px; width: 50px; transform: rotate(45deg); }

.l2 { top: 70px; left: 35px; width: 50px; transform: rotate(-45deg); }

.l3 { top: 50%; left: 50%; width: 50px; transform: rotate(10deg); }



/* Chat Balonu */

.chat-bubble {

    position: absolute; top: -25px; left: 10px;

    background: #fff; padding: 4px 8px; border-radius: 8px;

    font-size: 10px; font-weight: 700; color: #333;

    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    white-space: nowrap;

    animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;

    opacity: 0; animation-delay: 0.5s;

}

.card-network-wide:hover .chat-bubble { opacity: 1; transform: translateY(-5px); }



@keyframes spin-slow { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

@keyframes pop-in { 0% { opacity: 0; transform: scale(0.5); } 100% { opacity: 1; transform: scale(1); } }





/* --- MOBİL UYUMLULUK --- */

@media (max-width: 768px) {

    .card-network-wide {

        flex-direction: column; text-align: center;

        padding: 30px 20px; gap: 20px;

    }

    .net-content { flex: 0 0 100%; max-width: 100%; padding-right: 0; }

    .net-header-row { justify-content: center; }

    .net-visual { flex: 0 0 100%; max-width: 100%; margin-top: 20px; }

}

/* --- İSTATİSTİK GÖVDESİ --- */
.stat-body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around; /* Eşit aralıklı yerleşim */
    border-top: 1px solid rgba(255,255,255,0.1); /* Üstüne ince çizgi */
    border-bottom: 1px solid rgba(255,255,255,0.1); /* Altına ince çizgi */
}
.stat-header h4{
	font-size:25px;
	margin: 6px 0
}
/* --- TEKLİ İSTATİSTİK BLOĞU --- */
.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    /* Hafif yukarı kayma efekti için transition */
    transition: transform 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-3px); /* Hoverda hafif zıplama */
}

/* Rakam Stili (Büyük & Renkli) */
.s-num {
    font-size: 2rem; /* Oldukça büyük */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    
    /* Modern Gradient Metin Efekti */
    background: linear-gradient(135deg, #00B5AD 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Etiket Stili (Küçük & Gri) */
.s-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8; /* Hafif gri */
}

/* --- DİKEY AYIRICI ÇİZGİ (Horizontal yerine Vertical yapıyoruz) --- */
.stat-divider-hor {
    width: 1px;
    height: 50px; /* Yükseklik */
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
    margin: 0 10px;
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .stat-body {
        /* Mobilde de yan yana kalsın, sığıyor. Ama sıkışırsa: */
        gap: 15px;
    }
    .s-num { font-size: 2rem; }
    .s-label { font-size: 0.75rem; }
}


/*
 * Program */
        .program-container {
            max-width: 768px;
            margin: 0 auto;
            padding: 40px 0;
        }

        .program-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .program-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--header-bg);
            margin-bottom: 8px;
        }

        @media (min-width: 768px) {
            .program-header h2 {
                font-size: 2.5rem;
            }
        }

        .program-card {
            background: white;
            border-radius: 12px;
            margin: 16px 0;
            overflow: hidden;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }

        /* Tabs */
        .tabs {
            display: flex;
            border-bottom: 1px solid #e5e7eb;
            background: white;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
        }

        .tab-button {
            flex: 1;
            padding: 12px 16px;
            font-size: 0.875rem;
            font-weight: 600;
            background: #f9fafb;
            color: var(--header-bg);
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .tab-button {
                font-size: 1rem;
            }
        }

        .tab-button:hover {
            color: var(--header-bg);
        }

        .tab-button.active {
            color: var(--header-bg);
            border-bottom-color: var(--header-bg);
            background: white;
        }

        /* Event List */
        .event-list {
            list-style: none;
        }

        .event-item {
            display: flex;
            align-items: stretch;
            background: white;
            border-bottom: 1px solid #f3f4f6;
        }

        .event-item:last-child {
            border-bottom: none;
        }

        .event-time {
            width: 130px;
            min-width: 90px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 16px;
            padding-right: 16px;
			flex-shrink: 0;
        }

        .time-text {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--header-bg);
            letter-spacing: 0.05em;
			white-space: nowrap;
        }

        @media (min-width: 768px) {
            .time-text {
                font-size: 0.875rem;
            }
        }

        .event-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 16px 16px 16px 0;
        }

        .event-title-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .event-title {
            font-weight: 600;
            color: #111827;
            font-size: 0.875rem;
        }

        @media (min-width: 768px) {
            .event-title {
                font-size: 1rem;
            }
        }

        .event-title.break {
            color: #9ca3af;
        }

        .event-desc {
            font-size: 0.75rem;
            color: #4b5563;
            margin-top: 4px;
        }

        .sponsor-logos {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sponsor-logo-wrapper {
            width: 32px;
            height: 32px;
            position: relative;
        }

        .sponsor-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .ikram-label {
            font-size: 0.75rem;
            color: #6b7280;
            font-weight: 500;
        }

        .speakers-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-top: 4px;
        }

        .speaker-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .speaker-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid #e5e7eb;
            object-fit: cover;
        }

        .speaker-info {
            font-size: 0.75rem;
            color: #6b7280;
            font-weight: 500;
        }

        .speaker-title {
            margin-left: 4px;
            color: #9ca3af;
            font-weight: 400;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .no-events {
            padding: 48px 0;
            text-align: center;
            color: #6b7280;
            font-size: 0.875rem;
        }

        .sponsor-image-inline {
            display: inline-block;
            width: 80px;
            height: 30px;
            object-fit: contain;
            vertical-align: middle;
            margin: 0 4px;
        }




.location-section {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.loc-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-teal);
    background: rgba(0, 181, 173, 0.08);
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    width: fit-content;
}

.loc-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--header-bg);
    margin-bottom: 10px;
    line-height: 1.2;
}

.loc-desc {
    color: var(--text-grey);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.loc-details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.loc-icon {
    font-size: 1.4rem;
    background: #F8FAFC;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    flex-shrink: 0;
    line-height: 1;
}

.loc-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.loc-text-wrapper strong {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 700;
}

.loc-text-wrapper span {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.5;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--header-bg);
    color: var(--header-bg);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 0.95rem;
    line-height: 1;
}

.btn-primary-outline:hover {
    background: var(--header-bg);
    color: #fff;
}

.btn-primary-outline svg {
    transition: transform 0.2s;
}

.btn-primary-outline:hover svg {
    transform: translate(2px, -2px);
}

.loc-visual {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: #E2E8F0;
}

.loc-visual iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .location-card {
        grid-template-columns: 1fr;
    }
    .loc-visual {
        min-height: 300px;
        order: -1;
    }
    .loc-content { padding: 30px; }
}

.faq-section {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.faq-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.faq-header .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.faq-header .section-subtitle {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1rem;
}

.faq-contact-link {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.faq-contact-link:hover {
    border-bottom-color: var(--accent-teal);
    color: var(--header-bg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #E2E8F0;
}
.faq-item:first-child { border-top: 1px solid #E2E8F0; }

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-q {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: #94A3B8;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-btn:hover .faq-q {
    color: var(--header-bg);
}

.faq-btn.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-teal);
}

.faq-btn.active .faq-q {
    color: var(--header-bg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    margin: 0;
    padding-bottom: 24px;
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 90%;
}

@media (max-width: 900px) {
    .location-card, .faq-layout {
        grid-template-columns: 1fr;
    }
    
    .loc-content { padding: 30px; }
    
    .faq-layout { gap: 40px; }
    .faq-header { position: static; }
}

.site-footer {
    background-color: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 50px;
    gap: 60px;
}

.footer-brand-area {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--header-bg);
    letter-spacing: -0.5px;
    line-height: 1;
}

.footer-desc {
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.brand-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #F1F5F9;
    margin-top: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item svg { color: var(--accent-teal); }
.contact-item:hover { color: var(--header-bg); }

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
    width: 100%;
}

.newsletter-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-newsletter label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--header-bg);
    letter-spacing: -0.3px;
}

.newsletter-sub {
    font-size: 0.85rem;
    color: var(--text-grey);
    line-height: 1.4;
    margin: 0;
}

.input-group {
    display: flex;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-radius: 8px;
}

.footer-form input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: #fff;
    font-size: 0.95rem;
    outline: none;
    min-width: 0;
}

.footer-form input:focus { border-color: var(--accent-teal); z-index: 2; }

.footer-form button {
    padding: 0 20px;
    background: var(--header-bg);
    border: 1px solid var(--header-bg);
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-form button:hover {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #94A3B8;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.col-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links, .social-links { list-style: none; padding: 0; margin: 0; }
.footer-links li, .social-links li { margin-bottom: 10px; }

.footer-links a, .social-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover, .social-links a:hover { color: var(--accent-teal); }

.footer-bottom-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 25px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-logos:hover { opacity: 1; }

.footer-logos img {
    height: 36px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.footer-logos:hover img { filter: grayscale(0%); }

.logo-sep {
    color: #E2E8F0;
    font-size: 1.4rem;
    font-weight: 200;
}

.footer-credits {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.dev-team {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-icon {
    font-family: monospace;
    color: var(--accent-teal);
    font-weight: 800;
    background: rgba(0, 181, 173, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.app-version {
    font-family: monospace;
    font-size: 0.75rem;
    color: #94A3B8;
}

@media (max-width: 900px) {
    .footer-newsletter {
        display: none !important;
    }

    .footer-top {
        flex-direction: column;
        padding-bottom: 30px;
        margin-bottom: 30px;
        gap: 20px;
    }

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

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        margin-bottom: 30px;
    }

    .footer-bottom-strip {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .footer-logos {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        gap: 25px;
        padding: 0 5px 10px 5px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .footer-logos::-webkit-scrollbar { display: none; }

    .footer-logos img {
        height: 32px;
        flex-shrink: 0;
        scroll-snap-align: start;
        filter: grayscale(0%);
        opacity: 1;
    }

    .logo-sep { display: none; }

    .footer-credits {
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
}

.page-hero-modern {
    background-color: #F8FAFC;
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    border-left: 5px solid var(--accent-teal);
    padding-left: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--header-bg);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-decor-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px; 
    height: 100%;
    background-image: radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.page-content {
    padding: 60px 0 100px 0;
    background: #fff;
}

.content-wrapper {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-wrapper p { margin-bottom: 24px; }

.content-wrapper h2 { 
    font-size: 1.8rem; 
    color: var(--header-bg); 
    margin: 40px 0 20px 0; 
    font-weight: 700; 
}

.content-wrapper h3 {
    font-size: 1.4rem;
    color: var(--header-bg);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.content-wrapper ul, .content-wrapper ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.content-wrapper li { margin-bottom: 8px; }

@media (max-width: 900px) {
    .page-hero-modern {
        padding-top: 140px; 
        padding-bottom: 50px;
    }
    
    .hero-content {
        padding-left: 20px;
        border-left-width: 4px;
    }
    
    .hero-title { font-size: 2rem; }
    
    .page-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-top: 15px;
    max-width: 600px;
}

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

.info-card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--header-bg);
    margin-bottom: 8px;
    font-weight: 800;
}

.info-desc {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.email-main-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.email-main-link:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

.email-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 181, 173, 0.1);
    color: var(--accent-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-text {
    display: flex;
    flex-direction: column;
}

.email-text .label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 700;
}

.email-text .value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-divider {
    border: 0;
    border-top: 1px solid #E2E8F0;
    margin: 25px 0;
}

.social-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 5px;
    font-weight: 700;
}

.social-btn-horizontal {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-btn-horizontal:hover {
    border-color: var(--header-bg);
    transform: translateX(3px);
}

.btn-icon-box {
    width: 36px;
    height: 36px;
    background: #F1F5F9;
    color: var(--header-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid #E2E8F0;
    transition: background 0.2s;
}

.social-btn-horizontal:hover .btn-icon-box {
    background: var(--header-bg);
    color: #fff;
    border-color: var(--header-bg);
}

.btn-username {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.btn-arrow {
    font-size: 1.1rem;
    color: #CBD5E1;
    font-weight: 300;
    transition: color 0.2s;
}

.social-btn-horizontal:hover .btn-arrow {
    color: var(--accent-teal);
}

.form-wrapper {
    background: #fff;
}

.cf7-modern-layout { display: flex; flex-direction: column; }
.form-row { display: flex; gap: 20px; }
.form-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form-col.full { width: 100%; }

.form-col label { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea {
    width: 100%; padding: 14px 16px; background: #F8FAFC; 
    border: 1px solid #E2E8F0; border-radius: 8px; 
    font-size: 1rem; color: var(--text-dark); outline: none;
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
    background: #fff; border-color: var(--accent-teal); 
    box-shadow: 0 0 0 3px rgba(0, 181, 173, 0.1);
}
.wpcf7 textarea { height: 150px; resize: vertical; }

.wpcf7 input[type="submit"] {
    background: var(--header-bg); color: #fff; 
    padding: 16px 32px; border: none; border-radius: 8px; 
    font-weight: 700; cursor: pointer; transition: all 0.2s; width: 100%;
}
.wpcf7 input[type="submit"]:hover { background: var(--accent-teal); transform: translateY(-2px); }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; gap: 20px; }
    .contact-info-col { order: 2; }
    .contact-form-col { order: 1; }
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-cat {
    color: var(--accent-teal);
    background: rgba(0, 181, 173, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.meta-date {
    color: var(--text-grey);
}

.meta-sep {
    color: #CBD5E1;
}

.single-post-wrapper {
    max-width: 800px; 
    margin: 0 auto;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #E2E8F0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-wrapper blockquote {
    border-left: 4px solid var(--accent-teal);
    margin: 30px 0;
    padding: 10px 20px;
    background: #F8FAFC;
    color: var(--header-bg);
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 0 8px 8px 0;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tags-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.post-tags a {
    font-size: 0.8rem;
    color: var(--text-grey);
    background: #F1F5F9;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.post-tags a:hover {
    background: var(--header-bg);
    color: #fff;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation a {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #fff;
}

.post-navigation a:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

@media (max-width: 768px) {
    .post-navigation {
        flex-direction: column;
        text-align: center;
    }
    
    .post-navigation a {
        display: block;
    }
}

.error-page-wrapper {
    background-color: #F8FAFC;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 150px; 
    padding-bottom: 80px;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.error-number {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    color: var(--header-bg);
    opacity: 0.1;
    user-select: none;
    margin-bottom: -40px;
    position: relative;
    z-index: 0;
    letter-spacing: -5px;
}

.error-console {
    display: inline-block;
    background: #fff;
    border: 1px solid #E2E8F0;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.cmd-icon {
    color: var(--accent-teal);
    font-weight: 800;
    margin-right: 5px;
}

.cmd-highlight {
    color: #EF4444;
    font-weight: 600;
}

.error-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--header-bg);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.error-desc {
    font-size: 1.05rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-error-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--header-bg);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

.btn-error-home:hover {
    background-color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 181, 173, 0.2);
}

@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
        margin-bottom: -20px;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-page-wrapper {
        min-height: 60vh;
    }
}