/* ===================================
   Page Title Section
   =================================== */
.page-title-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(94, 207, 180, 0.15), transparent 50%);
    pointer-events: none;
}

.page-title-section--has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-title-section--has-image::before {
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(18, 58, 102, 0.72) 38%,
        rgba(27, 79, 140, 0.55) 100%
    );
}

.page-title-section .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--surface-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 30px;
    animation: logoFade 1.5s ease-in-out infinite;
}

.loader-logo img {
    max-height: 80px;
    width: auto;
    opacity: 1 !important;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinnerRotate 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: var(--primary-color);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--secondary-color);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--accent);
    opacity: 0.6;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===================================
   Global Styles
   =================================== */
:root {
    --primary: #1B4F8C;
    --primary-dark: #123A66;
    --accent: #5ECFB4;
    --accent-dark: #3FB89A;
    --dark: #0F172A;
    --surface: #FFFFFF;
    --surface-muted: #F4F7FB;
    --border: #E2E8F0;
    --text: #475569;
    --primary-color: var(--primary);
    --secondary-color: var(--accent);
    --dark-color: var(--dark);
    --light-color: var(--surface-muted);
    --white: var(--surface);
    --text-color: var(--text);
    --border-color: var(--border);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--surface);
}

h1, h2, h3, h4, h5, h6,
.btn,
.form-control,
.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 1rem auto 0;
}

.section-header.text-start .section-title::after,
.text-start .section-title::after {
    margin-left: 0;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background-color: var(--primary-dark);
    padding: 10px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
    margin-left: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: var(--transition);
}

.lang-switch__item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-switch__item.active {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(94, 207, 180, 0.25);
}

.lang-switch__item img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* ===================================
   Header
   =================================== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo img {
    max-height: 50px;
    width: auto;
    opacity: 1 !important;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

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

.nav-cta .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--surface-muted);
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B4F8C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   Slider Section
   =================================== */
.slider-section {
    padding: 0;
    position: relative;
    z-index: 1;
}

.carousel-inner,
.carousel-item {
    height: 85vh;
    min-height: 520px;
    max-height: 760px;
    border-radius: 0;
    overflow: hidden;
}

.slide-content {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.slide-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(18, 58, 102, 0.72) 38%,
        rgba(27, 79, 140, 0.35) 68%,
        rgba(27, 79, 140, 0.15) 100%
    );
    z-index: 0;
}

