:root {
    --primary: #fe4f00;
    --primary-hover: #e04400;
    --primary-light: #fff3ed;
    --dark: #111827;
    --dark-surface: #1f2937;
    --dark-muted: #374151;
    --light-bg: #f9fafb;
    --light-surface: #ffffff;
    --border-color: #e5e7eb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --text-light: #f3f4f6;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --transition: all 0.25s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark);
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-link:hover {
    color: var(--primary);
}

.motto {
    color: var(--primary);
    font-weight: 600;
}

/* Header & Navigation */
.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    padding: 6px 0;
}

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

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.nav-btn {
    padding: 8px 18px !important;
    font-size: 0.9rem !important;
}

/* Mobile Toggle */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-btn .bar {
    width: 24px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1050;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.drawer-nav a.active, .drawer-nav a:hover {
    color: var(--primary);
}

.drawer-action {
    margin-top: 30px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    padding: 12px 26px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 79, 0, 0.35);
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 24px;
    background: transparent;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--dark);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    color: #ffffff;
    padding: 12px 26px;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--dark);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.w-full {
    width: 100%;
}

/* Hero Section & Slider */
.hero-section {
    position: relative;
    background-color: var(--dark);
    color: #ffffff;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 580px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(254, 79, 0, 0.2);
    border: 1px solid var(--primary);
    color: #ff915b;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    font-style: italic;
}

.hero-text {
    font-size: 1.05rem;
    color: #d1d5db;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: 24px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    padding: 60px 20px;
    border-bottom: 4px solid var(--primary);
}

.banner-badge {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.banner-text {
    color: #9ca3af;
    font-size: 1rem;
}

/* Sections & Typography */
.section {
    padding: 70px 0;
}

.bg-alt {
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 44px;
}

.section-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

.title-divider-left {
    width: 50px;
    height: 4px;
    background-color: var(--primary);
    margin: 14px 0 20px;
    border-radius: 2px;
}

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

/* Intro Cards Grid */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 34px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.intro-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.intro-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.intro-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Masters Cards */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.master-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.master-img-wrap {
    position: relative;
    height: 320px;
    background: #1f2937;
    overflow: hidden;
}

.master-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.master-card:hover .master-img {
    transform: scale(1.04);
}

.master-rank {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    border-left: 3px solid var(--primary);
}

.master-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.master-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.master-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.master-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.master-contact {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 500;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

/* Events Table */
.events-table-wrap {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow-x: auto;
}

.events-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.events-table th {
    background: #111827;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.events-table tr:hover {
    background-color: #f9fafb;
}

.event-title-cell strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
}

.event-title-cell small {
    color: var(--text-muted);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.badge-primary {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(254, 79, 0, 0.3);
}

/* Gallery Previews & Full Gallery */
.gallery-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow-sm);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-cat {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-caption {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

/* Full Gallery Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.gallery-card-inner {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-card:hover .gallery-card-hover {
    opacity: 1;
}

.gallery-item-card:hover .gallery-thumb {
    transform: scale(1.06);
}

.hover-category {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hover-title {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.btn-lightbox-trigger {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-lightbox-trigger:hover {
    background: var(--primary-hover);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
}

.lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.95)), url('/uploads/2017/03/slider.jpg') center/cover;
    color: #ffffff;
    padding: 70px 20px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: #d1d5db;
    max-width: 650px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.about-text-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.about-text-content strong {
    color: var(--dark);
}

.rounded-shadow {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-stats-strip {
    display: flex;
    gap: 30px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.activity-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.activity-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.activity-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.activity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.activity-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Council Tabs */
.council-tab-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--dark);
    color: #ffffff;
    border-color: var(--dark);
}

.tab-pane {
    display: none;
}

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

.members-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.members-pill-grid span {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.members-pill-grid span::before {
    content: "🥋";
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Techniques Page Styles */
.techniques-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-tab-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.tech-tab-btn:hover, .tech-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.tech-pane {
    display: none;
}

.tech-pane.active {
    display: block;
}

.tech-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 14px;
}

.tech-icon {
    font-size: 2rem;
}

.tech-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark);
}

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

.tech-list li {
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.95rem;
}

.tech-list li strong {
    color: var(--primary);
}

/* Katas Grid */
.kata-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.kata-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.kata-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.kata-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #f3f4f6;
    position: absolute;
    top: 10px;
    right: 14px;
    line-height: 1;
}

.kata-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.kata-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Belt Timeline */
.belt-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
}

