/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    --primary-color: #003d6b;
    --secondary-color: #00A651;
    --accent-color: #F4C430;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --border-radius: 12px;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-pretitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 800;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
    white-space: nowrap;
    margin-top: 8px;
}

.text-link:hover {
    color: var(--secondary-color);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a8a 100%);
    color: white;
    min-height: 720px;
    padding: 120px 0 96px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slides {
    z-index: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a8a 100%);
}

.hero-slide {
    background-position: center;
    background-size: cover;
    display: block;
    opacity: 0;
    transform: scale(1);
    animation-duration: 32s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
    will-change: opacity, transform;
}

.hero-slide-1 {
    background-image: url('images/hero/hero_one-slider-3.jpg');
    animation-name: heroSlideOne;
}

.hero-slide-2 {
    background-image: url('images/hero/hero_two-slider-1.jpg');
    animation-name: heroSlideTwo;
}

.hero-slide-3 {
    background-image: url('images/hero/hero_two-slider-2.jpg');
    animation-name: heroSlideThree;
}

.hero-slide-4 {
    background-image: url('images/hero/hero_two-slider-3.jpg');
    animation-name: heroSlideFour;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 61, 107, 0.93) 0%, rgba(0, 90, 138, 0.78) 52%, rgba(0, 166, 81, 0.34) 100%),
        linear-gradient(90deg, rgba(0, 61, 107, 0.9) 0%, rgba(0, 61, 107, 0.6) 48%, rgba(0, 61, 107, 0.28) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-copy {
    color: white;
    max-width: 850px;
}

.hero-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.7rem, 5vw, 5rem);
    margin-bottom: 24px;
    line-height: 1.05;
    font-weight: 800;
    max-width: 860px;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.24);
}

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 660px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-info-panel {
    background: rgba(0, 61, 107, 0.72);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 34, 61, 0.32);
    backdrop-filter: blur(16px);
    padding: 34px;
}

.hero-panel-label {
    display: block;
    color: var(--accent-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-info-panel h2 {
    color: white;
    font-size: 1.85rem;
    line-height: 1.22;
    margin-bottom: 16px;
}

.hero-info-panel p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 26px;
}

.hero-panel-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-top: 22px;
}

.hero-panel-stats strong {
    display: block;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1;
}

.hero-panel-stats span {
    color: rgba(255, 255, 255, 0.76);
    display: block;
    font-size: 0.8rem;
    line-height: 1.35;
    margin-top: 8px;
}