.slide-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(94, 207, 180, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.slide-content .container {
    height: 100%;
    position: relative;
    z-index: 1;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}

.slide-content .row {
    height: 100%;
}

.slide-caption {
    max-width: 640px;
    padding: 2.25rem 2.5rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.slide-logo {
    margin-bottom: 1.25rem;
}

.slide-logo img {
    max-height: 56px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.slide-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(94, 207, 180, 0.12);
    border: 1px solid rgba(94, 207, 180, 0.28);
}

.slide-title {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.slide-text {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
    max-width: 540px;
    line-height: 1.75;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 1.75rem;
    --slide-action-height: 48px;
}

.slide-actions .btn {
    padding: 0 28px;
    height: var(--slide-action-height);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 12px;
    min-width: 148px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slide-actions .btn-primary {
    box-shadow: 0 10px 28px rgba(94, 207, 180, 0.28);
}

.slide-actions .btn-outline-light {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--white);
    backdrop-filter: blur(6px);
}

.slide-actions .btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}

.slide-countdown {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    height: var(--slide-action-height);
    padding: 0 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 0;
}

.slide-countdown__label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.15;
    max-width: 4.25rem;
    flex-shrink: 0;
}

.slide-countdown__grid {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.slide-countdown__item {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.2rem;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
}

.slide-countdown__value {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.slide-countdown__unit {
    margin-top: 0;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.slide-countdown__sep {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    padding-bottom: 0;
}

.slide-countdown.is-finished .slide-countdown__grid {
    display: none;
}

.slide-countdown.is-finished {
    justify-content: center;
    padding: 0 1.25rem;
}

.slide-countdown.is-finished .slide-countdown__label {
    max-width: none;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 0.8rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 0 24px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.22);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.carousel-indicators {
    bottom: 28px;
    margin-bottom: 0;
    gap: 6px;
}

.carousel-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    margin: 0;
    border: none;
    opacity: 0.45;
    transition: var(--transition);
}

.carousel-indicators button.active {
    opacity: 1;
    width: 44px;
    background-color: var(--accent);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 207, 180, 0.35);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.badge.bg-primary {
    background-color: var(--primary) !important;
}

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

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

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    border-radius: 15px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-content {
    padding-left: 50px;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 58, 102, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================================
   Social Media Section
   =================================== */
.social-section {
    padding: 100px 0;
    background-color: var(--white);
}

.social-content {
    padding-right: 50px;
}

.instagram-grid {
    border-radius: 15px;
    overflow: hidden;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover::after {
    opacity: 1;
}

/* ===================================
   Catalog Section
   =================================== */
.catalog-section {
    padding: 100px 0;
    background: var(--surface-muted);
}

.catalog-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.catalog-image img {
    border-radius: 15px;
}

.catalog-content {
    padding-left: 50px;
}

.catalog-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.catalog-features li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 0;
    border-top: none;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    opacity: 1 !important;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-contact {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
}

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

.footer-contact__item i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 0.2rem;
    color: var(--accent);
    text-align: center;
}

.footer-contact__item a {
    color: rgba(255, 255, 255, 0.88);
    transition: var(--transition);
}

.footer-contact__item a:hover {
    color: var(--accent);
}

.footer-contact__item strong {
    display: block;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links a.active {
    font-weight: 600;
}

.footer-links a.footer-link--child {
    padding-left: 0.85rem;
    font-size: 0.92rem;
    opacity: 0.88;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--dark-color);
}

.newsletter-form .form-control::placeholder {
    color: rgba(85, 85, 85, 0.5);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social a:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 50px;
    padding: 25px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--text-color);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .slide-title {
        font-size: 1.85rem;
    }

    .slide-caption {
        padding: 1.75rem 1.5rem;
    }

    .slide-text {
        font-size: 0.95rem;
    }

    .about-content,
    .social-content,
    .catalog-content {
        padding-left: 0;
        margin-top: 30px;
    }

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

    .catalog-card {
        padding: 30px;
    }

    .tny-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tny-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tny-map-wrap,
    .tny-leaflet-map,
    .tny-leaflet-map.leaflet-container {
        min-height: 300px;
    }

    .tny-markets-tags {
        gap: 0.55rem;
    }
}

@media (max-width: 767px) {
    .tny-hero-section {
        padding: 72px 0;
    }

    .tny-hero-section--about-top {
        padding-top: 96px;
    }

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

    .tny-markets-section {
        padding: 72px 0;
    }

    .tny-markets-tags {
        padding-top: 1.5rem;
    }

    .tny-market-tag {
        padding: 0.55rem 0.85rem;
        font-size: 0.82rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .social-links {
        justify-content: flex-start;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .lang-switch {
        margin-left: 0;
    }

    .carousel-inner,
    .carousel-item {
        height: 420px;
        min-height: 420px;
    }

    .slide-caption {
        padding: 1.25rem 1rem;
        border-radius: 16px;
        text-align: center;
        margin: 0 auto;
    }

    .slide-eyebrow {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

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

    .slide-text {
        font-size: 0.9rem;
    }

    .slide-actions {
        justify-content: center;
        margin-top: 1.25rem;
        flex-direction: column;
        align-items: stretch;
    }

    .slide-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .slide-countdown {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .slide-countdown__label {
        max-width: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 44px;
        height: 44px;
        margin: 0 10px;
    }

    .carousel-indicators {
        bottom: 16px;
    }

    .category-title {
        font-size: 2.5rem;
    }

    .category-subtitle {
        font-size: 1.1rem;
    }

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

    .category-stats {
        gap: 20px;
    }

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

    .products-grid-section {
        padding: 60px 0;
    }

    .product-detail-section {
        padding: 60px 0;
    }

    .product-gallery {
        position: static;
        margin-bottom: 40px;
    }

    .product-info-detail {
        padding-left: 0;
    }

    .product-title-detail {
        font-size: 2rem;
    }

    .product-price-detail .price {
        font-size: 1.5rem;
    }

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

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

    .product-specs-section,
    .related-products-section {
        padding: 60px 0;
    }

    .specs-card {
        padding: 20px;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===================================
   Smooth Scroll
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Selection Style
   =================================== */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===================================
   About Hero Section
   =================================== */
.about-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.about-hero-image {
    position: relative;
}

.experience-badge-large {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge-large .experience-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge-large .experience-text {
    display: block;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===================================
   Story Section
   =================================== */
.story-section {
    padding: 100px 0;
    background-color: var(--white);
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Mission & Vision Section
   =================================== */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-icon,
.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* ===================================
   Values Section
   =================================== */
.values-section {
    padding: 100px 0;
    background-color: var(--white);
}

.value-card {
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ===================================
   Team Section
   =================================== */
.team-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.team-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   Breadcrumb Section
   =================================== */
.breadcrumb-section {
    padding: 40px 0;
    background-color: var(--light-color);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   Category Hero Section
   =================================== */
.category-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.category-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.category-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.category-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
}

.category-hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Products Grid Section
   =================================== */
.products-grid-section {
    padding: 100px 0;
    background-color: var(--white);
}

.product-features {
    margin: 1rem 0;
}

.feature-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* ===================================
   Product Detail Section
   =================================== */
.product-detail-section {
    padding: 80px 0;
    background-color: var(--white);
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.thumbnail {
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #ddd;
    height: 80px;
    object-fit: cover;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-info-detail {
    padding-left: 30px;
}

.product-category-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title-detail {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price-detail .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-rating {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
}

.rating-text {
    color: var(--text-color);
    font-size: 0.9rem;
}

.product-description {
    margin: 2rem 0;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.product-features h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.product-actions {
    margin-top: 3rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================
   Product Specs Section
   =================================== */
.product-specs-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.specs-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(161, 120, 95, 0.1);
}

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

.thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-product-image {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 400px;
    object-fit: cover;
}

.main-product-image:hover {
    opacity: 0.9;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(161, 120, 95, 0.1);
    transition: all 0.2s ease;
}

.spec-item:hover {
    background-color: rgba(161, 120, 95, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

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

.spec-label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   Related Products Section
   =================================== */
.related-products-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* ===================================
   Contact Information Section
   =================================== */
.contact-info-section {
    padding: 40px 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-form-section {
    padding: 40px 0;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-form-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form-card:hover::before {
    opacity: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(27, 79, 140, 0.15);
    outline: none;
}

.form-control:hover {
    border-color: #ced4da;
}

.btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 79, 140, 0.25);
    color: white;
}

.btn-modern i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title,
    .contact-form-title {
        font-size: 2rem;
    }

    .contact-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .form-control {
        padding: 0.625rem 0.875rem;
    }

    .btn-modern {
        padding: 0.75rem 1.5rem;
    }
}

/* ===================================
   Custom Dropdown Styles
   =================================== */
.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(27, 79, 140, 0.25);
}

.dropdown-item.active:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
}

/* ===================================
   Event Cards
   =================================== */
.events-section,
.events-grid-section {
    padding: 100px 0;
    background-color: var(--surface);
    position: relative;
    z-index: 2;
}

.event-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(94, 207, 180, 0.4);
}

.event-card .event-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-card .event-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 58, 102, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-card .event-body {
    padding: 1.5rem;
}

.event-card .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.event-card .event-meta i {
    color: var(--accent-dark);
}

.event-card .event-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event-card .event-title a {
    color: inherit;
}

.event-card .event-title a:hover {
    color: var(--primary-color);
}

.event-badge {
    display: inline-block;
    background-color: rgba(94, 207, 180, 0.15);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===================================
   Tenoya Hero / Stats Band
   =================================== */
.tny-hero-section--about-top {
    padding-top: 120px;
}

.tny-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 52%, #163d6b 100%);
    position: relative;
    overflow: hidden;
}

.tny-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(94, 207, 180, 0.18), transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.06), transparent 38%);
    pointer-events: none;
}

.tny-hero-section .container {
    position: relative;
    z-index: 1;
}

.tny-hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: end;
}

.tny-hero__content {
    max-width: 640px;
}

.tny-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.tny-eyebrow span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
    flex-shrink: 0;
}

.tny-hero__title {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
}

.tny-hero__title em {
    font-style: normal;
    color: var(--accent);
}

.tny-hero__text {
    margin: 0;
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.tny-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tny-stat {
    padding: 1.35rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tny-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(94, 207, 180, 0.35);
}

.tny-stat-n {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.tny-stat-l {
    margin-top: 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.tny-eyebrow--dark {
    color: rgba(27, 79, 140, 0.72);
}

.tny-eyebrow--dark span {
    background: var(--primary);
}

/* ===================================
   International Markets Network
   =================================== */
.tny-markets-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.tny-markets-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.tny-markets-title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
}

.tny-markets-map-block {
    width: 100%;
    margin-bottom: 0;
}

.tny-map-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 2 / 1;
    min-height: 340px;
    max-height: 480px;
    background: var(--surface-muted);
    border: 1px solid rgba(27, 79, 140, 0.1);
    box-shadow: 0 20px 48px rgba(18, 58, 102, 0.1);
}

.tny-map-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 450;
    background:
        linear-gradient(180deg, rgba(244, 247, 251, 0.35) 0%, transparent 28%, transparent 72%, rgba(244, 247, 251, 0.45) 100%),
        linear-gradient(90deg, rgba(27, 79, 140, 0.04) 0%, transparent 18%, transparent 82%, rgba(27, 79, 140, 0.04) 100%);
}

.tny-leaflet-map,
.tny-leaflet-map.leaflet-container {
    width: 100%;
    height: 100%;
    min-height: 340px;
    background: #dce8f4;
    font-family: var(--font-body);
    border-radius: 20px;
}

.tny-leaflet-map .leaflet-tile-pane {
    filter: saturate(0.92) brightness(1.03);
}

.tny-leaflet-map .leaflet-control-zoom {
    border: none;
    box-shadow: 0 8px 24px rgba(27, 79, 140, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.tny-leaflet-map .leaflet-control-zoom a {
    background: var(--white);
    color: var(--primary);
    border-color: rgba(27, 79, 140, 0.1);
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 1.05rem;
}

.tny-leaflet-map .leaflet-control-zoom a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tny-leaflet-map .leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.88);
    color: rgba(27, 79, 140, 0.55);
    font-size: 0.62rem;
    backdrop-filter: blur(6px);
}

.tny-leaflet-map .leaflet-control-attribution a {
    color: var(--primary);
}

.tny-leaflet-marker-wrap {
    background: transparent;
    border: none;
}

.tny-leaflet-marker {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
}

.tny-leaflet-marker .tny-map-marker__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.tny-leaflet-marker .tny-map-marker__pulse {
    left: 50%;
    top: 50%;
}

.tny-leaflet-marker.is-active .tny-map-marker__dot,
.tny-leaflet-marker:hover .tny-map-marker__dot {
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 0 0 8px rgba(27, 79, 140, 0.22), 0 0 18px rgba(27, 79, 140, 0.35);
}

.tny-map-marker__dot {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px rgba(27, 79, 140, 0.25), 0 4px 12px rgba(27, 79, 140, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tny-map-marker__pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border-radius: 50%;
    border: 1px solid rgba(27, 79, 140, 0.35);
    animation: tnyMarkerPulse 2.4s ease-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.tny-map-marker__label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(15, 39, 68, 0.92);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.tny-markets-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.tny-market-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.15rem;
    border-radius: 14px;
    border: 1px solid rgba(27, 79, 140, 0.1);
    background: var(--white);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: none;
    box-shadow: 0 4px 16px rgba(27, 79, 140, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.tny-market-tag__dot {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 79, 140, 0.15);
    transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.tny-market-tag__label {
    white-space: nowrap;
}

.tny-market-tag:hover,
.tny-market-tag.is-active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(27, 79, 140, 0.22);
}

.tny-market-tag:hover .tny-market-tag__dot,
.tny-market-tag.is-active .tny-market-tag__dot {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(94, 207, 180, 0.35);
    transform: scale(1.15);
}

@keyframes tnyMarkerPulse {
    0% {
        transform: scale(0.35);
        opacity: 0.85;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===================================
   About Page — Partners & Timeline
   =================================== */
.tny-sec {
    padding: 80px 0;
}

.tny-partners-section {
    background: var(--white);
}

.tny-timeline-section {
    background: var(--surface-muted);
}

.tny-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tny-head .bar {
    flex-shrink: 0;
    width: 4px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
}

.tny-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--primary-dark);
}

.tny-partners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.tny-partner {
    background: var(--white);
    border: 1px solid rgba(27, 79, 140, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 16px 40px rgba(18, 58, 102, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tny-timeline-section .tny-partner,
.tny-partners-section .tny-partner {
    background: var(--white);
}

.tny-partner:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(18, 58, 102, 0.12);
}

.tny-partner-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tny-av {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tny-pname {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.tny-prole {
    margin-top: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(27, 79, 140, 0.62);
}

.tny-pbio {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(18, 58, 102, 0.78);
}

.tny-tl-new {
    position: relative;
    padding-left: 0.35rem;
}

.tny-tl-new::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(27, 79, 140, 0.18) 0%, rgba(94, 207, 180, 0.35) 100%);
}

.tny-ti-new {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.tny-ti-new:last-child {
    margin-bottom: 0;
}

.tny-ti-dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 1.15rem;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px rgba(27, 79, 140, 0.12);
    position: relative;
    z-index: 1;
}

.tny-ti-dot.blue {
    background: var(--primary);
}

.tny-ti-dot.green {
    background: var(--accent);
    box-shadow: 0 0 0 2px rgba(94, 207, 180, 0.35);
}

.tny-ti-card {
    flex: 1;
    background: var(--white);
    border: 1px solid rgba(27, 79, 140, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 8px 24px rgba(18, 58, 102, 0.06);
}

.tny-ti-card.tenoya {
    border-color: rgba(94, 207, 180, 0.45);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.95) 100%);
    box-shadow: 0 12px 32px rgba(27, 79, 140, 0.1);
}

.tny-ti-year-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}

.tny-ti-year {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(27, 79, 140, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tny-ti-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(94, 207, 180, 0.18);
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.tny-ti-title {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.tny-ti-desc {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(18, 58, 102, 0.76);
}

.tny-ti-desc:last-child {
    margin-bottom: 0;
}

.tny-ti-subs {
    display: grid;
    gap: 0.55rem;
}

.tny-ti-sub {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(18, 58, 102, 0.72);
}

.tny-ti-sub-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

/* Events grid */
.tny-events-section {
    background: var(--white);
}

.tny-events {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.tny-ev {
    background: var(--white);
    border: 1px solid rgba(27, 79, 140, 0.1);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 12px 32px rgba(18, 58, 102, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tny-ev:hover {
    transform: translateY(-3px);
    border-color: rgba(94, 207, 180, 0.45);
    box-shadow: 0 18px 40px rgba(18, 58, 102, 0.1);
}

.tny-ev-loc {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(27, 79, 140, 0.55);
    margin-bottom: 0.55rem;
}

.tny-ev-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.tny-ev-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(18, 58, 102, 0.76);
    margin-bottom: 1rem;
}

.tny-ev-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: rgba(27, 79, 140, 0.08);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* Certificate block */
.tny-certificate-section {
    background: var(--surface-muted);
}

.tny-cert {
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    background: var(--white);
    border: 1px solid rgba(27, 79, 140, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 48px rgba(18, 58, 102, 0.08);
}

.tny-cert-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(27, 79, 140, 0.08);
    box-shadow: 0 8px 24px rgba(18, 58, 102, 0.1);
}

.tny-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(94, 207, 180, 0.15);
    margin-bottom: 1.25rem;
}

.tny-cert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(94, 207, 180, 0.25);
}

.tny-cert-badge-t {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-dark);
}

.tny-cert-title {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.tny-cert-desc {
    margin: 0 0 1.5rem;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(18, 58, 102, 0.78);
}

.tny-cert-rows {
    display: grid;
    gap: 0.85rem;
    border-top: 1px solid rgba(27, 79, 140, 0.08);
    padding-top: 1.25rem;
}

.tny-cert-row {
    display: grid;
    grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.tny-cert-rl {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(27, 79, 140, 0.55);
}

.tny-cert-rv {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .tny-partners {
        grid-template-columns: 1fr;
    }

    .tny-events {
        grid-template-columns: 1fr;
    }

    .tny-cert {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.5rem;
    }

    .tny-cert-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .tny-sec {
        padding: 64px 0;
    }
}

/* ===================================
   Service Cards
   =================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--surface-muted);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(94, 207, 180, 0.5);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   About Teaser
   =================================== */
.about-teaser-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-teaser-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-teaser-card::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: rgba(94, 207, 180, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.about-teaser-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-teaser-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

/* ===================================
   CTA Band
   =================================== */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(94, 207, 180, 0.15), transparent 55%);
    pointer-events: none;
}

.cta-band h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.cta-band p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-band .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.cta-band .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ===================================
   Filter Pills
   =================================== */
.filter-pills .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-pills .btn-outline-secondary {
    border-color: var(--border);
    color: var(--text-color);
}

.filter-pills .btn-outline-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--surface-muted);
}

/* ===================================
   Info Page Content
   =================================== */
.info-page-section {
    background-color: var(--surface);
}

.info-page-content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-color);
}

.info-page-content h1,
.info-page-content h2,
.info-page-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

.info-page-content a {
    color: var(--primary-color);
}

.info-page-content a:hover {
    color: var(--accent-dark);
}

.info-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.info-page-content img.img-left {
    float: left;
    margin: 0 1.25rem 1rem 0;
}

.info-page-content img.img-right {
    float: right;
    margin: 0 0 1rem 1.25rem;
}

.info-page-content img.img-center {
    display: block;
    margin: 1rem auto;
}

.info-page-content::after {
    content: '';
    display: table;
    clear: both;
}

/* ===================================
   Event Detail — Modern Layout
   =================================== */

/* Hero */
.evt-hero {
    position: relative;
    min-height: clamp(320px, 42vw, 480px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}

.evt-hero--gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1a6b8a 100%);
}

.evt-hero--image {
    background-image: var(--evt-hero-bg);
    background-size: cover;
    background-position: center;
}

.evt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 38, 68, 0.55) 0%,
        rgba(12, 38, 68, 0.72) 45%,
        rgba(12, 38, 68, 0.92) 100%
    );
    pointer-events: none;
}

.evt-hero--gradient .evt-hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(12, 38, 68, 0.2) 0%,
        rgba(12, 38, 68, 0.55) 100%
    );
}

.evt-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(94, 207, 180, 0.18), transparent 45%);
}

.evt-hero__inner {
    position: relative;
    z-index: 1;
    padding: 2rem 0 3rem;
    width: 100%;
}

.evt-breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem !important;
}

.evt-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
}

.evt-breadcrumb .breadcrumb-item a:hover {
    color: var(--accent);
}

.evt-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.evt-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(94, 207, 180, 0.2);
    border: 1px solid rgba(94, 207, 180, 0.45);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.evt-hero__title {
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    max-width: 900px;
}

.evt-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.evt-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}

