/* ====================================
   BanaTrust - Premium Website Styles
   ==================================== */

/* ====================================
   Reset & Base Styles
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #1a4d7d;
    --primary-dark: #0f3558;
    --primary-light: #2563a0;
    --secondary-color: #c9a961;
    --secondary-dark: #b08a3e;
    --accent-color: #d4af37;
    
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   Typography
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

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

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

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

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

.btn-full {
    width: 100%;
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-text {
    font-family: var(--font-display);
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition-base);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f3558 0%, #1a4d7d 50%, #2563a0 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(217, 175, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.hero-title-sub {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-white), transparent);
}

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

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

/* ====================================
   Stats Section
   ==================================== */
.stats {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    opacity: 0.9;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: var(--font-display);
}

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

/* ====================================
   Section Headers
   ==================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

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

/* ====================================
   Global Network Section
   ==================================== */
.global-network {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #000000 0%, #0a1929 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.global-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.map-container {
    position: relative;
    margin-top: 60px;
}

/* High-Resolution Earth Map Wrapper */
.earth-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(201, 169, 97, 0.1) inset;
}

/* Base Earth Image */
.earth-base-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark Overlay for Better Contrast */
.earth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Zoom Focus Animation */
.zoom-focus {
    position: absolute;
    left: 53.5%;
    top: 33.5%;
    width: 300px;
    height: 300px;
    border: 4px solid rgba(255, 215, 0, 0);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
    animation: zoomInAnimation 12s ease-in-out infinite;
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
}

@keyframes zoomInAnimation {
    0%, 10% {
        width: 300px;
        height: 300px;
        opacity: 0;
        border-width: 4px;
        border-color: rgba(201, 169, 97, 0);
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    15% {
        width: 300px;
        height: 300px;
        opacity: 0.6;
        border-width: 4px;
        border-color: rgba(201, 169, 97, 0.8);
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
    }
    20%, 25% {
        width: 150px;
        height: 150px;
        opacity: 0.9;
        border-width: 3px;
        border-color: rgba(255, 215, 0, 0.9);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
    30%, 35% {
        width: 70px;
        height: 70px;
        opacity: 1;
        border-width: 4px;
        border-color: rgba(255, 215, 0, 1);
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.8);
    }
    40%, 85% {
        width: 70px;
        height: 70px;
        opacity: 0.5;
        border-width: 2px;
        border-color: rgba(255, 215, 0, 0.5);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }
    90%, 100% {
        width: 70px;
        height: 70px;
        opacity: 0;
        border-width: 1px;
        border-color: rgba(255, 215, 0, 0);
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* City Lights Layer */
.city-lights-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.city-light {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #ffd700 0%, rgba(255, 215, 0, 0.5) 50%, rgba(255, 215, 0, 0) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cityPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px #ffd700,
                0 0 30px rgba(255, 215, 0, 0.6),
                0 0 45px rgba(255, 215, 0, 0.3);
}

.city-light:nth-child(2n) {
    animation-delay: 0.5s;
    animation-duration: 2.5s;
}

.city-light:nth-child(3n) {
    animation-delay: 1s;
    animation-duration: 2.2s;
}

.city-light:nth-child(4n) {
    animation-delay: 0.7s;
    animation-duration: 2.8s;
}

@keyframes cityPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px #ffd700,
                    0 0 30px rgba(255, 215, 0, 0.6),
                    0 0 45px rgba(255, 215, 0, 0.3);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
        box-shadow: 0 0 25px #ffd700,
                    0 0 50px rgba(255, 215, 0, 0.8),
                    0 0 75px rgba(255, 215, 0, 0.5);
    }
}

/* Connection SVG Overlay */
.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.connection-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawConnection 12s ease-in-out infinite;
    stroke-width: 0.5;
}

@keyframes drawConnection {
    0%, 30% {
        stroke-dashoffset: 1000;
        opacity: 0;
        stroke-width: 0.5;
    }
    35% {
        stroke-dashoffset: 1000;
        opacity: 1;
        stroke-width: 0.5;
    }
    45%, 85% {
        stroke-dashoffset: 0;
        opacity: 1;
        stroke-width: 0.8;
    }
    90%, 100% {
        stroke-dashoffset: 0;
        opacity: 0;
        stroke-width: 0.5;
    }
}

