/* ============================================
   KNOWTECH 3.0 - Modern Professional Design
   ============================================ */

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #7AB82D;
    --accent-light: #9BCF62;
    --accent-dark: #5A8F1A;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* === BASE STYLES === */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-ornament {
    color: var(--accent);
    font-size: var(--text-lg);
    opacity: 0.6;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-lg);
}

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

.logo-title {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: var(--text-xs);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2);
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon {
    font-size: 10px;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(122, 184, 45, 0.1);
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

.nav-border {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.3;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-2);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gray-900);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--accent);
}

/* === HERO SECTION === */
.hero {
    padding: calc(70px + var(--space-24)) 0 var(--space-24);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--accent);
}

/* === SECTIONS === */
section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* === ABOUT SECTION === */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-text h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.feature-list li {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.feature-list .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 700;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

/* === HIGHLIGHTS SECTION === */
.highlights {
    position: relative;
    background: linear-gradient(180deg, #fdfbf7 0%, #f5f3ee 100%);
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.3;
}

.section-header {
    position: relative;
}

.section-header h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--gray-900);
    position: relative;
    display: inline-block;
}

.section-header h2::before,
.section-header h2::after {
    content: '✦';
    color: var(--accent);
    font-size: var(--text-xl);
    position: relative;
    opacity: 0.6;
}

.section-header h2::before {
    margin-right: var(--space-4);
}

.section-header h2::after {
    margin-left: var(--space-4);
}

.section-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    margin: var(--space-4) auto 0;
    position: relative;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-line::before {
    left: 0;
}

.section-line::after {
    right: 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-8);
    position: relative;
}

.highlight-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(122, 184, 45, 0.15);
    border-color: var(--accent-light);
}

.highlight-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8dcc4 0%, #d4c5a9 100%);
}

.highlight-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(122, 184, 45, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(26, 26, 46, 0.7) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-image::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(122, 184, 45, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.highlight-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    z-index: 2;
    pointer-events: none;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.05);
}

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

.islamic-pattern-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 3;
}

.highlight-content {
    position: relative;
    padding: var(--space-8);
    background: var(--white);
}

.highlight-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--space-8);
    right: var(--space-8);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent) 80%, transparent 100%);
    opacity: 0.2;
}

.highlight-category {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
    box-shadow: 0 2px 8px rgba(122, 184, 45, 0.3);
}

.highlight-category::before {
    content: '◆';
    font-size: 10px;
}

.highlight-content h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.3;
    letter-spacing: -0.01em;
    position: relative;
}

.highlight-content p {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.8;
    min-height: 75px;
}

.highlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-5);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%) 1;
    position: relative;
}

.highlight-footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
    opacity: 0.4;
}

.highlight-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--accent);
    font-weight: 700;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.highlight-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 184, 45, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-link:hover::before {
    left: 100%;
}

.highlight-link:hover {
    background: var(--accent);
    color: var(--white);
    gap: var(--space-3);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.3);
}

.highlight-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.highlight-link:hover svg {
    transform: translateX(4px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.3);
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

/* === DETAILS SECTION === */
.details {
    background: var(--white);
}

.detail-card {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    margin-bottom: var(--space-8);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.detail-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.detail-icon svg {
    width: 32px;
    height: 32px;
}

.detail-header h3 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gray-900);
}

.detail-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    line-height: 1.8;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag {
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--gray-700);
    font-weight: 500;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--gray-700);
}

.feature-bullets li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #2a2a3e 0%, #1a1a2e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(122, 184, 45, 0.02) 20px, rgba(122, 184, 45, 0.02) 40px);
    pointer-events: none;
}

.footer-ornament-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6) 0;
    background: rgba(255, 255, 255, 0.03);
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(122, 184, 45, 0.5) 50%, transparent 100%);
    max-width: 200px;
}

.ornament-center {
    padding: 0 var(--space-6);
    font-size: var(--text-lg);
    color: var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--space-12);
    padding: var(--space-16) 0 var(--space-12);
    position: relative;
    z-index: 1;
}

.footer-brand {
    padding-right: var(--space-6);
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.2);
}

.footer-brand-text h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-1);
    letter-spacing: -0.02em;
}

.footer-subtitle {
    font-size: var(--text-xs);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

.newsletter-section {
    margin-top: var(--space-6);
}

.newsletter-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.title-ornament {
    color: var(--accent);
    font-size: var(--text-sm);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 2px solid rgba(122, 184, 45, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 184, 45, 0.4);
}

.newsletter-form button svg {
    width: 16px;
    height: 16px;
}

.footer-section h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-5);
    color: var(--white);
}

.footer-section-title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-5);
}

.footer-section-title .title-ornament {
    color: var(--accent);
    font-size: 10px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-300);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    padding: var(--space-1) 0;
}

.footer-links a span {
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: var(--space-2);
}