.evt-meta-chip i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Main layout */
.evt-main {
    padding: 3rem 0 4rem;
    background: var(--surface-muted);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.evt-showcase {
    background: var(--white);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(18, 58, 102, 0.1);
    border: 1px solid rgba(27, 79, 140, 0.08);
}

.evt-showcase__frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--surface-muted);
}

.evt-showcase__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.evt-showcase__frame:hover img {
    transform: scale(1.03);
}

.evt-showcase__zoom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, background 0.2s ease;
}

.evt-showcase__zoom:hover {
    transform: scale(1.05);
    background: var(--white);
}

.evt-thumbs {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

.evt-thumb {
    flex-shrink: 0;
    width: 88px;
    height: 66px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

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

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

.evt-thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(94, 207, 180, 0.35);
}

/* Sidebar */
.evt-sidebar {
    position: sticky;
    top: 100px;
}

.evt-action-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 24px 60px rgba(18, 58, 102, 0.1);
    border: 1px solid rgba(27, 79, 140, 0.08);
}

.evt-action-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(27, 79, 140, 0.08);
}

.evt-facts {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.evt-fact {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.evt-fact__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 79, 140, 0.08) 0%, rgba(94, 207, 180, 0.15) 100%);
    color: var(--primary);
    font-size: 1rem;
}