.path-particle {
    filter: drop-shadow(0 0 10px #ffd700) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

/* Office Markers */
.office-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.marker-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: markerPulse 3s ease-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

@keyframes markerPulse {
    0% {
        width: 40px;
        height: 40px;
        opacity: 1;
        border-width: 3px;
    }
    50% {
        width: 70px;
        height: 70px;
        opacity: 0.5;
        border-width: 2px;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        border-width: 1px;
    }
}

.marker-dot {
    position: relative;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffd700 0%, #c9a961 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px #ffd700,
                0 0 40px rgba(255, 215, 0, 0.7),
                0 0 60px rgba(201, 169, 97, 0.5),
                inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: markerGlow 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes markerGlow {
    0%, 100% {
        box-shadow: 0 0 20px #ffd700,
                    0 0 40px rgba(255, 215, 0, 0.7),
                    0 0 60px rgba(201, 169, 97, 0.5),
                    inset 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px #ffd700,
                    0 0 60px rgba(255, 215, 0, 0.9),
                    0 0 90px rgba(201, 169, 97, 0.7),
                    inset 0 0 15px rgba(255, 255, 255, 0.7);
        transform: scale(1.2);
    }
}

.marker-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1),
                 0 0 15px rgba(255, 215, 0, 0.8),
                 0 4px 20px rgba(0, 0, 0, 0.9);
    font-family: var(--font-primary);
    z-index: 10;
    letter-spacing: 0.5px;
}

.dusseldorf-marker .marker-dot {
    width: 26px;
    height: 26px;
    box-shadow: 0 0 25px #ffd700,
                0 0 50px rgba(255, 215, 0, 0.8),
                0 0 75px rgba(201, 169, 97, 0.6),
                inset 0 0 12px rgba(255, 255, 255, 0.6);
}

.tokyo-marker .marker-label {
    top: auto;
    bottom: -35px;
}

.global-network .section-subtitle {
    color: #c9a961;
}

.global-network .section-title {
    color: #ffffff;
}

.global-network .section-description {
    color: #b0b0b0;
}

.network-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.network-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.network-card:hover::before {
    transform: scaleX(1);
}

.network-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.network-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(26, 77, 125, 0.3);
}

.network-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.network-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}
}

@media (max-width: 768px) {
    .world-map {
        height: 400px;
    }
    
    .network-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .location-marker text {
        font-size: 14px;
    }
}

/* ====================================
   Services Section
   ==================================== */