.footer-links a:hover span {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: rgba(42, 42, 62, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(122, 184, 45, 0.2);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
    border-color: var(--accent-light);
    box-shadow: 0 6px 16px rgba(122, 184, 45, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
}

.social-link:hover svg {
    color: var(--white);
}

.footer-badges {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(122, 184, 45, 0.1);
    border: 1px solid rgba(122, 184, 45, 0.3);
    border-radius: var(--radius-lg);
    font-size: var(--text-xs);
    color: var(--gray-300);
    font-weight: 600;
}

.footer-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-8) 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 150px;
}

.divider-ornament {
    color: var(--accent);
    font-size: var(--text-base);
    opacity: 0.5;
}

.footer-bottom {
    padding: var(--space-6) 0 var(--space-8);
    text-align: center;
}

.copyright {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.copyright-symbol {
    color: var(--accent);
    font-weight: 700;
}

.footer-tagline-bottom {
    font-size: var(--text-xs);
    color: var(--gray-500);
    font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-5);
    }

    .highlight-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-description {
        font-size: var(--text-lg);
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .highlight-image {
        height: 240px;
    }

    .highlight-content {
        padding: var(--space-6);
    }

    .highlight-content h3 {
        font-size: var(--text-xl);
    }

    .highlight-content p {
        font-size: var(--text-sm);
        min-height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: var(--space-6);
    }

    section {
        padding: var(--space-12) 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .highlight-card:hover {
        transform: translateY(-4px);
    }

    .highlight-image {
        height: 200px;
    }

    .container {
        padding: 0 var(--space-4);
    }
}

/* === EVENTS SECTION === */
.events-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(122, 184, 45, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-top: var(--space-3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Registration Banner */
.registration-banner {
    margin: var(--space-12) auto;
    max-width: 800px;
}

.banner-content {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-6);
    box-shadow: 0 8px 32px rgba(122, 184, 45, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.banner-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.banner-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.banner-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.banner-text h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.banner-text p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Country Filter Wrapper */
.country-filter-wrapper {
    margin-bottom: var(--space-12);
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-800);
}

.filter-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.country-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--gray-100);
}

.country-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--gray-50);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.country-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 184, 45, 0.1), transparent);
    transition: left 0.5s ease;
}

.country-btn:hover::before {
    left: 100%;
}

.country-btn .btn-icon {
    font-size: var(--text-xl);
    transition: transform 0.3s ease;
}

.country-btn:hover {
    background: var(--accent-light);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(122, 184, 45, 0.3);
}

.country-btn:hover .btn-icon {
    transform: scale(1.2);
}

.country-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.4);
}

.country-btn.active .btn-icon {
    animation: bounce 0.6s ease;
}

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

/* View Toggle */
.view-toggle {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.toggle-btn:hover {
    background: var(--gray-50);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.toggle-btn:hover svg {
    transform: scale(1.1);
}

.toggle-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.3);
}

.toggle-btn.active svg {
    animation: bounce 0.6s ease;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-8);
}

/* Activities List (By Activity) */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.activity-section {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.activity-section:hover {
    box-shadow: 0 8px 32px rgba(122, 184, 45, 0.15);
    border-color: var(--accent-light);
}

.activity-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-5);
    position: relative;
    overflow: hidden;
}

.activity-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.activity-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-4xl);
    position: relative;
    z-index: 1;
}

.activity-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.activity-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.activity-description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.activity-badge {
    flex-shrink: 0;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.activity-countries {
    padding: var(--space-6);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-4);
}

.activity-country-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.activity-country-card:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.2);
}

.country-flag {
    flex-shrink: 0;
    font-size: var(--text-4xl);
}

.country-details {
    flex: 1;
    min-width: 0;
}

.country-details h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.event-date-small {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

.venue-small {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: var(--space-1) 0 0;
}

.btn-register-small {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.btn-register-small svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-register-small:hover {
    background: var(--accent-dark);
    gap: var(--space-3);
}

.btn-register-small:hover svg {
    transform: translateX(4px);
}

/* Expo Pavilion Read More */
.expo-read-more-container {
    padding: var(--space-4) var(--space-6);
    text-align: center;
}

.expo-read-more-btn {
    padding: var(--space-4) var(--space-8);
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.3);
}

.expo-read-more-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 184, 45, 0.4);
}

.expo-detailed-content {
    padding: var(--space-8) var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    margin: var(--space-4) var(--space-6) var(--space-6);
}

.expo-pavilion-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.pavilion-item {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.pavilion-item:hover {
    border-color: var(--accent-light);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.1);
}

.pavilion-item h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-4);
    border-bottom: 2px solid var(--accent);
    padding-bottom: var(--space-2);
}

.pavilion-item p {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.pavilion-item ul {
    list-style: none;
    padding-left: 0;
    margin: var(--space-3) 0;
}

.pavilion-item ul li {
    padding: var(--space-2) 0 var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
}

.pavilion-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: var(--text-lg);
}

/* Activity Read More Button */
.activity-read-more-btn {
    padding: var(--space-4) var(--space-8);
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.3);
}

.activity-read-more-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 184, 45, 0.4);
}

/* Activity Detailed Content */
.activity-detailed-content {
    padding: var(--space-8) var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    margin: var(--space-4) var(--space-6) var(--space-6);
}

