@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
:root {
 --color-primary: #c8a865;
 --color-primary-dark: #b8965a;
 --color-primary-light: #d4b775;
 --color-secondary: #2c3e50;
 --color-accent: #34495e;
 --color-success: #27ae60;
 --color-main-text: #1a1a1a;
 --color-secondary-text: #6c757d;
 --color-light: #f8f9fa;
 --color-white: #ffffff;
 --color-border: #e9ecef;
 --shadow-light: 0 2px 10px rgba(200,168,101,0.1);
 --shadow-medium: 0 5px 20px rgba(200,168,101,0.15);
 --shadow-heavy: 0 10px 40px rgba(200,168,101,0.2);
}
body {
 font-family: 'Inter',sans-serif;
 color: var(--color-main-text);
 background-color: var(--color-white);
 line-height: 1.6;
 margin: 0;
 padding: 0;
}
.hero-section:first-child,
section:first-of-type {
 margin-top: 0 !important;
 padding-top: 0 !important;
}
h1,h2,h3,h4,h5,h6 {
 font-family: 'Playfair Display',serif;
 color: var(--color-main-text);
 font-weight: 700;
 line-height: 1.3;
}
.section-title {
 font-size: clamp(2rem,4vw,2.8rem);
 font-weight: 700;
 margin-bottom: 1rem;
 position: relative;
 display: inline-block;
 color: var(--color-secondary);
}
.section-title::after {
 content: '';
 display: block;
 width: 80px;
 height: 4px;
 background: linear-gradient(90deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
 margin: 15px auto 0;
 border-radius: 2px;
}
.section-header {
 margin-bottom: 4rem;
 text-align: center;
}
.section-subtitle {
 font-size: 1.1rem;
 color: var(--color-secondary-text);
 margin-top: 1rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}
.btn {
 border-radius: 8px;
 font-weight: 600;
 font-size: 16px;
 padding: 12px 28px;
 transition: all 0.3s ease;
 border: 2px solid transparent;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-width: 160px;
}
.btn-corporate-primary {
 background: linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-dark) 100%);
 color: var(--color-white);
 border: 2px solid var(--color-primary);
 box-shadow: var(--shadow-medium);
}
.btn-corporate-primary:hover {
 background: linear-gradient(135deg,var(--color-primary-dark) 0%,var(--color-primary) 100%);
 transform: translateY(-2px);
 box-shadow: var(--shadow-heavy);
 color: var(--color-white);
}
.btn-corporate-secondary {
 background: transparent;
 color: var(--color-primary);
 border: 2px solid var(--color-primary);
}
.btn-corporate-secondary:hover {
 background: var(--color-primary);
 color: var(--color-white);
 transform: translateY(-2px);
 box-shadow: var(--shadow-medium);
}
.btn-outline-primary {
 border: 2px solid var(--color-primary);
 color: var(--color-primary);
 background: transparent;
}
.btn-outline-primary:hover {
 background: var(--color-primary);
 color: var(--color-white);
 transform: translateY(-2px);
 box-shadow: var(--shadow-medium);
}
.btn-link {
 color: var(--color-primary);
 font-weight: 600;
 text-decoration: none;
 transition: all 0.3s ease;
}
.btn-link:hover {
 color: var(--color-primary-dark);
 transform: translateX(5px);
}
.hero-section {
 position: relative;
 min-height: 100vh;
 padding: 0;
 margin: 0;
 display: flex;
 align-items: center;
 background: linear-gradient(135deg,
 #e9d3ab 0%,
 #f2e3c9 25%,
 #f8f1e6 50%,
 #fdf9f4 75%,
 #ffffff 100%);
 overflow: hidden;
}
.hero-section {
 margin-top: 0 !important;
 padding-top: 0 !important;
}
.hero-background-overlay {
 position: absolute;
 top: 0;
 right: 0;
 width: 50%;
 height: 100%;
 background: linear-gradient(135deg,
 rgba(233,211,171,0.15) 0%,
 rgba(233,211,171,0.25) 50%,
 rgba(233,211,171,0.1) 100%);
 z-index: 0;
}
.hero-content-left {
 padding: 4rem 1rem 4rem 4rem;
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: 100vh;
 z-index: 2;
 position: relative;
}
.hero-text-container {
 max-width: 650px;
 text-align: center;
}
.hero-badge {
 display: inline-flex;
 align-items: center;
 background: linear-gradient(135deg,#c8a865 0%,#d4b875 100%);
 color: var(--color-white);
 padding: 10px 24px;
 border-radius: 25px;
 font-size: 14px;
 font-weight: 600;
 margin-bottom: 2rem;
 box-shadow: 0 4px 15px rgba(233,211,171,0.3);
 animation: fadeInUp 0.8s ease-out;
}
.hero-main-title {
 font-size: clamp(2.8rem,6vw,4.5rem);
 font-weight: 800;
 color: #2c1810;
 margin-bottom: 1rem;
 line-height: 1.1;
 text-shadow: 0 2px 10px rgba(233,211,171,0.2);
 font-family: 'Playfair Display',serif;
 animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-subtitle-main {
 font-size: clamp(1.4rem,2.8vw,2rem);
 color: #8b6f3a;
 margin-bottom: 2rem;
 font-weight: 600;
 text-shadow: 0 1px 5px rgba(233,211,171,0.3);
 animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-description {
 font-size: clamp(1.1rem,1.8vw,1.3rem);
 color: #4a3625;
 margin-bottom: 2.5rem;
 line-height: 1.7;
 text-shadow: 0 1px 3px rgba(233,211,171,0.2);
 animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stats-mini {
 display: flex;
 gap: 2.5rem;
 margin-bottom: 3rem;
 padding: 2rem 0;
 border-top: 2px solid rgba(233,211,171,0.3);
 border-bottom: 2px solid rgba(233,211,171,0.3);
 justify-content: center;
 background: rgba(255,255,255,0.4);
 border-radius: 15px;
 backdrop-filter: blur(10px);
 box-shadow: 0 8px 25px rgba(233,211,171,0.15);
 animation: fadeInUp 0.8s ease-out 0.5s both;
}
.stat-mini {
 text-align: center;
 position: relative;
}
.stat-mini-number {
 display: block;
 font-size: clamp(2.2rem,3vw,2.8rem);
 font-weight: 800;
 color: #8b6f3a;
 font-family: 'Inter',sans-serif;
 text-shadow: 0 2px 10px rgba(233,211,171,0.3);
 margin-bottom: 0.5rem;
 animation: countUp 2s ease-out 1s both;
}
.stat-mini-label {
 font-size: 1rem;
 color: #4a3625;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.hero-actions-institutional {
 display: flex;
 gap: 1.5rem;
 flex-wrap: wrap;
 justify-content: center;
 animation: fadeInUp 0.8s ease-out 0.6s both;
}
.btn-corporate-primary {
 background: linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-dark) 100%);
 color: var(--color-white);
 border: 2px solid var(--color-primary);
 padding: 14px 32px;
 border-radius: 10px;
 font-weight: 600;
 font-size: 16px;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
 box-shadow: var(--shadow-medium);
 text-decoration: none;
 min-width: 200px;
 justify-content: center;
}
.btn-corporate-primary:hover {
 background: linear-gradient(135deg,var(--color-primary-dark) 0%,var(--color-primary) 100%);
 transform: translateY(-3px);
 box-shadow: var(--shadow-heavy);
 color: var(--color-white);
}
.btn-corporate-secondary {
 background: transparent;
 color: var(--color-primary);
 border: 2px solid var(--color-primary);
 padding: 14px 32px;
 border-radius: 10px;
 font-weight: 600;
 font-size: 16px;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
 text-decoration: none;
 min-width: 200px;
 justify-content: center;
}
.btn-corporate-secondary:hover {
 background: var(--color-primary);
 color: var(--color-white);
 transform: translateY(-3px);
 box-shadow: var(--shadow-medium);
}
@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
}
 to {
 opacity: 1;
 transform: translateY(0);
}
}
@keyframes countUp {
 from {
 opacity: 0;
 transform: scale(0.8);
}
 to {
 opacity: 1;
 transform: scale(1);
}
}
@keyframes float {
 0%,100% {
 transform: translateY(0px);
}
 50% {
 transform: translateY(-10px);
}
}
@media (max-width: 992px) {
 .hero-content-left {
 min-height: auto;
 padding: 3rem 2rem;
}
 .hero-section {
 min-height: 85vh;
}
 .hero-stats-mini {
 gap: 1.5rem;
 padding: 1.5rem 1rem;
}
}
@media (max-width: 768px) {
 .hero-content-left {
 padding: 2rem 1rem;
}
 .hero-actions-institutional {
 flex-direction: column;
 align-items: stretch;
 gap: 1rem;
}
 .hero-actions-institutional .btn {
 width: 100%;
 justify-content: center;
}
 .hero-stats-mini {
 flex-direction: column;
 gap: 1rem;
 text-align: center;
 padding: 1.5rem;
}
 .stat-mini {
 padding: 1rem;
 background: var(--color-light);
 border-radius: 10px;
}
}
@media (max-width: 576px) {
 .hero-content-left {
 padding: 1.5rem 1rem;
}
 .hero-text-container {
 max-width: 100%;
}
 .hero-stats-mini {
 margin-bottom: 2rem;
}
 .stat-mini-number {
 font-size: 2rem;
}
 .stat-mini-label {
 font-size: 0.9rem;
}
}
.quick-access-section {
 padding: 5rem 0;
 background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
 position: relative;
 overflow: hidden;
}
.quick-access-section::before {
 content: '';
 position: absolute;
 top: -50%;
 left: -10%;
 width: 40%;
 height: 200%;
 background: radial-gradient(ellipse at center, rgba(200, 168, 101, 0.06) 0%, transparent 70%);
 pointer-events: none;
 animation: floatBubble 20s ease-in-out infinite;
}
.quick-access-section::after {
 content: '';
 position: absolute;
 bottom: -50%;
 right: -10%;
 width: 40%;
 height: 200%;
 background: radial-gradient(ellipse at center, rgba(200, 168, 101, 0.06) 0%, transparent 70%);
 pointer-events: none;
 animation: floatBubble 25s ease-in-out infinite reverse;
}
@keyframes floatBubble {
 0%, 100% { transform: translateY(0) scale(1); }
 50% { transform: translateY(-30px) scale(1.05); }
}
.quick-access-section .section-badge {
 background: linear-gradient(135deg, rgba(200, 168, 101, 0.15) 0%, rgba(200, 168, 101, 0.08) 100%);
 color: var(--color-primary);
 padding: 8px 24px;
 border-radius: 25px;
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 border: 1.5px solid rgba(200, 168, 101, 0.25);
 box-shadow: 0 2px 8px rgba(200, 168, 101, 0.15);
 position: relative;
}
.quick-access-section .section-badge::before {
 content: '';
 position: absolute;
 top: -2px;
 left: -2px;
 right: -2px;
 bottom: -2px;
 background: linear-gradient(45deg, rgba(200, 168, 101, 0.3), transparent);
 border-radius: 25px;
 z-index: -1;
 opacity: 0;
 transition: opacity 0.3s ease;
}
.quick-access-section .section-badge:hover::before {
 opacity: 1;
}
.quick-access-section .section-title {
 font-weight: 700;
 margin-top: 1rem;
}
.quick-access-section .text-highlight {
 color: var(--color-primary);
 font-weight: 700;
 position: relative;
 display: inline-block;
}
.quick-access-section .text-highlight::after {
 content: '';
 position: absolute;
 bottom: -4px;
 left: 0;
 width: 100%;
 height: 3px;
 background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
 opacity: 0.3;
}
.quick-access-section .section-subtitle {
 color: #666;
 font-size: 1rem;
 font-weight: 400;
 margin-top: 0.75rem;
}
.quick-access-card {
 background: #ffffff;
 border-radius: 20px;
 padding: 2.5rem 2rem;
 text-decoration: none;
 display: block;
 transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 border: 2px solid #f0f0f0;
 height: 100%;
 min-height: 260px;
 box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
 overflow: hidden;
}
.quick-access-card::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -50%;
 width: 200%;
 height: 200%;
 background: radial-gradient(circle, rgba(200, 168, 101, 0.08) 0%, transparent 70%);
 opacity: 0;
 transition: all 0.6s ease;
 transform: scale(0);
}
.quick-access-card:hover::before {
 opacity: 1;
 transform: scale(1);
}
.quick-access-card::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 4px;
 background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
 transform: scaleX(0);
 transition: transform 0.4s ease;
 transform-origin: left;
}
.quick-access-card:hover::after {
 transform: scaleX(1);
}
.quick-access-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 12px 32px rgba(200, 168, 101, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
 border-color: rgba(200, 168, 101, 0.4);
}
.quick-access-icon {
 width: 64px;
 height: 64px;
 background: linear-gradient(135deg, rgba(200, 168, 101, 0.12) 0%, rgba(200, 168, 101, 0.06) 100%);
 border-radius: 16px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.5rem;
 transition: all 0.35s ease;
 position: relative;
 box-shadow: 0 4px 12px rgba(200, 168, 101, 0.1);
}
.quick-access-icon::before {
 content: '';
 position: absolute;
 inset: -2px;
 border-radius: 18px;
 padding: 2px;
 background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
 -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 -webkit-mask-composite: xor;
 mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 mask-composite: exclude;
 opacity: 0;
 transition: opacity 0.35s ease;
}
.quick-access-card:hover .quick-access-icon::before {
 opacity: 1;
}
.quick-access-icon i {
 font-size: 1.6rem;
 color: var(--color-primary);
 transition: all 0.35s ease;
}
.quick-access-card:hover .quick-access-icon {
 background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
 transform: scale(1.08) rotate(-5deg);
 box-shadow: 0 8px 20px rgba(200, 168, 101, 0.25);
}
.quick-access-card:hover .quick-access-icon i {
 color: #ffffff;
 transform: scale(1.1);
}
.quick-access-title {
 font-size: 1.35rem;
 font-weight: 700;
 color: #2c3e50;
 margin-bottom: 0.75rem;
 transition: all 0.3s ease;
 position: relative;
}
.quick-access-title::before {
 content: '';
 position: absolute;
 bottom: -8px;
 left: 0;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, var(--color-primary), transparent);
 transition: width 0.4s ease;
}
.quick-access-card:hover .quick-access-title {
 color: var(--color-primary);
}
.quick-access-card:hover .quick-access-title::before {
 width: 50px;
}
.quick-access-description {
 font-size: 0.95rem;
 color: #666;
 line-height: 1.7;
 margin-bottom: 0;
 font-weight: 400;
}
.quick-access-arrow {
 position: absolute;
 bottom: 1.75rem;
 right: 1.75rem;
 width: 36px;
 height: 36px;
 background: linear-gradient(135deg, rgba(200, 168, 101, 0.1) 0%, rgba(200, 168, 101, 0.15) 100%);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.35s ease;
 box-shadow: 0 2px 8px rgba(200, 168, 101, 0.1);
}
.quick-access-arrow i {
 font-size: 0.9rem;
 color: var(--color-primary);
 transition: all 0.35s ease;
}
.quick-access-card:hover .quick-access-arrow {
 background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
 transform: translateX(4px);
 box-shadow: 0 4px 12px rgba(200, 168, 101, 0.3);
}
.quick-access-card:hover .quick-access-arrow i {
 color: #ffffff;
 transform: translateX(2px);
}
.quick-access-card-locked {
 cursor: not-allowed;
 opacity: 0.7;
 background: #f8f8f8;
 position: relative;
}
.quick-access-card-locked::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: repeating-linear-gradient(
   45deg,
   transparent,
   transparent 15px,
   rgba(200, 168, 101, 0.02) 15px,
   rgba(200, 168, 101, 0.02) 30px
 );
 border-radius: 20px;
 pointer-events: none;
}
.quick-access-card-locked .quick-access-icon {
 background: linear-gradient(135deg, rgba(149, 165, 166, 0.12) 0%, rgba(149, 165, 166, 0.06) 100%);
 box-shadow: 0 4px 12px rgba(149, 165, 166, 0.1);
}
.quick-access-card-locked .quick-access-icon i {
 color: #95a5a6;
}
.quick-access-card-locked:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(149, 165, 166, 0.12);
 border-color: rgba(149, 165, 166, 0.3);
}
.quick-access-card-locked .quick-access-title {
 color: #95a5a6;
}
.quick-access-card-locked:hover .quick-access-title {
 color: #95a5a6;
}
.quick-access-card-locked .quick-access-description {
 color: #999;
}
.quick-access-card-locked .quick-access-arrow {
 background: linear-gradient(135deg, rgba(149, 165, 166, 0.1) 0%, rgba(149, 165, 166, 0.15) 100%);
}
.quick-access-card-locked .quick-access-arrow i {
 color: #95a5a6;
}
.quick-access-card-locked:hover .quick-access-arrow {
 transform: none;
}
.quick-access-lock-badge {
 position: absolute;
 top: 1.5rem;
 right: 1.5rem;
 width: 40px;
 height: 40px;
 background: linear-gradient(135deg, rgba(149, 165, 166, 0.15) 0%, rgba(149, 165, 166, 0.1) 100%);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 2px 8px rgba(149, 165, 166, 0.15);
 border: 1px solid rgba(149, 165, 166, 0.2);
}
.quick-access-lock-badge i {
 font-size: 1rem;
 color: #7f8c8d;
}
@media (max-width: 1024px) {
 .quick-access-section {
   padding: 4rem 0;
}
 .quick-access-card {
   min-height: 240px;
   padding: 2rem 1.75rem;
}
 .quick-access-icon {
   width: 60px;
   height: 60px;
}
 .quick-access-icon i {
   font-size: 1.5rem;
}
 .quick-access-title {
   font-size: 1.25rem;
}
}
@media (max-width: 768px) {
 .quick-access-section {
   padding: 3rem 0;
}
 .quick-access-card {
   min-height: 220px;
   padding: 2rem 1.5rem;
}
 .quick-access-icon {
   width: 56px;
   height: 56px;
}
 .quick-access-icon i {
   font-size: 1.4rem;
}
 .quick-access-title {
   font-size: 1.2rem;
}
 .quick-access-description {
   font-size: 0.9rem;
}
}
@media (max-width: 576px) {
 .quick-access-section {
   padding: 2.5rem 0;
}
 .quick-access-section .section-title {
   font-size: 1.85rem;
}
 .quick-access-section .section-subtitle {
   font-size: 0.95rem;
}
 .quick-access-card {
   min-height: auto;
   padding: 1.75rem 1.5rem;
}
 .quick-access-icon {
   width: 52px;
   height: 52px;
   margin-bottom: 1.2rem;
}
 .quick-access-icon i {
   font-size: 1.3rem;
}
 .quick-access-title {
   font-size: 1.1rem;
   margin-bottom: 0.7rem;
}
 .quick-access-description {
   font-size: 0.875rem;
   margin-bottom: 1rem;
}
 .quick-access-arrow {
   bottom: 1.5rem;
   right: 1.5rem;
   width: 32px;
   height: 32px;
}
 .quick-access-arrow i {
   font-size: 0.8rem;
}
 .quick-access-lock-badge {
   width: 36px;
   height: 36px;
   top: 1.25rem;
   right: 1.25rem;
}
 .quick-access-lock-badge i {
   font-size: 0.9rem;
}
}
.chairman-section {
 background-color: var(--color-light);
 padding: 3rem 0;
 margin-top: -1rem;
}
.chairman-section .section-header {
 margin-bottom: 2rem;
}
.chairman-card {
 background: var(--color-white);
 padding: 3rem;
 border-radius: 20px;
 box-shadow: var(--shadow-medium);
 border: 1px solid var(--color-border);
}
.chairman-photo-wrapper {
 position: relative;
 width: 250px;
 height: 250px;
 margin: 0 auto;
}
.chairman-photo {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 50%;
 border: 4px solid var(--color-primary);
 box-shadow: var(--shadow-medium);
}
.chairman-info {
 margin-top: 1rem;
}
.chairman-name {
 font-size: 1.8rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
 color: var(--color-secondary);
}
.chairman-badge {
 background: linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
 color: var(--color-white);
 padding: 8px 20px;
 border-radius: 25px;
 font-size: 0.9rem;
 font-weight: 600;
 display: inline-block;
 margin-bottom: 1.5rem;
}
.chairman-message {
 font-style: italic;
 font-size: 1.2rem;
 color: var(--color-secondary);
 border-left: 4px solid var(--color-primary);
 padding-left: 2rem;
 margin: 2rem 0;
 line-height: 1.7;
 position: relative;
}
.chairman-message::before {
 content: '"';
 font-size: 4rem;
 color: var(--color-primary);
 position: absolute;
 top: -1rem;
 left: -0.5rem;
 opacity: 0.3;
}
.chairman-signature {
 display: flex;
 align-items: center;
 gap: 1rem;
 margin: 2rem 0;
}
.signature-line {
 width: 100px;
 height: 2px;
 background: linear-gradient(90deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
}
.signature-text {
 margin: 0;
 color: var(--color-secondary-text);
}
.chairman-actions {
 display: flex;
 gap: 1rem;
 flex-wrap: wrap;
 margin-top: 2rem;
}
.activities-section {
 background-color: var(--color-white);
 padding: 5rem 0;
}
.activity-slider-container {
 overflow: hidden;
 position: relative;
}
.activity-slider {
 display: flex;
 overflow-x: auto;
 scroll-snap-type: x mandatory;
 -webkit-overflow-scrolling: touch;
 scroll-behavior: smooth;
 gap: 2rem;
 padding: 1rem 0;
 scrollbar-width: none;
 -ms-overflow-style: none;
}
.activity-slider::-webkit-scrollbar {
 display: none;
}
.activity-slide {
 flex: 0 0 auto;
 width: calc(33.333% - 1.5rem);
 scroll-snap-align: start;
}
.activity-card {
 background: var(--color-white);
 border-radius: 15px;
 overflow: hidden;
 box-shadow: var(--shadow-light);
 border: 1px solid var(--color-border);
 transition: all 0.3s ease;
 display: flex;
 flex-direction: column;
 height: 100%;
}
.activity-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-medium);
}
.activity-image-wrapper {
 position: relative;
 padding-top: 60%;
 overflow: hidden;
}
.activity-image {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.3s ease;
}
.activity-card:hover .activity-image {
 transform: scale(1.05);
}
.activity-date {
 position: absolute;
 top: 15px;
 right: 15px;
 background: var(--color-primary);
 color: var(--color-white);
 padding: 8px 12px;
 border-radius: 10px;
 text-align: center;
 font-weight: 600;
 box-shadow: var(--shadow-light);
}
.activity-content {
 padding: 1.5rem;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.activity-category {
 background: linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
 color: var(--color-white);
 padding: 6px 15px;
 border-radius: 20px;
 font-size: 0.8rem;
 font-weight: 600;
 display: inline-block;
 align-self: flex-start;
 margin-bottom: 1rem;
}
.activity-title {
 margin: 0 0 1rem 0;
 font-size: 1.3rem;
 font-weight: 600;
 line-height: 1.4;
 color: var(--color-secondary);
}
.activity-excerpt {
 color: var(--color-secondary-text);
 margin-bottom: 1.5rem;
 line-height: 1.6;
 flex-grow: 1;
}
.activity-link {
 margin-top: auto;
 color: var(--color-primary);
 text-decoration: none;
 font-weight: 600;
 display: flex;
 align-items: center;
 gap: 0.5rem;
 transition: all 0.3s ease;
}
.activity-link:hover {
 color: var(--color-primary-dark);
 transform: translateX(5px);
}
.stats-section {
 background: linear-gradient(135deg,
 var(--color-white) 0%,
 rgba(248,249,250,0.8) 50%,
 rgba(200,168,101,0.03) 100%);
 position: relative;
 padding: 5rem 0;
}
.stats-section .section-title {
 color: var(--color-secondary);
}
.stats-section .section-subtitle {
 color: var(--color-secondary-text);
}
.stats-section .section-title::after {
 background: linear-gradient(90deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
}
.stat-card {
 background: var(--color-white);
 border: 1px solid var(--color-border);
 padding: 3rem 2rem;
 border-radius: 20px;
 box-shadow: var(--shadow-medium);
 transition: all 0.3s ease;
 text-align: center;
 height: 100%;
}
.stat-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-heavy);
 background: linear-gradient(135deg,
 var(--color-white) 0%,
 rgba(200,168,101,0.02) 100%);
}
.stat-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 2rem;
 box-shadow: var(--shadow-light);
}
.stat-icon i {
 font-size: 2.5rem;
 color: var(--color-white);
}
.stat-number {
 font-size: 4rem;
 font-weight: 800;
 color: var(--color-primary);
 margin-bottom: 1rem;
 line-height: 1;
 font-family: 'Inter',sans-serif;
}
.stat-label {
 font-size: 1.2rem;
 color: var(--color-secondary);
 margin: 0;
 font-weight: 600;
}
.sponsors-section {
 background-color: var(--color-light);
 padding: 5rem 0;
}
.sponsors-slider-container {
 position: relative;
 overflow: hidden;
 --edge: 48px;
}
.sponsors-slider-container::before,
.sponsors-slider-container::after {
 content: "";
 position: absolute;
 top: 0;
 bottom: 0;
 width: var(--edge);
 pointer-events: none;
 z-index: 2;
 background: linear-gradient(to right,var(--color-light),transparent);
}
.sponsors-slider-container::after {
 right: 0;
 transform: scaleX(-1);
}
.sponsors-slider-container::before {
 left: 0;
}
.sponsors-slider {
 display: flex;
 align-items: center;
 gap: clamp(16px,2vw,32px);
 flex-wrap: nowrap;
 will-change: transform;
 animation: marquee var(--marquee-duration,40s) linear infinite;
 animation-play-state: paused;
}
.sponsor-slide {
 flex: 0 0 auto;
}
.sponsor-item {
 display: grid;
 place-items: center;
 padding: .75rem;
 text-align: center;
 background: var(--color-white);
 border-radius: 10px;
 box-shadow: var(--shadow-light);
 border: 1px solid var(--color-border);
 transition: all 0.3s ease;
 height: 120px;
 min-width: 160px;
}
.sponsor-item:hover {
 transform: translateY(-3px);
 box-shadow: var(--shadow-medium);
}
.sponsor-logo {
 height: 44px;
 width: auto;
 object-fit: contain;
 filter: grayscale(100%);
 opacity: .85;
 transition: filter .2s,opacity .2s;
 margin-bottom: 0.5rem;
}
.sponsor-item:hover .sponsor-logo {
 filter: none;
 opacity: 1;
}
.sponsor-placeholder {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1rem;
 transition: all 0.3s ease;
}
.sponsor-item:hover .sponsor-placeholder {
 transform: scale(1.1);
 box-shadow: var(--shadow-medium);
}
.sponsor-placeholder i {
 font-size: 1.5rem;
 color: var(--color-white);
}
.sponsor-name {
 font-weight: 600;
 color: var(--color-secondary);
 font-size: 0.9rem;
 margin-bottom: 0.5rem;
}
.sponsor-category {
 font-size: 0.8rem;
 color: var(--color-secondary-text);
 background: rgba(200,168,101,0.1);
 padding: 4px 10px;
 border-radius: 12px;
 display: inline-block;
}
@keyframes marquee {
 from {
 transform: translateX(0);
}
 to {
 transform: translateX(calc(-1 * var(--marquee-distance,0px)));
}
}
.sponsors-slider-container:hover .sponsors-slider,
.sponsors-slider-container:focus-within .sponsors-slider {
 animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
 .sponsors-slider {
 animation: none !important;
}
}
.partnership-cta {
 background: var(--color-white);
 padding: 3rem;
 border-radius: 20px;
 box-shadow: var(--shadow-light);
 border: 1px solid var(--color-border);
 max-width: 600px;
 margin: 0 auto;
}
.partnership-cta h4 {
 color: var(--color-secondary);
 margin-bottom: 1rem;
}
.partnership-cta p {
 margin-bottom: 2rem;
}
@media (max-width: 992px) {
 .hero-content-left,
 .hero-visual-right {
 min-height: auto;
 padding: 3rem 1.5rem;
}
 .hero-section {
 min-height: auto;
}
 .hero-stats-mini {
 gap: 1rem;
}
 .hero-gallery {
 width: 100%;
 height: 400px;
 margin-top: 2rem;
}
 .chairman-section {
 padding: 2.5rem 0;
 margin-top: -0.8rem;
}
 .chairman-card {
 padding: 2.5rem 2rem;
 border-radius: 18px;
}
 .chairman-photo-wrapper {
 width: 220px;
 height: 220px;
 margin: 0 auto 2rem;
}
 .chairman-name {
 font-size: 1.6rem;
}
 .chairman-message {
 font-size: 1.15rem;
 padding-left: 1.8rem;
}
 .chairman-actions {
 flex-wrap: wrap;
 gap: 1rem;
}
 .chairman-actions .btn {
 flex: 1;
 min-width: 200px;
}
}
@media (min-width: 769px) and (max-width: 992px) {
 .chairman-section {
 padding: 3rem 0;
 margin-top: -1rem;
}
 .chairman-card {
 padding: 2.8rem 2.2rem;
 border-radius: 16px;
}
 .chairman-photo-wrapper {
 width: 200px;
 height: 200px;
 margin: 0 auto 1.8rem;
}
 .chairman-info {
 margin-top: 1.2rem;
 text-align: center;
}
 .chairman-name {
 font-size: 1.6rem;
 margin-bottom: 0.8rem;
}
 .chairman-badge {
 font-size: 0.85rem;
 padding: 7px 18px;
}
 .chairman-content {
 padding-left: 1rem;
}
 .chairman-message {
 font-size: 1.1rem;
 padding-left: 1.6rem;
 margin: 1.8rem 0;
 line-height: 1.6;
}
 .chairman-message::before {
 font-size: 3.2rem;
 top: -0.9rem;
 left: -0.4rem;
}
 .chairman-signature {
 flex-direction: row;
 align-items: center;
 gap: 1rem;
 margin: 1.8rem 0;
}
 .signature-line {
 width: 80px;
}
 .chairman-actions {
 flex-direction: row;
 flex-wrap: wrap;
 gap: 1rem;
 margin-top: 1.8rem;
}
 .chairman-actions .btn {
 flex: 1;
 min-width: 180px;
 max-width: 220px;
 justify-content: center;
 text-align: center;
 padding: 0.75rem 1.2rem;
 font-size: 0.9rem;
}
 .chairman-card .row {
 align-items: flex-start;
}
 .chairman-card .col-12.col-md-4 {
 margin-bottom: 0;
 display: flex;
 flex-direction: column;
 align-items: center;
}
 .chairman-card .col-12.col-md-8 {
 margin-top: 0;
 padding-left: 2rem;
}
 .activities-section {
 padding: 3.5rem 0;
}
 .activities-section .section-header {
 margin-bottom: 2.5rem;
}
 .activities-section .section-title {
 font-size: 2rem;
}
 .activities-section .section-subtitle {
 font-size: 1rem;
 opacity: 0.85;
}
 .activity-slider {
 gap: 1.5rem;
 padding: 1rem 0.5rem;
}
 .activity-slide {
 width: calc(50% - 0.75rem);
 min-width: 320px;
 flex: 0 0 auto;
}
 .activity-card {
 border-radius: 12px;
 height: 100%;
}
 .activity-image-wrapper {
 padding-top: 55%;
}
 .activity-content {
 padding: 1.3rem;
}
 .activity-category {
 font-size: 0.75rem;
 padding: 5px 12px;
 margin-bottom: 0.8rem;
}
 .activity-title {
 font-size: 1.1rem;
 margin-bottom: 0.8rem;
 line-height: 1.3;
}
 .activity-excerpt {
 font-size: 0.9rem;
 margin-bottom: 1.2rem;
 line-height: 1.5;
}
 .activity-link {
 font-size: 0.9rem;
 gap: 0.4rem;
}
 .activity-date {
 padding: 6px 10px;
 font-size: 0.85rem;
 border-radius: 8px;
}
 .stats-section {
 padding: 3.5rem 0;
}
 .stats-section .section-header {
 margin-bottom: 2.5rem;
}
 .stats-section .section-title {
 font-size: 2rem;
}
 .stats-section .section-subtitle {
 font-size: 1rem;
 opacity: 0.85;
}
 .stat-card {
 padding: 2.5rem 1.8rem;
 border-radius: 16px;
 margin-bottom: 2rem;
}
 .stat-icon {
 width: 70px;
 height: 70px;
 margin: 0 auto 1.5rem;
}
 .stat-icon i {
 font-size: 2rem;
}
 .stat-number {
 font-size: 3.2rem;
 margin-bottom: 0.8rem;
}
 .stat-label {
 font-size: 1.1rem;
}
 .stats-section .row {
 justify-content: center;
}
 .stats-section .col-lg-4 {
 max-width: 45%;
 flex: 0 0 45%;
}
 .stats-section .col-lg-4:last-child {
 max-width: 45%;
 margin: 0 auto;
}
}
@media (max-width: 768px) {
 .hero-actions-institutional {
 flex-direction: column;
 align-items: stretch;
}
 .hero-actions-institutional .btn {
 width: 100%;
 justify-content: center;
}
 .chairman-section {
 padding: 2rem 0;
 margin-top: -0.5rem;
}
 .chairman-card {
 padding: 2rem 1rem;
 border-radius: 15px;
}
 .chairman-photo-wrapper {
 width: 180px;
 height: 180px;
 margin: 0 auto 1.5rem;
}
 .chairman-name {
 font-size: 1.5rem;
}
 .chairman-badge {
 font-size: 0.8rem;
 padding: 6px 16px;
}
 .chairman-message {
 font-size: 1.1rem;
 padding-left: 1.5rem;
 margin: 1.5rem 0;
}
 .chairman-message::before {
 font-size: 3rem;
 top: -0.8rem;
 left: -0.3rem;
}
 .chairman-signature {
 flex-direction: column;
 align-items: flex-start;
 gap: 0.5rem;
 margin: 1.5rem 0;
}
 .signature-line {
 width: 80px;
}
 .chairman-actions {
 flex-direction: column;
 gap: 0.8rem;
}
 .chairman-actions .btn {
 width: 100%;
 justify-content: center;
 text-align: center;
}
 .chairman-card .row {
 align-items: center;
}
 .chairman-card .col-12.col-md-4 {
 margin-bottom: 1.5rem;
 text-align: center;
}
 .chairman-card .col-12.col-md-8 {
 margin-top: 0;
 text-align: left;
}
 .stats-section {
 padding: 3rem 0;
}
 .stats-section .section-header {
 margin-bottom: 2rem;
 text-align: center;
}
 .stats-section .section-title {
 font-size: 1.8rem;
}
 .stats-section .section-subtitle {
 font-size: 0.95rem;
}
 .stat-card {
 padding: 2rem 1.5rem;
 border-radius: 12px;
 margin-bottom: 1.5rem;
}
 .stat-icon {
 width: 60px;
 height: 60px;
 margin: 0 auto 1.2rem;
}
 .stat-icon i {
 font-size: 1.8rem;
}
 .stat-number {
 font-size: 2.8rem;
 margin-bottom: 0.6rem;
}
 .stat-label {
 font-size: 1rem;
}
 .stats-section .col-lg-4,
 .stats-section .col-md-6 {
 max-width: 100%;
 flex: 0 0 100%;
}
 .activities-section {
 padding: 2.5rem 0;
}
 .activities-section .section-header {
 margin-bottom: 2rem;
 text-align: center;
}
 .activities-section .section-title {
 font-size: 1.8rem;
}
 .activities-section .section-subtitle {
 font-size: 0.95rem;
}
 .activity-slider {
 gap: 1.2rem;
 padding: 0.8rem 0.3rem;
}
 .activity-slide {
 width: 80%;
 min-width: 280px;
}
 .activity-card {
 border-radius: 10px;
}
 .activity-image-wrapper {
 padding-top: 50%;
}
 .activity-content {
 padding: 1.2rem;
}
 .activity-category {
 font-size: 0.7rem;
 padding: 4px 10px;
 margin-bottom: 0.8rem;
}
 .activity-title {
 font-size: 1rem;
 margin-bottom: 0.8rem;
}
 .activity-excerpt {
 font-size: 0.85rem;
 margin-bottom: 1rem;
}
 .activity-link {
 font-size: 0.85rem;
}
 .activity-date {
 padding: 5px 8px;
 font-size: 0.8rem;
 top: 10px;
 right: 10px;
}
 .activity-slide {
 width: 85%;
}
 .activity-slider {
 gap: 1rem;
}
 .sponsor-slide {
 width: calc(33.333% - 0.7rem);
 min-width: 180px;
}
 .sponsors-slider {
 gap: 0.8rem;
}
}
@media (max-width: 576px) {
 .hero-content-left {
 padding: 2rem 1rem;
}
 .hero-stats-mini {
 flex-direction: column;
 gap: 1rem;
 text-align: center;
}
 .stat-mini {
 padding: 1rem;
 background: var(--color-light);
 border-radius: 10px;
}
 .chairman-section {
 padding: 1.5rem 0;
 margin-top: 0;
}
 .chairman-section .section-header {
 margin-bottom: 1.5rem;
 text-align: center;
}
 .chairman-section .section-title {
 font-size: 1.8rem;
 margin-bottom: 0.5rem;
}
 .chairman-section .section-subtitle {
 font-size: 0.95rem;
 opacity: 0.8;
}
 .chairman-card {
 padding: 1.5rem 1rem;
 border-radius: 12px;
 margin: 0 0.5rem;
}
 .chairman-photo-wrapper {
 width: 150px;
 height: 150px;
 margin: 0 auto 1rem;
}
 .chairman-photo {
 border: 3px solid var(--color-primary);
}
 .chairman-info {
 margin-top: 0.8rem;
 text-align: center;
}
 .chairman-name {
 font-size: 1.3rem;
 margin-bottom: 0.8rem;
}
 .chairman-badge {
 font-size: 0.75rem;
 padding: 5px 12px;
 border-radius: 20px;
 margin-bottom: 1rem;
}
 .chairman-content {
 margin-top: 1.5rem;
}
 .chairman-message {
 font-size: 1rem;
 padding-left: 1rem;
 margin: 1.2rem 0;
 border-left: 3px solid var(--color-primary);
 line-height: 1.6;
}
 .chairman-message::before {
 font-size: 2.5rem;
 top: -0.6rem;
 left: -0.2rem;
 opacity: 0.2;
}
 .chairman-signature {
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 0.8rem;
 margin: 1.2rem 0;
}
 .signature-line {
 width: 60px;
 height: 1px;
}
 .signature-text {
 font-size: 0.9rem;
}
 .chairman-actions {
 flex-direction: column;
 gap: 0.8rem;
 margin-top: 1.5rem;
}
 .chairman-actions .btn {
 width: 100%;
 justify-content: center;
 text-align: center;
 padding: 0.8rem 1.5rem;
 font-size: 0.9rem;
}
 .chairman-actions .btn i {
 margin-right: 0.5rem !important;
 margin-left: 0 !important;
}
 .chairman-card .row {
 flex-direction: column;
 text-align: center;
}
 .chairman-card .col-12 {
 margin-bottom: 0;
}
 .chairman-card .col-12.col-md-4 {
 margin-bottom: 1.5rem;
 order: 1;
}
 .chairman-card .col-12.col-md-8 {
 order: 2;
 margin-top: 0;
}
 .activities-section {
 padding: 2rem 0;
}
 .activities-section .section-header {
 margin-bottom: 1.5rem;
 padding: 0 1rem;
}
 .activities-section .section-title {
 font-size: 1.6rem;
 margin-bottom: 0.5rem;
}
 .activities-section .section-subtitle {
 font-size: 0.9rem;
 opacity: 0.8;
}
 .activity-slider-container {
 padding: 0 0.5rem;
}
 .activity-slider {
 gap: 1rem;
 padding: 0.5rem 0;
}
 .activity-slide {
 width: 75%;
 min-width: 260px;
 flex: 0 0 auto;
}
 .activity-card {
 border-radius: 8px;
 height: auto;
}
 .activity-image-wrapper {
 padding-top: 45%;
}
 .activity-content {
 padding: 1rem;
}
 .activity-category {
 font-size: 0.65rem;
 padding: 3px 8px;
 margin-bottom: 0.6rem;
 border-radius: 15px;
}
 .activity-title {
 font-size: 0.95rem;
 margin-bottom: 0.6rem;
 line-height: 1.3;
}
 .activity-excerpt {
 font-size: 0.8rem;
 margin-bottom: 0.8rem;
 line-height: 1.4;
}
 .activity-link {
 font-size: 0.8rem;
 gap: 0.3rem;
}
 .activity-date {
 padding: 4px 6px;
 font-size: 0.7rem;
 top: 8px;
 right: 8px;
 border-radius: 6px;
}
 .activity-date span {
 display: block;
 line-height: 1;
 font-weight: 700;
}
 .activity-date small {
 font-size: 0.6rem;
 opacity: 0.8;
}
 .stats-section {
 padding: 2rem 0;
}
 .stats-section .section-header {
 margin-bottom: 1.5rem;
 padding: 0 1rem;
}
 .stats-section .section-title {
 font-size: 1.6rem;
 margin-bottom: 0.5rem;
}
 .stats-section .section-subtitle {
 font-size: 0.9rem;
 opacity: 0.8;
}
 .stat-card {
 padding: 1.5rem 1rem;
 border-radius: 8px;
 margin-bottom: 1rem;
}
 .stat-icon {
 width: 50px;
 height: 50px;
 margin: 0 auto 1rem;
}
 .stat-icon i {
 font-size: 1.5rem;
}
 .stat-number {
 font-size: 2.2rem;
 margin-bottom: 0.5rem;
 font-weight: 700;
}
 .stat-label {
 font-size: 0.9rem;
 line-height: 1.2;
}
 .stats-section .col-lg-4,
 .stats-section .col-md-6 {
 max-width: 100%;
 flex: 0 0 100%;
 padding: 0 1rem;
}
 .sponsor-slide {
 width: calc(50% - 0.4rem);
 min-width: 150px;
}
 .sponsors-slider {
 gap: 0.6rem;
}
}
@media (max-width: 480px) {
 .chairman-section {
 padding: 1rem 0;
}
 .chairman-section .section-title {
 font-size: 1.5rem;
}
 .chairman-section .section-subtitle {
 font-size: 0.9rem;
}
 .chairman-card {
 padding: 1rem 0.8rem;
 margin: 0 0.3rem;
 border-radius: 10px;
}
 .chairman-photo-wrapper {
 width: 120px;
 height: 120px;
 margin: 0 auto 0.8rem;
}
 .chairman-name {
 font-size: 1.1rem;
 margin-bottom: 0.5rem;
}
 .chairman-badge {
 font-size: 0.7rem;
 padding: 4px 10px;
 margin-bottom: 0.8rem;
}
 .chairman-message {
 font-size: 0.95rem;
 padding-left: 0.8rem;
 margin: 1rem 0;
 border-left: 2px solid var(--color-primary);
}
 .chairman-message::before {
 font-size: 2rem;
 top: -0.5rem;
 left: -0.1rem;
}
 .chairman-signature {
 margin: 1rem 0;
}
 .signature-line {
 width: 50px;
}
 .signature-text {
 font-size: 0.8rem;
}
 .chairman-actions .btn {
 padding: 0.7rem 1rem;
 font-size: 0.8rem;
}
 .chairman-card .row {
 flex-direction: column;
 text-align: center;
 margin: 0;
}
 .chairman-card .col-12 {
 padding: 0;
 margin-bottom: 0;
}
 .chairman-card .col-12.col-md-4 {
 margin-bottom: 1rem;
}
 .activities-section {
 padding: 1.5rem 0;
}
 .activities-section .section-header {
 margin-bottom: 1.2rem;
 padding: 0 0.5rem;
}
 .activities-section .section-title {
 font-size: 1.4rem;
 margin-bottom: 0.3rem;
}
 .activities-section .section-subtitle {
 font-size: 0.85rem;
 opacity: 0.7;
 line-height: 1.4;
}
 .activity-slider-container {
 padding: 0 0.3rem;
}
 .activity-slider {
 gap: 0.8rem;
 padding: 0.3rem 0;
}
 .activity-slide {
 width: 70%;
 min-width: 240px;
}
 .activity-card {
 border-radius: 6px;
}
 .activity-image-wrapper {
 padding-top: 40%;
}
 .activity-content {
 padding: 0.8rem;
}
 .activity-category {
 font-size: 0.6rem;
 padding: 2px 6px;
 margin-bottom: 0.5rem;
 border-radius: 12px;
}
 .activity-title {
 font-size: 0.85rem;
 margin-bottom: 0.5rem;
 line-height: 1.2;
}
 .activity-excerpt {
 font-size: 0.75rem;
 margin-bottom: 0.6rem;
 line-height: 1.3;
}
 .activity-link {
 font-size: 0.75rem;
 gap: 0.2rem;
}
 .activity-date {
 padding: 3px 5px;
 font-size: 0.65rem;
 top: 6px;
 right: 6px;
 border-radius: 4px;
}
 .activity-date span {
 font-size: 0.65rem;
}
 .activity-date small {
 font-size: 0.55rem;
}
 .stats-section {
 padding: 1.5rem 0;
}
 .stats-section .section-header {
 margin-bottom: 1.2rem;
 padding: 0 0.5rem;
}
 .stats-section .section-title {
 font-size: 1.4rem;
 margin-bottom: 0.3rem;
}
 .stats-section .section-subtitle {
 font-size: 0.85rem;
 opacity: 0.7;
 line-height: 1.4;
}
 .stat-card {
 padding: 1.2rem 0.8rem;
 border-radius: 6px;
 margin-bottom: 0.8rem;
}
 .stat-icon {
 width: 40px;
 height: 40px;
 margin: 0 auto 0.8rem;
}
 .stat-icon i {
 font-size: 1.2rem;
}
 .stat-number {
 font-size: 1.8rem;
 margin-bottom: 0.3rem;
 font-weight: 600;
}
 .stat-label {
 font-size: 0.8rem;
 line-height: 1.1;
}
 .stats-section .col-lg-4,
 .stats-section .col-md-6 {
 max-width: 100%;
 flex: 0 0 100%;
 padding: 0 0.5rem;
}
}
@media (min-width: 1200px) {
 .chairman-section {
 padding: 4rem 0;
}
 .chairman-card {
 padding: 4rem 3.5rem;
}
 .chairman-photo-wrapper {
 width: 280px;
 height: 280px;
}
 .chairman-name {
 font-size: 2rem;
}
 .chairman-message {
 font-size: 1.3rem;
 padding-left: 2.5rem;
}
 .chairman-message::before {
 font-size: 4.5rem;
 top: -1.2rem;
 left: -0.6rem;
}
 .activities-section {
 padding: 5rem 0;
}
 .activities-section .section-header {
 margin-bottom: 3rem;
}
 .activities-section .section-title {
 font-size: 2.5rem;
}
 .activities-section .section-subtitle {
 font-size: 1.1rem;
}
 .activity-slider {
 gap: 2.5rem;
 padding: 1.5rem 0;
}
 .activity-slide {
 width: calc(33.333% - 1.7rem);
 min-width: 350px;
}
 .activity-card {
 border-radius: 16px;
}
 .activity-image-wrapper {
 padding-top: 65%;
}
 .activity-content {
 padding: 2rem;
}
 .activity-category {
 font-size: 0.85rem;
 padding: 8px 18px;
 margin-bottom: 1.2rem;
}
 .activity-title {
 font-size: 1.4rem;
 margin-bottom: 1rem;
}
 .activity-excerpt {
 font-size: 1rem;
 margin-bottom: 1.5rem;
 line-height: 1.7;
}
 .activity-link {
 font-size: 1rem;
 gap: 0.6rem;
}
 .activity-date {
 padding: 10px 15px;
 font-size: 0.9rem;
 top: 20px;
 right: 20px;
 border-radius: 12px;
}
 .stats-section {
 padding: 5rem 0;
}
 .stats-section .section-header {
 margin-bottom: 3rem;
}
 .stats-section .section-title {
 font-size: 2.5rem;
}
 .stats-section .section-subtitle {
 font-size: 1.1rem;
}
 .stat-card {
 padding: 3.5rem 2.5rem;
 border-radius: 20px;
 margin-bottom: 0;
}
 .stat-icon {
 width: 90px;
 height: 90px;
 margin: 0 auto 2rem;
}
 .stat-icon i {
 font-size: 3rem;
}
 .stat-number {
 font-size: 4.5rem;
 margin-bottom: 1.2rem;
 font-weight: 800;
}
 .stat-label {
 font-size: 1.3rem;
}
 .stats-section .col-lg-4 {
 max-width: 33.333%;
 flex: 0 0 33.333%;
}
}
.fade-in-up {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 1s ease-out,transform 1s ease-out;
}
.fade-in-up.is-visible {
 opacity: 1;
 transform: translateY(0);
}
html {
 scroll-behavior: smooth;
}
.btn:focus,
.activity-link:focus,
.btn-link:focus {
 outline: 2px solid var(--color-primary);
 outline-offset: 2px;
}
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary.active {
 background: var(--color-primary) !important;
 color: var(--color-white) !important;
 border-color: var(--color-primary) !important;
 box-shadow: 0 0 0 0.25rem rgba(200,168,101,0.25) !important;
 transform: translateY(-2px);
}
.btn-link:active,
.btn-link:focus,
.btn-link:focus-visible {
 color: var(--color-primary-dark) !important;
 outline: 2px solid var(--color-primary) !important;
 outline-offset: 2px !important;
 box-shadow: none !important;
 background: none !important;
}
.btn:not(.btn-corporate-primary):not(.btn-corporate-secondary):focus {
 box-shadow: 0 0 0 0.25rem rgba(200,168,101,0.25) !important;
}
.btn:not(.btn-corporate-primary):not(.btn-corporate-secondary):active {
 background-color: var(--color-primary) !important;
 border-color: var(--color-primary) !important;
 color: var(--color-white) !important;
}
.hero-image {
 position: relative;
 margin: 0 auto;
 width: 100%;
 max-width: 600px;
 z-index: 3;
}
.hero-image-container {
 position: relative;
 display: block;
 max-width: 100%;
 margin: 0 auto;
 filter: contrast(1.1) saturate(1.15) brightness(1.05);
 transition: all 0.3s ease;
 transform: scale(1.05);
}
.hero-main-image {
 width: 100%;
 height: auto;
 border-radius: 20px;
 box-shadow: 0 25px 50px rgba(13,13,13,0.4),0 0 0 1px rgba(78,166,116,0.1);
}
.floating-card {
 position: absolute;
 background: rgba(255,255,255,0.95);
 backdrop-filter: blur(25px);
 padding: 24px;
 border-radius: 16px;
 box-shadow: 0 20px 40px rgba(13,13,13,0.15),0 0 0 1px rgba(78,166,116,0.1),0 0 20px rgba(78,166,116,0.05);
 min-width: 200px;
 animation: float 6s ease-in-out infinite;
 border: 1px solid rgba(78,166,116,0.2);
 z-index: 2;
 transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.card-1 {
 top: 8%;
 right: -35px;
 animation-delay: 0s;
}
.card-2 {
 bottom: 35%;
 left: -45px;
 animation-delay: 2s;
}
.card-3 {
 top: 55%;
 right: -55px;
 animation-delay: 4s;
}
@keyframes float {
 0%,100% {
 transform: translateY(0px);
}
 50% {
 transform: translateY(-10px);
}
}
.floating-card .card-label {
 display: block;
 font-size: 0.875rem;
 color: #6b7280;
 margin-bottom: 8px;
 font-weight: 500;
}
.floating-card .card-value {
 display: block;
 font-size: 1.25rem;
 font-weight: 700;
 color: #4ea676;
 margin-top: 8px;
}
.floating-card i {
 font-size: 1.5rem;
 margin-bottom: 12px;
 opacity: 0.8;
}
@media (min-width: 1367px) {
 .hero-image {
 max-width: 600px;
}
}
@media (min-width: 1200px) and (max-width: 1366px) {
 .hero-image {
 max-width: 550px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
 .hero-image {
 max-width: 500px;
}
 .floating-card {
 min-width: 180px;
 padding: 20px;
 font-size: 0.875rem;
}
 .card-1 {
 right: -30px;
}
 .card-2 {
 left: -35px;
}
 .card-3 {
 right: -45px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
 .hero-image {
 max-width: 400px;
}
 .floating-card {
 min-width: 160px;
 padding: 18px;
 font-size: 0.8rem;
}
 .card-1 {
 right: -25px;
}
 .card-2 {
 left: -30px;
}
 .card-3 {
 right: -35px;
}
}
@media (min-width: 481px) and (max-width: 767px) {
 .hero-image {
 max-width: 420px;
}
 .floating-card {
 display: none !important;
}
}
@media (max-width: 480px) {
 .hero-image {
 transform: scale(0.8);
}
 .floating-card {
 display: none !important;
}
}
.hero-modern {
 position: relative;
 overflow: hidden;
 background: linear-gradient(135deg,#fdfcf8 0%,#f9f6f0 15%,#f3ede3 30%,#ede6d6 45%,#e6dcc9 60%,#ddd1bb 75%,#d4c8ae 90%,#c8a865 100%);
}
.hero-modern .container {
 max-width: 1400px !important;
 padding-left: 2rem !important;
 padding-right: 2rem !important;
}
@media (min-width: 1200px) and (max-width: 1599px) {
 .hero-modern .col-lg-6 {
 padding-left: 2rem !important;
 padding-right: 2rem !important;
}
 .hero-modern .col-lg-6:first-child {
 padding-right: 2.5rem !important;
}
 .hero-modern .col-lg-6:last-child {
 padding-left: 2.5rem !important;
}
}
@media (min-width: 1600px) {
 .hero-modern .container {
 max-width: 1500px !important;
 padding-left: 3rem !important;
 padding-right: 3rem !important;
}
 .hero-modern .col-lg-6 {
 padding-left: 3.5rem !important;
 padding-right: 3.5rem !important;
}
 .hero-modern .col-lg-6:first-child {
 padding-right: 4rem !important;
}
 .hero-modern .col-lg-6:last-child {
 padding-left: 4rem !important;
}
}
@media (min-width: 992px) {
 .hero-modern {
 min-height: 100vh;
 display: flex;
 align-items: center;
}
 .hero-modern .row {
 min-height: 100vh;
 align-items: center;
}
 .hero-modern .col-lg-6 {
 padding-left: 2.5rem !important;
 padding-right: 2.5rem !important;
}
 .hero-modern .col-lg-6:first-child {
 padding-right: 3rem !important;
}
 .hero-modern .col-lg-6:last-child {
 padding-left: 3rem !important;
}
}
@media (max-width: 991px) {
 .hero-modern {
 min-height: auto !important;
 padding: 80px 0 60px !important;
}
 .hero-modern .row {
 min-height: auto !important;
 flex-direction: column;
 text-align: center;
}
 .hero-modern .col-lg-6:first-child {
 order: 1;
 text-align: center;
 margin-bottom: 40px;
 width: 100%;
 max-width: 100%;
}
 .hero-modern .col-lg-6:last-child {
 order: 2;
 width: 100%;
 max-width: 100%;
}
 .hero-content {
 text-align: center;
}
 .hero-actions {
 justify-content: center !important;
 flex-direction: row;
 flex-wrap: wrap;
}
 .hero-stats {
 justify-content: center !important;
 max-width: 400px;
 margin: 0 auto;
}
}
@media (max-width: 767px) {
 .hero-modern {
 padding: 60px 0 40px !important;
}
 .hero-title {
 font-size: 2rem !important;
 margin-bottom: 1rem;
 line-height: 1.2;
}
 .hero-subtitle {
 font-size: 1rem !important;
 margin-bottom: 1.5rem;
 line-height: 1.5;
}
 .hero-actions {
 flex-direction: column;
 align-items: center;
 gap: 0.75rem;
}
 .hero-actions .btn {
 width: 100%;
 max-width: 280px;
 padding: 12px 20px;
 text-align: center;
 justify-content: center;
}
 .hero-stats {
 display: grid !important;
 grid-template-columns: repeat(3,1fr) !important;
 gap: 0.75rem;
 margin-top: 2rem;
 max-width: 300px;
}
 .floating-card {
 display: none !important;
}
}
@media (max-width: 575px) {
 .hero-modern {
 padding: 40px 0 30px !important;
}
 .hero-modern .container {
 padding: 0 15px;
}
 .hero-title {
 font-size: 1.7rem !important;
 line-height: 1.2;
}
 .hero-subtitle {
 font-size: 0.95rem !important;
 line-height: 1.5;
}
 .hero-actions .btn {
 max-width: 260px;
 padding: 11px 18px;
 font-size: 0.9rem;
}
}
@media (max-width: 479px) {
 .hero-modern {
 padding: 30px 0 25px !important;
}
 .hero-title {
 font-size: 1.5rem !important;
}
 .hero-subtitle {
 font-size: 0.875rem !important;
}
 .hero-actions .btn {
 max-width: 240px;
 padding: 10px 16px;
 font-size: 0.85rem;
}
 .hero-image {
 max-width: 250px !important;
}
}
.hero-image-container {
 position: relative;
 width: 100%;
 max-width: 100%;
 margin: 0 auto;
}
.hero-main-image {
 width: 100%;
 height: auto;
 max-width: 100%;
 border-radius: 20px;
 box-shadow: 0 15px 35px rgba(0,0,0,0.15);
 object-fit: cover;
 display: block;
}
.btn-hero-primary,
.btn-hero-secondary {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 12px 24px;
 border-radius: 8px;
 font-weight: 600;
 text-decoration: none;
 transition: all 0.3s ease;
 border: none;
 cursor: pointer;
}
.btn-hero-primary {
 background: linear-gradient(135deg,#c8a865 0%,#b8965a 100%);
 color: white;
}
.btn-hero-secondary {
 background: linear-gradient(135deg,#b8965a 0%,#a88650 100%);
 color: white;
}
@media (max-width: 767px) {
 .btn-hero-primary,
 .btn-hero-secondary {
 justify-content: center;
 width: 100%;
 max-width: 280px;
}
}
@media (max-width: 575px) {
 .btn-hero-primary,
 .btn-hero-secondary {
 max-width: 260px;
 padding: 11px 18px;
 font-size: 0.9rem;
}
}
.hero-title {
 font-size: clamp(1.6rem,4vw,3.5rem);
 line-height: 1.1;
 margin-bottom: 1.5rem;
 font-weight: 700;
 color: #2d3748;
}
.hero-subtitle {
 font-size: clamp(0.9rem,2.5vw,1.3rem);
 line-height: 1.6;
 margin-bottom: 2rem;
 color: #2d3748;
 max-width: 90%;
}
.stat-number {
 font-size: clamp(1.25rem,3vw,2.5rem);
 font-weight: 800;
 color: #2d3748;
 display: block;
 margin-bottom: 0.25rem;
}
.stat-label {
 font-size: clamp(0.7rem,1.5vw,0.875rem);
 color: #2d3748;
 opacity: 0.8;
 text-transform: uppercase;
 letter-spacing: 1px;
 font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
 * {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
}
}
@media (max-width: 575px) {
 .container {
 padding-left: 15px;
 padding-right: 15px;
}
}
@media (max-width: 320px) {
 .hero-modern {
 padding: 20px 0 15px !important;
}
 .hero-title {
 font-size: 1.3rem !important;
}
 .hero-subtitle {
 font-size: 0.8rem !important;
}
 .hero-actions .btn {
 max-width: 220px;
 padding: 9px 14px;
 font-size: 0.8rem;
}
 .hero-image {
 max-width: 220px !important;
}
}
.hero-modern,
.hero-modern * {
 box-sizing: border-box;
}
body {
 overflow-x: hidden;
}

/* ==============================================
   PREMIUM SPLIT HERO DESIGN
   ============================================== */

.hero-split {
 position: relative;
 width: 100%;
 min-height: 100vh;
 display: flex;
 flex-direction: column;
 margin: 0;
 padding: 0;
 overflow: hidden;
}

/* Üst Kısım - Görsel Bölümü */
.hero-image-section {
 position: relative;
 width: 100%;
 height: 50vh;
 min-height: 400px;
 max-height: 600px;
 overflow: hidden;
}

.hero-image-wrapper {
 position: relative;
 width: 100%;
 height: 100%;
}

.hero-main-img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 display: block;
 transform: scale(1.05);
 filter: brightness(0.75) contrast(1.05) saturate(1.1);
}

.hero-gradient-overlay {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(
   to bottom,
   /* 1. Parça (0-20%): Tamamen şeffaf */
   transparent 0%,
   transparent 20%,
   
   /* 2. Parça (20-40%): Tamamen şeffaf */
   transparent 20%,
   transparent 40%,
   
   /* 3. Parça (40-60%): Tamamen şeffaf */
   transparent 40%,
   transparent 60%,
   
   /* 4. Parça (60-80%): Gradient başlangıcı - Alttan 2. parça */
   rgba(42, 30, 38, 0.05) 60%,
   rgba(42, 30, 38, 0.15) 65%,
   rgba(42, 30, 38, 0.30) 70%,
   rgba(42, 30, 38, 0.50) 75%,
   rgba(42, 30, 38, 0.70) 80%,
   
   /* 5. Parça (80-100%): Tam uyumlu geçiş - En alt parça */
   rgba(42, 30, 38, 0.85) 85%,
   rgba(42, 30, 38, 0.95) 92%,
   #2a1e26 100%
 );
 z-index: 2;
}

/* Alt Kısım - İçerik Bölümü */
.hero-content-section {
 position: relative;
 width: 100%;
 flex: 1;
 background: linear-gradient(
   to bottom,
   #2a1e26 0%,
   #3d2b35 20%,
   #4d3543 40%,
   #5a4050 60%,
   #4d3543 80%,
   #3d2b35 100%
 );
 padding: 1.5rem 0 2rem;
 display: flex;
 align-items: center;
 min-height: auto;
}

.hero-content-wrapper {
 text-align: center;
 animation: fadeInUp 1s ease-out;
}

.hero-badge-wrap {
 margin-bottom: 0.75rem;
 animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge-premium {
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
 background: rgba(200, 168, 101, 0.15);
 backdrop-filter: blur(8px);
 border: 1.5px solid rgba(200, 168, 101, 0.35);
 color: var(--color-primary-light);
 padding: 6px 16px;
 border-radius: 50px;
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.8px;
 text-transform: uppercase;
 box-shadow: 0 3px 15px rgba(200, 168, 101, 0.2);
 transition: all 0.3s ease;
}

.hero-badge-premium:hover {
 background: rgba(200, 168, 101, 0.22);
 transform: translateY(-2px);
 box-shadow: 0 5px 20px rgba(200, 168, 101, 0.25);
}

.hero-title-main {
 font-size: clamp(1.75rem, 4.5vw, 3rem);
 font-weight: 800;
 color: #ffffff;
 margin-bottom: 0.75rem;
 line-height: 1.15;
 letter-spacing: -0.5px;
 text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
 animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-divider {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 1rem;
 margin-bottom: 0.75rem;
 animation: fadeInUp 1s ease-out 0.4s both;
}

.divider-line {
 flex: 0 0 50px;
 height: 1.5px;
 background: linear-gradient(
   90deg,
   transparent 0%,
   var(--color-primary) 50%,
   transparent 100%
 );
 border-radius: 2px;
}

.divider-text {
 font-size: clamp(0.95rem, 1.8vw, 1.35rem);
 font-weight: 600;
 color: var(--color-primary-light);
 text-transform: uppercase;
 letter-spacing: 1.2px;
 white-space: nowrap;
 text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-description-text {
 font-size: clamp(0.9rem, 1.2vw, 1rem);
 color: rgba(255, 255, 255, 0.88);
 line-height: 1.5;
 margin-bottom: 1.25rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
 animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta-buttons {
 display: flex;
 gap: 0.85rem;
 justify-content: center;
 flex-wrap: wrap;
 animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-cta {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 11px 26px;
 font-size: 0.925rem;
 font-weight: 600;
 border-radius: 50px;
 text-decoration: none;
 transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 overflow: hidden;
 letter-spacing: 0.3px;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-hero-cta::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 0;
 height: 0;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.15);
 transform: translate(-50%, -50%);
 transition: width 0.5s ease, height 0.5s ease;
}

.btn-hero-cta:hover::before {
 width: 350px;
 height: 350px;
}

.btn-hero-cta .btn-icon {
 position: relative;
 z-index: 1;
 font-size: 1.05rem;
 transition: transform 0.3s ease;
}

.btn-hero-cta .btn-label {
 position: relative;
 z-index: 1;
}

.btn-hero-cta:hover .btn-icon {
 transform: scale(1.1) rotate(3deg);
}

.btn-primary-cta {
 background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
 color: #ffffff;
 border: 1.5px solid var(--color-primary);
}

.btn-primary-cta:hover {
 transform: translateY(-3px);
 box-shadow: 0 10px 28px rgba(200, 168, 101, 0.45);
 color: #ffffff;
}

.btn-secondary-cta {
 background: rgba(255, 255, 255, 0.08);
 backdrop-filter: blur(8px);
 color: #ffffff;
 border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary-cta:hover {
 background: rgba(255, 255, 255, 0.15);
 border-color: rgba(255, 255, 255, 0.4);
 transform: translateY(-3px);
 box-shadow: 0 10px 28px rgba(255, 255, 255, 0.18);
 color: #ffffff;
}

/* Animasyonlar */
@keyframes fadeInUp {
 from {
   opacity: 0;
   transform: translateY(40px);
 }
 to {
   opacity: 1;
   transform: translateY(0);
 }
}

/* Responsive Design */
@media (max-width: 1200px) {
 .hero-image-section {
   height: 32vh;
   min-height: 260px;
   max-height: 350px;
 }
 
 .hero-content-section {
   padding: 1.75rem 0 2rem;
 }
}

@media (max-width: 992px) {
 .hero-image-section {
   height: 30vh;
   min-height: 240px;
   max-height: 320px;
 }
 
 .hero-content-section {
   padding: 1.5rem 0 2rem;
 }
 
 .divider-line {
   flex: 0 0 50px;
 }
}

@media (max-width: 768px) {
 .hero-split {
   min-height: auto;
 }
 
 .hero-image-section {
   height: 28vh;
   min-height: 220px;
   max-height: 280px;
 }
 
 .hero-content-section {
   padding: 1.5rem 1rem 1.75rem;
 }
 
 .hero-badge-premium {
   padding: 7px 18px;
   font-size: 0.75rem;
 }
 
 .hero-title-main {
   margin-bottom: 0.75rem;
 }
 
 .hero-divider {
   gap: 0.75rem;
   margin-bottom: 0.75rem;
 }
 
 .divider-line {
   flex: 0 0 35px;
   height: 2px;
 }
 
 .divider-text {
   font-size: clamp(0.95rem, 2.5vw, 1.3rem);
   letter-spacing: 1px;
 }
 
 .hero-description-text {
   font-size: 0.9rem;
   margin-bottom: 1.25rem;
   padding: 0 1rem;
   line-height: 1.5;
 }
 
 .hero-cta-buttons {
   flex-direction: column;
   gap: 0.85rem;
   padding: 0 1rem;
 }
 
 .btn-hero-cta {
   width: 100%;
   max-width: 360px;
   justify-content: center;
   padding: 12px 28px;
   font-size: 0.95rem;
 }
}

@media (max-width: 576px) {
 .hero-image-section {
   height: 25vh;
   min-height: 200px;
   max-height: 250px;
 }
 
 .hero-content-section {
   padding: 1.25rem 0.75rem 1.5rem;
 }
 
 .hero-badge-premium {
   padding: 6px 16px;
   font-size: 0.7rem;
 }
 
 .hero-title-main {
   font-size: clamp(1.6rem, 7vw, 2.5rem);
   letter-spacing: -0.5px;
 }
 
 .hero-divider {
   gap: 0.5rem;
   margin-bottom: 0.75rem;
 }
 
 .divider-line {
   flex: 0 0 25px;
 }
 
 .hero-description-text {
   font-size: 0.85rem;
   line-height: 1.5;
   margin-bottom: 1rem;
 }
 
 .btn-hero-cta {
   padding: 11px 24px;
   font-size: 0.9rem;
 }
}

@media (max-width: 380px) {
 .hero-image-section {
   height: 22vh;
   min-height: 180px;
   max-height: 220px;
 }
 
 .hero-content-section {
   padding: 1rem 0.5rem 1.25rem;
 }
 
 .hero-title-main {
   font-size: 1.5rem;
 }
 
 .divider-text {
   font-size: 0.85rem;
 }
 
 .btn-hero-cta {
   padding: 10px 20px;
   font-size: 0.85rem;
 }
}

@media (prefers-reduced-motion: reduce) {
 .hero-split *,
 .hero-content-wrapper {
   animation: none !important;
   transition: none !important;
 }
}

/* ============================================
   Hakkımızda Section Styles
   ============================================ */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200, 168, 101, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Başlık Merkezi */
.about-section .section-header {
  margin-bottom: 3rem;
}

.about-section .section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(200, 168, 101, 0.1) 0%, rgba(200, 168, 101, 0.2) 100%);
  color: var(--color-primary);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
}

.about-section .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.3;
  margin-bottom: 0;
}

.about-section .text-highlight {
  color: var(--color-primary);
  position: relative;
}

/* Video Wrapper */
.about-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
}

.about-video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Video.js responsive container */
.about-video-wrapper .video-js {
  width: 100% !important;
  height: auto !important;
  border-radius: 20px;
  overflow: hidden;
}

/* İçerik Bölümü */
.about-content {
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.about-text-wrapper {
  width: 100%;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-secondary-text);
  margin-bottom: 0;
}

.about-description.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-main-text);
}

/* Highlight Items */
.about-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-secondary-text);
  transition: all 0.3s ease;
}

.highlight-item i {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.highlight-item:hover i {
  transform: scale(1.2);
}




/* Responsive Styles */

/* Tablet Landscape (768px - 992px) - Video üstte, içerik altta */
@media (min-width: 768px) and (max-width: 991px) {
  .about-section .row.align-items-center {
    flex-direction: column;
  }
  
  .about-section .col-md-6 {
    width: 100%;
    max-width: 100%;
  }
  
  /* Video bölümü üstte */
  .about-section .col-md-6:first-child {
    order: 1;
    margin-bottom: 2rem;
  }
  
  /* İçerik bölümü altta */
  .about-section .col-md-6:last-child {
    order: 2;
  }
  
  .about-video-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-text-wrapper {
    text-align: center;
  }
}

/* Tablet ve altı (max-width: 991px) */
@media (max-width: 991px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-section .section-header {
    margin-bottom: 2.5rem;
  }
  
  .about-content {
    padding: 2rem 0 0;
  }
  
  .about-highlights {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-section .section-header {
    margin-bottom: 2rem;
  }
  
  .about-section .section-title {
    font-size: 1.8rem;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  /* Mobilde de video üstte, içerik altta */
  .about-section .row.align-items-center {
    flex-direction: column;
  }
  
  .about-section .col-12.col-md-6 {
    width: 100%;
  }
  
  .about-section .col-12.col-md-6:first-child {
    order: 1;
    margin-bottom: 1.5rem;
  }
  
  .about-section .col-12.col-md-6:last-child {
    order: 2;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-text-wrapper {
    text-align: center;
  }
  
  .highlight-item {
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 2.5rem 0;
  }
  
  .about-section .section-header {
    margin-bottom: 1.5rem;
  }
  
  .about-section .section-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }
  
  .about-section .section-title {
    font-size: 1.6rem;
  }
  
  .about-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .about-video-wrapper {
    border-radius: 15px;
  }
  
  .about-video-wrapper .video-js {
    border-radius: 15px;
  }
  
  .about-highlights {
    margin-top: 1.25rem;
  }
  
  .highlight-item {
    font-size: 0.9rem;
  }
  
  .highlight-item i {
    font-size: 1rem;
  }
}

/* Activity Card Badge Responsive Fix */
@media (max-width: 480px) {
  .activity-image-wrapper {
    position: relative;
  }
  
  .activity-category {
    max-width: calc(50% - 10px);
    font-size: 0.65rem;
    padding: 4px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .activity-date {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .activity-category {
    font-size: 0.6rem;
    padding: 3px 6px;
    max-width: 45%;
  }
  
  .activity-date {
    font-size: 0.7rem;
    padding: 3px 5px;
  }
}