.services {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: var(--text-white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

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

.service-card.featured .service-features li {
    color: var(--text-white);
}

.service-features i {
    color: var(--secondary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-card.featured .service-link {
    color: var(--text-white);
}

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

/* ====================================
   Speakers Section
   ==================================== */
.speakers {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (min-width: 768px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.speaker-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.speaker-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: var(--bg-white);
}

.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-base);
}

.speaker-card:hover .speaker-photo {
    transform: scale(1.05);
}

.speaker-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 5rem;
    opacity: 0.5;
}

.speaker-info {
    padding: 30px;
}

.speaker-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.speaker-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.speaker-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ====================================
   Our Strengths Section
   ==================================== */
.our-strengths {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Comparison Table */
.comparison-section {
    margin: 60px 0;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 600px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table .feature-col {
    text-align: left;
    width: 35%;
}

.comparison-table .banatrust-col {
    width: 32.5%;
    background: rgba(255, 255, 255, 0.1);
}

.comparison-table .others-col {
    width: 32.5%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

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

.comparison-table td {
    padding: 25px 20px;
    text-align: center;
    color: var(--text-body);
    line-height: 1.6;
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.feature-name i {
    color: var(--primary-color);
    margin-right: 10px;
}

.banatrust-value {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    font-weight: 500;
    color: var(--primary-color);
}

.banatrust-value i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.banatrust-value strong {
    color: var(--primary-color);
    font-weight: 700;
}

.others-value {
    color: var(--text-light);
}

/* Strengths Cards */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.strength-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

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

.strength-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.strength-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.highlight-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.strength-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.strength-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-body);
    line-height: 1.6;
}

.strength-features li:last-child {
    border-bottom: none;
}

.strength-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Statistics Visualization */
.strengths-stats {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 77, 125, 0.2);
}

.stats-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 50px;
}

.stats-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-visual-card {
    text-align: center;
}

.stat-chart {
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
}

.chart-bar {
    width: 80px;
    height: var(--percentage);
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px 10px 0 0;
    position: relative;
    animation: growBar 1.5s ease-out;
    box-shadow: 0 -5px 20px rgba(201, 169, 97, 0.5);
}

@keyframes growBar {
    from {
        height: 0;
    }
    to {
        height: var(--percentage);
    }
}

.chart-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-info {
    color: var(--text-white);
}

.stat-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-info p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ====================================
   Events Section
   ==================================== */
.events {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.events-grid {
    display: grid;
    gap: 30px;
}

.event-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 30px;
    transition: var(--transition-base);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.event-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-meta-item i {
    color: var(--primary-color);
}

/* ====================================
   Contact Section
   ==================================== */
.contact {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.contact-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-detail-content p {
    color: var(--text-light);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 125, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--text-white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .hero-title-sub {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    /* Global Network Responsive */
    .earth-map-wrapper {
        height: 500px;
    }
    
    .marker-label {
        font-size: 14px;
    }
    
    .marker-dot {
        width: 16px;
        height: 16px;
    }
    
    .dusseldorf-marker .marker-dot {
        width: 18px;
        height: 18px;
    }
    
    .network-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
    
    .services-grid,
    .speakers-grid,
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table {
        font-size: 0.85rem;
        min-width: 500px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
    
    .event-card {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Global Network Mobile */
    .earth-map-wrapper {
        height: 400px;
    }
    
    .marker-label {
        font-size: 12px;
    }
    
    .marker-dot {
        width: 14px;
        height: 14px;
    }
    
    .dusseldorf-marker .marker-dot {
        width: 16px;
        height: 16px;
    }
    
    .zoom-focus {
        width: 200px;
        height: 200px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .stats-visual-grid {
        grid-template-columns: 1fr;
    }
    
    .strengths-stats {
        padding: 40px 20px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
        min-width: 450px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .stats-title {
        font-size: 1.5rem;
    }
    
    .strength-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ====================================
   Service Detail Pages
   ==================================== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.breadcrumb span:not(.fas) {
    color: var(--text-light);
}

/* Service Detail Hero */
.service-detail-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(255,255,255,0.05)" d="M0 300L50 280C100 260 200 220 300 200C400 180 500 180 600 200C700 220 800 260 900 280C1000 300 1100 300 1150 300L1200 300L1200 600L1150 600C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600L0 600Z"/></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.service-detail-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-detail-icon.featured {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-white);
}

.featured-badge-large {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge-large.new {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.service-detail-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Detail Content */
.service-detail-content {
    padding: var(--section-padding);
    background: var(--bg-gray);
}

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

.detail-main {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.detail-section {
    margin-bottom: 60px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* Features List */
.features-list {
    display: grid;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.feature-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Recommend List */
.recommend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommend-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    color: var(--text-body);
}

.recommend-list li:last-child {
    border-bottom: none;
}

.recommend-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.step-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.sidebar-text {
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

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

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

.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.contact-item a {
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.related-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services li {
    margin-bottom: 15px;
}

.related-services li:last-child {
    margin-bottom: 0;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-gray);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.related-services a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateX(5px);
}

.related-services i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.related-services a:hover i {
    color: var(--text-white);
}

/* Target Audience Cards */
.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: var(--transition-base);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.audience-card p {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Achievements */
.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    text-align: center;
}

.achievement-item {
    color: var(--text-white);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials Mini */
.testimonials-mini {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 12px;
}

.testimonial-mini {
    text-align: center;
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-mini p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Program List */
.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.program-item {
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 12px;
    text-align: center;
}

.program-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.program-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.program-item p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* School Badges */
.school-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.school-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-gray);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.school-badge i {
    color: var(--secondary-color);
}

/* Event Themes */
.event-themes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.theme-card {
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.theme-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.theme-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.theme-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Format Options */
.format-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.format-card {
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 12px;
}

.format-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.format-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.format-card p {
    color: var(--text-body);
    margin-bottom: 15px;
    line-height: 1.6;
}

.format-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-card li {
    padding: 8px 0;
    color: var(--text-body);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.format-card li:last-child {
    border-bottom: none;
}

/* Event Detail Cards */
.upcoming-events-detail {
    display: grid;
    gap: 25px;
}

.event-detail-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: var(--transition-base);
}

.event-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.event-date-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary-color);
}

.event-info p {
    color: var(--text-body);
    line-height: 1.6;
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 120px 0 60px;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-detail-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .detail-main {
        padding: 40px 30px;
    }
    
    .detail-section-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .target-audience,
    .program-list,
    .event-themes,
    .format-options {
        grid-template-columns: 1fr;
    }
    
    .school-grid {
        grid-template-columns: 1fr;
    }
    
    .event-detail-card {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .detail-main {
        padding: 30px 20px;
    }
    
    .sidebar-card {
        padding: 25px 20px;
    }
}