@keyframes heroSlideOne {
    0%,
    22% {
        opacity: 1;
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    28%,
    94% {
        opacity: 0;
        transform: scale(1.1) translate3d(-2%, -1.2%, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1.02) translate3d(0, 0, 0);
    }
}

@keyframes heroSlideTwo {
    0%,
    20%,
    53%,
    100% {
        opacity: 0;
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    25%,
    47% {
        opacity: 1;
        transform: scale(1.09) translate3d(1.8%, -1%, 0);
    }
}

@keyframes heroSlideThree {
    0%,
    45%,
    78%,
    100% {
        opacity: 0;
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    50%,
    72% {
        opacity: 1;
        transform: scale(1.09) translate3d(-1.6%, 1%, 0);
    }
}

@keyframes heroSlideFour {
    0%,
    70% {
        opacity: 0;
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    75%,
    97% {
        opacity: 1;
        transform: scale(1.09) translate3d(1.2%, 1%, 0);
    }

    100% {
        opacity: 0;
        transform: scale(1.1) translate3d(1.6%, 1.2%, 0);
    }
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    flex-grow: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* ===========================
   STATS BAR
   =========================== */

.stats-bar {
    background: var(--light-color);
    padding: 50px 0;
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===========================
   FEATURED EVENT
   =========================== */

.featured-event {
    background:
        linear-gradient(135deg, rgba(0, 61, 107, 0.97), rgba(0, 90, 138, 0.94)),
        url('images/bg/cta-bg-1.jpg') center/cover;
    color: white;
    overflow: hidden;
    padding: 96px 0;
    position: relative;
}

.featured-event::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(244, 196, 48, 0.34) 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    opacity: 0.14;
    pointer-events: none;
}

.featured-event-inner {
    align-items: center;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    position: relative;
    z-index: 1;
}

.featured-event-media {
    min-height: 560px;
    padding: 42px 60px 86px 0;
    position: relative;
}

.featured-event-main-image {
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 24, 42, 0.34);
    height: 430px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.featured-event-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 61, 107, 0.02), rgba(0, 61, 107, 0.18));
}

.featured-event-main-image img,
.featured-event-thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.featured-event-date-card {
    background: var(--accent-color);
    border-radius: 8px;
    bottom: 110px;
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
    left: 28px;
    padding: 22px 24px;
    position: absolute;
    width: 210px;
    z-index: 3;
}

.featured-event-date-card span {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.featured-event-date-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    line-height: 1.05;
}

.featured-event-thumb {
    border: 8px solid white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin: 0;
    overflow: hidden;
    position: absolute;
    z-index: 2;
}

.featured-event-thumb-one {
    height: 165px;
    right: 0;
    top: 0;
    width: 220px;
}

.featured-event-thumb-two {
    bottom: 18px;
    height: 190px;
    right: 10px;
    width: 285px;
}

.featured-event-content .section-pretitle,
.featured-event-content .section-title {
    color: white;
}

.featured-event-content .section-pretitle {
    color: var(--accent-color);
}

.featured-event-content .section-title {
    margin-bottom: 22px;
    max-width: 660px;
}

.featured-event-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.04rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 680px;
}

.featured-event-details {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
}

.featured-event-details div {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    min-height: 122px;
    padding: 20px;
}

.featured-event-details i {
    color: var(--accent-color);
    display: block;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.featured-event-details span {
    color: rgba(255, 255, 255, 0.68);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.featured-event-details strong {
    color: white;
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
}

.featured-event-agenda {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 28px;
    padding: 24px 28px;
}

.featured-event-agenda h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.featured-event-agenda ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.featured-event-agenda li {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.featured-event-agenda li::before {
    color: var(--accent-color);
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 2px;
}

.featured-event-register {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.featured-event-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.featured-event-options span {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 600;
    gap: 8px;
    padding: 9px 14px;
}

.featured-event-options i {
    color: var(--accent-color);
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-copy h2 {
    margin-bottom: 24px;
}

.about-copy p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.about-highlights div {
    padding: 24px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.about-highlights strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.about-highlights p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
    min-height: 560px;
    margin-top: 34px;
    padding: 0 0 54px 54px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -28px;
    right: 20px;
    width: 190px;
    height: 150px;
    border: 6px solid var(--accent-color);
    z-index: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 10px;
    width: 86px;
    height: 150px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.55;
    z-index: 0;
}

.about-image figure {
    margin: 0;
}

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

.about-image-main {
    position: relative;
    z-index: 1;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    object-position: center;
}

.about-image-secondary img {
    object-position: 62% center;
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 61, 107, 0.04), rgba(0, 61, 107, 0.2));
    pointer-events: none;
    z-index: 1;
}

.about-image-secondary {
    position: absolute;
    right: 0;
    bottom: 36px;
    z-index: 3;
    width: 48%;
    height: 205px;
    border: 10px solid white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    left: 0;
    bottom: 16px;
    z-index: 2;
    width: 235px;
    background: var(--secondary-color);
    color: white;
    padding: 24px 26px;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-md);
}

.about-image-badge::after {
    content: '';
    position: absolute;
    top: -44px;
    left: 0;
    border-left: 58px solid var(--secondary-color);
    border-top: 44px solid transparent;
}

.about-image-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 8px;
}

.about-image-badge span {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
}

/* ===========================
   ACTIVITIES SECTION
   =========================== */

.activities {
    padding: 100px 0;
    background: var(--light-color);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.activity-card figure {
    width: 100%;
    height: 280px;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.activity-card:hover img {
    transform: scale(1.05);
}

.activity-content {
    padding: 32px;
}

.activity-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.activity-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   MEMBERS SECTION
   =========================== */

.members {
    padding: 100px 0;
    background: white;
}

.members .section-header {
    display: block;
    margin-bottom: 50px;
}

.members-marquee {
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.members-marquee::before,
.members-marquee::after {
    content: '';
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 90px;
    z-index: 2;
}

.members-marquee::before {
    background: linear-gradient(90deg, white, rgba(255, 255, 255, 0));
    left: 0;
}

.members-marquee::after {
    background: linear-gradient(270deg, white, rgba(255, 255, 255, 0));
    right: 0;
}

.members-grid {
    animation: membersScroll 32s linear infinite;
    display: flex;
    gap: 24px;
    margin-bottom: 0;
    width: max-content;
}

.members-marquee:hover .members-grid {
    animation-play-state: paused;
}

.member-card {
    background: var(--light-color);
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 12px 28px rgba(0, 61, 107, 0.06);
    flex: 0 0 300px;
    min-height: 320px;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--accent-color);
}

.member-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 20px;
}

.member-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.member-meta {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.members-cta {
    background: var(--primary-color);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
}

.members-cta p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

@keyframes membersScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

/* ===========================
   PARTNERS
   =========================== */

.partners {
    padding: 80px 0;
    background: #fff;
}

.partners-inner {
    text-align: center;
}

.partners-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    justify-content: center;
    gap: 24px;
    padding: 24px 0 8px;
}

.partners-grid img {
    height: 90px;
    width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(16,24,40,0.06));
    background: white;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #edf1f4;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(130px, 1fr));
    }

    .partners-grid img {
        height: 72px;
    }
}

/* ===========================
   EVENTS SECTION
   =========================== */

.events {
    padding: 100px 0;
    background: var(--light-color);
}

.events-list {
    display: grid;
    gap: 32px;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: grid;
    grid-template-columns: 320px 1fr;
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.event-card figure {
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.event-card:hover img {
    transform: scale(1.08);
}

.event-details {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    min-width: 70px;
}

.date-day {
    display: block;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.event-details h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    margin-top: 0;
}

.event-location {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.event-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.event-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
    width: fit-content;
}

.event-link:hover {
    color: var(--primary-color);
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-panel h2 {
    color: white;
    margin-bottom: 24px;
}

.contact-panel > p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 32px;
}

.contact-info-cards {
    display: grid;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.info-card i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
}

.info-card h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
    background: white;
    color: var(--text-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.2);
    transform: translateY(-2px);
}

.contact-form button {
    align-self: flex-start;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: #08243a;
    color: #d6e6f2;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 28px;
}

.footer .footer-brand .logo {
    height: 56px;
}

.footer .brand-text .brand-title {
    color: #ffffff;
}

.footer-copy {
    color: #c9dbe8;
    margin-top: 14px;
    max-width: 420px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: 10px;
}

.footer .footer-links a {
    color: #bcd3e8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer .footer-links a:hover {
    color: var(--accent-color);
}

.footer .social-links a {
    background: rgba(255,255,255,0.03);
    color: #d6e6f2;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #98b3c8;
    font-size: 0.92rem;
}

.footer-bottom-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom-links a {
    color: #98b3c8;
    text-decoration: none;
}

.footer-bottom .dot {
    color: #98b3c8;
    margin: 0 6px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-info-panel {
        max-width: 640px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-event-inner {
        gap: 44px;
        grid-template-columns: 1fr;
    }

    .featured-event-media {
        max-width: 760px;
        min-height: 520px;
    }

    .about-image {
        margin-top: 0;
        max-width: 720px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-card figure {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner > .btn-outline {
        display: none;
    }

    .nav-inner {
        gap: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 680px;
        padding: 88px 0 72px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-info-panel {
        padding: 26px;
    }

    .hero-panel-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .text-link {
        order: -1;
    }

    .about {
        padding: 60px 0;
    }

    .featured-event {
        padding: 72px 0;
    }

    .featured-event-media {
        min-height: 450px;
        padding: 28px 36px 76px 0;
    }

    .featured-event-main-image {
        height: 330px;
    }

    .featured-event-thumb-one {
        height: 125px;
        width: 175px;
    }

    .featured-event-thumb-two {
        height: 150px;
        width: 230px;
    }

    .featured-event-date-card {
        bottom: 88px;
        left: 18px;
    }

    .featured-event-details {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 500px;
        padding-left: 32px;
    }

    .about-image-main {
        height: 360px;
    }

    .about-image-secondary {
        width: 52%;
        height: 180px;
    }

    .about-image-badge {
        width: 215px;
        padding: 20px 22px;
    }

    .activities {
        padding: 60px 0;
    }

    .members {
        padding: 60px 0;
    }

    .events {
        padding: 60px 0;
    }

    .members-grid {
        gap: 24px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stats-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-inner {
        gap: 12px;
    }

    .logo {
        height: 40px;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }

    .hero {
        min-height: 640px;
        padding: 72px 0 56px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-label {
        font-size: 0.8rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-pretitle {
        font-size: 0.75rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-info-panel {
        padding: 22px;
    }

    .hero-info-panel h2 {
        font-size: 1.45rem;
    }

    .hero-panel-stats strong {
        font-size: 1.65rem;
    }

    .featured-event {
        padding: 56px 0;
    }

    .featured-event-media {
        min-height: auto;
        padding: 0;
    }

    .featured-event-main-image {
        height: 260px;
    }

    .featured-event-thumb {
        position: relative;
    }

    .featured-event-thumb-one {
        display: none;
    }

    .featured-event-thumb-two {
        bottom: auto;
        height: 150px;
        margin: -44px 0 0 auto;
        right: auto;
        width: 76%;
    }

    .featured-event-date-card {
        bottom: auto;
        left: auto;
        margin-top: 16px;
        position: relative;
        width: 100%;
    }

    .featured-event-content .section-title {
        font-size: 1.9rem;
    }

    .featured-event-agenda {
        padding: 20px;
    }

    .featured-event-register .btn {
        width: 100%;
    }

    .about-image {
        min-height: auto;
        padding: 0;
    }

    .about-image::before,
    .about-image::after,
    .about-image-badge::after {
        display: none;
    }

    .about-image-main {
        height: 260px;
    }

    .about-image-secondary {
        position: relative;
        right: auto;
        bottom: auto;
        width: 78%;
        height: 155px;
        margin: -48px 0 0 auto;
        border-width: 8px;
    }

    .about-image-badge {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
        border-radius: 8px;
    }

    .activity-card figure {
        height: 200px;
    }

    .members-grid {
        gap: 16px;
    }

    .member-card {
        flex-basis: 270px;
        min-height: 300px;
        padding: 20px;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-details {
        padding: 20px;
    }

    .event-date {
        position: static;
        width: fit-content;
        margin-bottom: 16px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility animations */
.activity-card figure {
    animation: fadeInUp 0.6s ease;
}

.member-card {
    animation: fadeInUp 0.6s ease;
}

.event-card {
    animation: fadeInUp 0.6s ease;
}