.evt-fact__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(27, 79, 140, 0.55);
    margin-bottom: 0.15rem;
}

.evt-fact__value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.45;
}

.evt-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.evt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.evt-btn:hover {
    transform: translateY(-2px);
}

.evt-btn--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.evt-btn--light {
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    white-space: nowrap;
}

.evt-btn--light:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.evt-contact {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(27, 79, 140, 0.08);
}

.evt-contact__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(27, 79, 140, 0.55);
    margin-bottom: 0.35rem;
}

.evt-contact__name {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.15rem;
}

.evt-contact__email {
    font-size: 0.88rem;
    color: var(--primary);
    text-decoration: none;
}

.evt-contact__email:hover {
    color: var(--accent);
}

/* About */
.evt-about {
    padding: 4rem 0;
    background: var(--white);
}

.evt-section-head {
    margin-bottom: 2rem;
}

.evt-section-head--light h2 {
    color: var(--white);
}

.evt-section-head--light .bar {
    background: linear-gradient(180deg, var(--accent) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.evt-about__body {
    font-size: 1rem;
    line-height: 1.85;
}

/* Organization */
.evt-org {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.evt-org-card {
    height: 100%;
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(27, 79, 140, 0.08);
    box-shadow: 0 12px 32px rgba(18, 58, 102, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.evt-org-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(18, 58, 102, 0.1);
}

.evt-org-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.evt-org-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 0.75rem;
}

.evt-org-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(18, 58, 102, 0.78);
    margin: 0;
}

/* Stats */
.evt-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.evt-stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    height: 100%;
    transition: transform 0.25s ease, background 0.25s ease;
}

.evt-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.evt-stat-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.evt-stat-card__value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.evt-stat-card__label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.35rem;
}