.activity-detailed-content .activity-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.activity-detailed-content h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent);
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
}

.activity-detailed-content p {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.activity-detailed-content ul {
    list-style: none;
    padding-left: 0;
    margin: var(--space-3) 0;
}

.activity-detailed-content ul li {
    padding: var(--space-2) 0 var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
}

.activity-detailed-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: var(--text-lg);
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(122, 184, 45, 0.15);
    border-color: var(--accent-light);
}

.event-header {
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
}

.event-country {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
}

.event-date {
    font-size: var(--text-sm);
    opacity: 0.9;
    font-weight: 500;
}

.event-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.event-time,
.event-venue {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.6;
}

.event-activities {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
}

.activities-title {
    font-size: var(--text-sm);
    color: var(--gray-700);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.activities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.activity-tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(122, 184, 45, 0.2);
}

.activity-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(122, 184, 45, 0.3);
}

.event-footer {
    padding: 0 var(--space-6) var(--space-6);
}

.event-register-btn {
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.event-register-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.event-register-btn:hover svg {
    transform: translateX(4px);
}

.loading,
.no-events,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-16);
    font-size: var(--text-lg);
    color: var(--gray-600);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message {
    color: #dc2626;
}

/* === COMPETITIONS SECTION === */
.competitions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.competitions-content {
    max-width: 900px;
    margin: 0 auto;
}

.competition-intro {
    text-align: center;
    margin-bottom: var(--space-10);
}

.competition-intro .lead {
    font-size: var(--text-xl);
    color: var(--gray-700);
    line-height: 1.8;
}

.competition-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.competition-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.competition-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.competition-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.competition-card h3::before {
    content: '◆';
    color: var(--accent);
    font-size: var(--text-base);
}

.competition-card p {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.7;
}

/* Competition Categories - Simple Accordion Design */
.competition-categories-simple {
    margin-bottom: var(--space-12);
}

/* Gender Selector */
.gender-selector {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-8);
}

.gender-select-btn {
    padding: var(--space-4) var(--space-8);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-select-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.gender-select-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(122, 184, 45, 0.3);
}

/* Gender Sections */
.gender-section {
    display: none;
}

.gender-section.active {
    display: block;
}

/* Category Group */
.category-group {
    margin-bottom: var(--space-8);
}

.category-title {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
}

.cat-badge {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
}

.cat-age {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
}

/* Competition Accordion */
.comp-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.comp-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.comp-item:hover {
    border-color: var(--accent-light);
    box-shadow: 0 2px 8px rgba(122, 184, 45, 0.1);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    cursor: pointer;
    user-select: none;
}

.comp-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.comp-title {
    flex: 1;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-900);
}

.comp-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.comp-item.active .comp-toggle {
    transform: rotate(45deg);
}

.comp-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.comp-item.active .comp-content {
    max-height: 1000px;
}

.comp-content > * {
    padding: 0 var(--space-5) var(--space-5);
}

.comp-content p {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.comp-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0 var(--space-5) var(--space-4);
}

.comp-content ul li {
    padding: var(--space-2) 0 var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
}

.comp-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .events-list {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .registration-banner {
        margin: var(--space-8) auto;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: var(--space-6);
        gap: var(--space-4);
    }

    .banner-text h3 {
        font-size: var(--text-xl);
    }

    .banner-text p {
        font-size: var(--text-sm);
    }

    .filter-header {
        font-size: var(--text-base);
    }

    .country-filter {
        padding: var(--space-4);
        gap: var(--space-2);
    }

    .country-btn {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
    }

    .country-btn .btn-icon {
        font-size: var(--text-base);
    }

    .competition-details {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .gender-selector {
        flex-direction: column;
    }

    .gender-select-btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }

    .category-title {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
        padding: var(--space-3) var(--space-4);
    }

    .comp-header {
        padding: var(--space-3) var(--space-4);
        gap: var(--space-3);
    }

    .comp-title {
        font-size: var(--text-sm);
    }

    .comp-content p,
    .comp-content ul li {
        font-size: var(--text-xs);
    }

    .event-card {
        margin: 0 var(--space-2);
    }

    .view-toggle {
        flex-direction: column;
    }

    .toggle-btn {
        width: 100%;
        justify-content: center;
    }

    .activity-header {
        flex-direction: column;
        text-align: center;
        padding: var(--space-5);
    }

    .activity-title {
        font-size: var(--text-xl);
    }

    .activity-countries {
        grid-template-columns: 1fr;
    }

    .activity-country-card {
        flex-direction: column;
        text-align: center;
    }

    .expo-read-more-btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }

    .expo-detailed-content {
        padding: var(--space-6) var(--space-4);
        margin: var(--space-3) var(--space-4) var(--space-4);
    }

    .pavilion-item {
        padding: var(--space-4);
    }

    .pavilion-item h4 {
        font-size: var(--text-lg);
    }

    .pavilion-item p,
    .pavilion-item ul li {
        font-size: var(--text-sm);
    }
}