.belt-row {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

.belt-badge {
    min-width: 140px;
    text-align: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.white-belt .belt-badge { background: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }
.yellow-belt .belt-badge { background: #fef08a; color: #854d0e; border: 1px solid #fde047; }
.orange-belt .belt-badge { background: #fed7aa; color: #9a3412; border: 1px solid #fdba74; }
.green-belt .belt-badge { background: #bbf7d0; color: #166534; border: 1px solid #86efac; }
.blue-belt .belt-badge { background: #bfdbfe; color: #1e40af; border: 1px solid #93c5fd; }
.brown-belt .belt-badge { background: #d7ccc8; color: #4e342e; border: 1px solid #bcaaa4; }
.black-belt .belt-badge { background: #111827; color: #ffffff; border: 1px solid #000000; }

.belt-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.belt-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-col-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.hq-card {
    border-left: 4px solid var(--primary);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-icon {
    font-size: 1.6rem;
}

.info-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
}

.info-details p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-meta-box {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
}

.contact-meta-box p {
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.contact-meta-box a {
    color: var(--primary);
    font-weight: 600;
}

/* Form Styles */
.form-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-md);
}

.form-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

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

.required {
    color: #dc2626;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: #ffffff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(254, 79, 0, 0.15);
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.security-note {
    font-size: 0.82rem;
    color: #059669;
    font-weight: 600;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.alert-danger {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark);
    color: #9ca3af;
    border-top: 4px solid var(--primary);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
}

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

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-desc strong {
    color: #ffffff;
}

.footer-motto {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
}

.footer-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

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

.footer-office {
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-office strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.footer-contact-item {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

.footer-cta-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-top: 18px;
}

.footer-cta-box p {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-bottom {
    background: #0b0f19;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-credits {
    display: flex;
    gap: 12px;
    align-items: center;
}

.back-to-top {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .grid-2-col, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .main-nav {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-slider {
        height: 500px;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .belt-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* =========================================================
   Custom Header, Banner & Testimonials (Screenshot Match)
   ========================================================= */

/* Top Bar Orange */
.top-bar-orange {
    background-color: #fe4f00;
    color: #ffffff;
    font-size: 0.86rem;
    padding: 7px 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-left-query {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.query-label {
    font-weight: 700;
}

.top-contact-item {
    color: #ffffff;
    font-weight: 500;
    transition: opacity 0.2s;
}

.top-contact-item:hover {
    opacity: 0.85;
}

.top-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.25);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2px;
    transition: background 0.2s;
}

.social-icon:hover {
    background: #ffffff;
    color: #fe4f00;
}

/* Emblem Logo & Navigation Alignment */
.brand-emblem-wrap {
    display: block;
    position: relative;
    z-index: 1010;
    margin-bottom: -32px; /* Overlap into banner */
    padding-top: 4px;
}

.emblem-img {
    height: 110px;
    width: 110px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
}

/* Banner Wrapper */
.banner-wrapper {
    position: relative;
    width: 100%;
    background: #111827;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 380px;
    max-height: 520px;
    overflow: hidden;
}

.banner-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.6s ease;
}

.banner-slide.active {
    display: block;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.banner-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.65);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.25s ease;
}

.banner-nav-btn:hover {
    background: #fe4f00;
}

.banner-nav-btn.prev {
    left: 20px;
}

.banner-nav-btn.next {
    right: 20px;
}

/* Sub-Banner Motto Strip (Matches original screenshot) */
.sub-banner-motto {
    background-color: #272a2e;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.motto-heading {
    font-family: var(--font-heading);
    color: #fe4f00;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.motto-divider {
    width: 70px;
    height: 3px;
    background: #fe4f00;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Testimonials Section */
.testimonials-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 80px 0 70px;
}

.testimonials-heading {
    font-family: var(--font-heading);
    color: #fe4f00;
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
}

.testimonials-slider-wrap {
    max-width: 850px;
    margin: 40px auto 0;
    position: relative;
}

.testimonials-slider {
    position: relative;
    min-height: 220px;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-box {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    color: #fe4f00;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #f3f4f6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fe4f00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.author-meta {
    text-align: left;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.author-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.testimonial-dots .dot.active, .testimonial-dots .dot:hover {
    background: #fe4f00;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .brand-emblem-wrap {
        margin-bottom: 0;
    }
    .emblem-img {
        height: 65px;
        width: 65px;
    }
    .motto-heading {
        font-size: 1.5rem;
    }
    .testimonial-box {
        padding: 26px 20px;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
    .top-left-query {
        font-size: 0.78rem;
        gap: 8px;
    }
}

/* =========================================================
   About Us Complete Live Site Section Styles
   ========================================================= */

.reg-highlight {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.history-quote-box p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: #374151;
    font-size: 1.02rem;
}

/* 8 Activities Grid with Icons */
.official-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.official-activity-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.official-activity-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.activity-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.official-activity-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--dark);
}

/* Board Members Accordion */
.board-accordion-wrap, .district-accordion-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.board-accordion-item, .district-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.board-summary, .district-summary {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    background: #fdfdfd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    border-bottom: 1px solid transparent;
    user-select: none;
    color: var(--dark);
}

.board-summary::-webkit-details-marker, .district-summary::-webkit-details-marker {
    display: none;
}

details[open] .board-summary, details[open] .district-summary {
    border-bottom-color: var(--border-color);
    background: #f8fafc;
}

details[open] .arrow {
    transform: rotate(180deg);
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    color: var(--text-muted);
}

.board-content {
    padding: 18px 24px;
    background: #ffffff;
}

.board-content p {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #374151;
}

/* Committee Photos Grid */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.committee-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.committee-photo-wrap {
    height: 330px;
    background: #111827;
    overflow: hidden;
}

.committee-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.committee-card:hover .committee-photo-wrap img {
    transform: scale(1.04);
}

.committee-desc {
    padding: 20px;
}

.committee-desc h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

/* Black Belt Ranks Accordion */
.black-belt-accordion-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dan-accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.dan-summary {
    padding: 14px 20px;
    cursor: pointer;
    background: #111827;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.dan-summary::-webkit-details-marker {
    display: none;
}

.dan-summary .arrow {
    color: #ffffff;
}

.dan-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.dan-7 { color: #f59e0b; }
.dan-6 { color: #ec4899; }
.dan-5 { color: #3b82f6; }
.dan-4 { color: #10b981; }
.dan-3 { color: #f97316; }

.dan-members {
    padding: 18px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    background: #ffffff;
}

.dan-members span {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1f2937;
    padding: 6px 10px;
    background: #f9fafb;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

/* Volunteer Columns Grid */
.volunteer-columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.volunteer-column {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.volunteer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.volunteer-list span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    padding: 6px 10px;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
}

.volunteer-list span::before {
    content: "👤";
    margin-right: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =========================================================
   Techniques Page Authentic Curriculum Styles
   ========================================================= */

.syllabus-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.syllabus-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.syllabus-tab-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.syllabus-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
}

.syllabus-pane {
    display: none;
}

.syllabus-pane.active {
    display: block;
    animation: fadeIn 0.35s ease;
}

.syllabus-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
}

.syllabus-pane-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.syllabus-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 12px 24px;
}

.syllabus-list li {
    padding: 10px 14px;
    background: #f9fafb;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: #374151;
}

.syllabus-list li strong {
    color: var(--primary);
    font-weight: 700;
}

/* Counting Grid */
.counting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.count-item {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.count-item strong {
    font-size: 1rem;
    color: var(--dark);
}

.count-item span:last-child {
    margin-left: auto;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Terminology Grid */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.term-box {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
}

.term-box strong {
    color: var(--primary);
    font-size: 0.95rem;
}

.term-box span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* 2-Column Accordion Layout */
.accordion-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.syllabus-accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.syllabus-summary {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    background: #111827;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.syllabus-summary::-webkit-details-marker {
    display: none;
}

.syllabus-summary .arrow {
    color: #ffffff;
}

.syllabus-accordion-body {
    padding: 20px 24px;
    background: #ffffff;
}

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bullet-list li {
    font-size: 0.92rem;
    color: #374151;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e5e7eb;
}

.bullet-list li strong {
    color: var(--dark);
}

.sub-heading {
    font-size: 1rem;
    color: var(--primary);
    margin: 10px 0 12px;
    font-family: var(--font-heading);
}

.mb-3 {
    margin-bottom: 18px;
}

/* =========================================================
   Contact Us Dual Block (Exact Live Site Layout)
   ========================================================= */

.contact-dual-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    margin-bottom: 40px;
}

.postal-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
}

.postal-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.to-label {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.recipient-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin: 4px 0 2px;
}

.recipient-role {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.recipient-address {
    line-height: 1.6;
    color: #4b5563;
    font-size: 0.95rem;
}

.branch-office-box {
    padding-top: 18px;
    border-top: 1px dashed var(--border-color);
}

.branch-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.branch-address {
    line-height: 1.6;
    color: #4b5563;
    font-size: 0.92rem;
}

/* Get In Touch Card (Block 2) */
.get-in-touch-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
}

.get-in-touch-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 14px;
}

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

.c-icon {
    font-size: 1.3rem;
    line-height: 1.2;
}

.c-text strong {
    display: block;
    color: var(--dark);
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.c-text p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.5;
}

.c-text a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-dual-block {
        grid-template-columns: 1fr;
    }
}