/* Gallery grid */
.evt-gallery-section {
    padding: 4rem 0;
    background: var(--white);
}

.evt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.evt-gallery-item {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.evt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.evt-gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 79, 140, 0.55);
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.evt-gallery-item:hover img {
    transform: scale(1.08);
}

.evt-gallery-item:hover .evt-gallery-item__overlay {
    opacity: 1;
}

/* CTA band */
.evt-cta-band {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a6b8a 100%);
    position: relative;
    overflow: hidden;
}

.evt-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(94, 207, 180, 0.2), transparent 50%);
    pointer-events: none;
}

.evt-cta-band__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.evt-cta-band__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.evt-cta-band__text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    max-width: 520px;
}

/* Modal */
.evt-modal .modal-content {
    border-radius: 18px;
    border: none;
    box-shadow: 0 32px 80px rgba(18, 58, 102, 0.2);
}

.evt-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 0.65rem;
}

.evt-lightbox__img {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

/* Legacy aliases (kept for compatibility) */
.event-detail-section {
    padding: 80px 0;
    background-color: var(--white);
}

.event-contact-box {
    background: var(--surface-muted);
    border: 1px solid rgba(27, 79, 140, 0.08);
}

.stat-strip {
    padding: 60px 0;
    background-color: var(--surface-muted);
}

.stat-strip .stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-strip .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-strip .stat-card i {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.stat-strip .stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

.stat-strip .stat-card .stat-label {
    color: var(--text-color);
    font-size: 0.875rem;
}

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

.event-content-section.bg-muted {
    background-color: var(--surface-muted);
}

@media (max-width: 991px) {
    .evt-main {
        margin-top: 0;
        padding-top: 2rem;
    }

    .evt-sidebar {
        position: static;
    }

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

    .evt-cta-band__inner {
        flex-direction: column;
        text-align: center;
    }

    .evt-cta-band__text {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .evt-hero__inner {
        padding-bottom: 2rem;
    }

    .evt-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .evt-thumb {
        width: 72px;
        height: 54px;
    }
}