/* ===== CSS Variables - Logo Colors ===== */
:root {
    --green-primary: #2d5016;
    --green-bright: #5a9f37;
    --red-primary: #8b1a1a;
    --red-dark: #6b1313;
    --red-light: #b01e1e;
    --brown-dark: #3a2515;
    --brown-black: #1f140a;
    --gold: #d4a574;
    --gold-light: #e8c19f;
    --orange: #ff8c42;
    --orange-light: #ffaa66;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #666666;
    --black: #000000;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Scroll margin for anchor links to account for fixed header */
section[id] {
    scroll-margin-top: 115px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--brown-dark);
    background-color: var(--white);
}

/* ===== Top Bar ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--brown-black);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    z-index: 1001;
}

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

.top-bar-left span {
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-right i {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--green-primary), var(--gold));
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== Header / Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(90, 159, 55, 0.85) 100%), url('images/bg-1.webp') center/cover no-repeat;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 115px;
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.logo-text h1 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.slogan-nav {
    font-size: 0.85rem;
    color: var(--red-primary);
    font-style: italic;
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--brown-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--red-primary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--brown-dark);
    transition: all 0.3s;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 3rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero-text {
    max-width: 900px;
}

.union-name {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.union-acronym {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.main-slogan {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 26, 26, 0.4);
}

.btn-secondary {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--green-primary);
    transform: translateY(-2px);
}

/* ===== About Section ===== */
.about-section {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(45, 80, 22, 0.08) 0%, rgba(45, 80, 22, 0.08) 350px, transparent 350px),
        radial-gradient(circle at 85% 70%, rgba(90, 159, 55, 0.06) 0%, rgba(90, 159, 55, 0.06) 450px, transparent 450px),
        radial-gradient(circle at 50% 10%, rgba(212, 165, 116, 0.07) 0%, rgba(212, 165, 116, 0.07) 280px, transparent 280px);
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image-text.reverse {
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(139, 26, 26, 0.03) 100%);
    border-radius: 20px;
    margin-top: 2rem;
}

.about-image-text.reverse::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.about-image-text.reverse::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--red-primary);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.about-image-text.reverse .about-image {
    order: 2;
    position: relative;
    z-index: 1;
}

.about-image-text.reverse .about-text {
    order: 1;
    position: relative;
    z-index: 1;
}

.about-image-text.reverse .about-image {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible;
}

.about-image-text.reverse .about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image-text.reverse .about-img {
    filter: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.image-widgets {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
    max-width: 280px;
}

.widget-box {
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.widget-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.widget-red {
    background: var(--red-primary);
    color: var(--white);
}

.widget-gold {
    background: var(--gold);
    color: var(--brown-dark);
}

.widget-dark {
    background: var(--brown-black);
    color: var(--white);
}

.widget-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.widget-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.widget-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    opacity: 0.95;
}

.widget-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}


.about-image-text.reverse .about-text {
    padding-right: 2rem;
    position: relative;
}

.about-image-text.reverse .about-text::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -30px;
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, var(--red-primary), var(--gold));
    border-radius: 2px;
}

.about-image-text.reverse .about-text h3 {
    position: relative;
    padding-left: 2rem;
}

.about-image-text.reverse .about-text h3::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.about-image-text.reverse .about-text p {
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--green-primary);
    margin-left: 1rem;
}

.about-image-text.reverse .btn {
    position: relative;
    overflow: hidden;
}

.about-image-text.reverse .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.about-image-text.reverse .btn:hover::before {
    left: 100%;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: var(--gray-light);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    border-radius: 10px;
}

.vertical-bar {
    position: absolute;
    left: -60px;
    top: 0;
    bottom: 0;
    width: 120px;
    background: var(--red-primary);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transform: rotate(180deg);
    text-align: center;
}

.vertical-text::after {
    content: " Rights";
    color: var(--gold);
}

.yellow-overlay {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(-15deg);
}

.image-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-black);
    line-height: 1;
}

.counter-number::after {
    content: "+";
    color: var(--red-primary);
    font-size: 2rem;
}

.counter-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
}

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

.about-text h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.action-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.action-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 10px;
    border-left: 4px solid var(--red-primary);
    transition: all 0.3s;
}

.action-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-card i {
    font-size: 2rem;
    color: var(--red-primary);
    flex-shrink: 0;
}

.action-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-black);
    margin-bottom: 0.5rem;
}

.action-content p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin: 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.impact-stat i {
    font-size: 2.5rem;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.impact-stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin: 0;
}

.about-item {
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="0" x2="100" y2="100" stroke="%235a9f37" stroke-width="1" opacity="0.06"/><line x1="100" y1="0" x2="0" y2="100" stroke="%235a9f37" stroke-width="1" opacity="0.06"/></svg>');
    z-index: 0;
}

.about-item > * {
    position: relative;
    z-index: 1;
}

.about-item h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.about-item p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.mission-vision-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.values-column {
    display: flex;
    flex-direction: column;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--green-primary);
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="%232d5016" stroke-width="1" opacity="0.08"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 0;
}

.mission-item > * {
    position: relative;
    z-index: 1;
}

.mission-item h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.values {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin-top: 0;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><line x1="0" y1="50" x2="50" y2="0" stroke="%23d4a574" stroke-width="1" opacity="0.06"/></pattern></defs><rect width="100%" height="100%" fill="url(%23lines)"/></svg>');
    z-index: 0;
    border-radius: 10px;
}

.values > * {
    position: relative;
    z-index: 1;
}

.values h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-weight: 600;
    color: var(--brown-dark);
    transition: all 0.3s;
    border-radius: 5px;
}

.value-item:hover {
    background: var(--gray-light);
    padding-left: 1.5rem;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--red-primary);
    width: 30px;
    flex-shrink: 0;
    text-align: center;
}

.value-item:hover i {
    color: var(--green-primary);
}


.constitution-btn {
    text-align: center;
    margin-top: 3rem;
}

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

.constitution-btn .btn-outline:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 26, 26, 0.4);
}

/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/services-bg.webp') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(45, 80, 22, 0.75) 0%, 
        rgba(139, 26, 26, 0.70) 50%, 
        rgba(212, 165, 116, 0.65) 100%);
    z-index: 1;
}

.services-section > * {
    position: relative;
    z-index: 2;
}

.services-section .section-title {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.services-section .section-title::after {
    background: linear-gradient(to right, var(--gold), var(--orange));
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--red-primary);
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-left-color: var(--green-primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--red-primary);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    color: var(--green-primary);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===== Sectors Section ===== */
.sectors-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-bright) 100%);
    color: var(--white);
}

.sectors-section .section-title {
    color: var(--white);
}

.sectors-section .section-title::after {
    background: linear-gradient(to right, var(--gold), var(--orange));
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sector-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sector-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sector-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.sector-item:hover i {
    transform: scale(1.2);
}

.sector-item.highlight {
    background: var(--red-primary);
    border-color: var(--red-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== Membership Section ===== */
.membership-section {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 40%, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.08) 420px, transparent 420px),
        radial-gradient(circle at 75% 30%, rgba(45, 80, 22, 0.07) 0%, rgba(45, 80, 22, 0.07) 360px, transparent 360px),
        radial-gradient(circle at 50% 85%, rgba(139, 26, 26, 0.06) 0%, rgba(139, 26, 26, 0.06) 450px, transparent 450px);
    z-index: 0;
}

.membership-section > * {
    position: relative;
    z-index: 1;
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.membership-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--gold);
}

.info-card h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: var(--gold);
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card ul li::before {
    content: '';
    display: none;
}

.info-card ul li i {
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-size: 1rem;
}

.info-card p {
    line-height: 1.8;
}

.info-card strong {
    color: var(--red-primary);
    font-size: 1.2rem;
}

.registration-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.registration-form h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.form-group label i {
    color: var(--red-primary);
    margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--red-primary);
}

.form-note a {
    color: var(--red-primary);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ===== News Section ===== */
.news-section {
    padding: 5rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    border-top: 5px solid var(--orange);
    transition: all 0.3s;
    text-align: center;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.news-card:hover .news-icon {
    transform: scale(1.1) rotate(5deg);
}

.news-date {
    color: var(--red-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.news-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===== Leadership Section ===== */
.leadership-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.leadership-content {
    max-width: 1100px;
    margin: 0 auto;
}

.leadership-category {
    margin-bottom: 3rem;
}

.leadership-category h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.leader-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--green-primary);
    transition: all 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.leader-icon {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.leader-card:hover .leader-icon {
    color: var(--red-primary);
    transform: scale(1.15);
}

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

.leader-card p {
    font-size: 1.1rem;
    color: var(--brown-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leader-card a {
    color: var(--red-primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.leader-card a:hover {
    text-decoration: underline;
}

.leader-card a i {
    font-size: 0.8rem;
}

.leadership-category p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

/* ===== Report Section ===== */
.report-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(139, 26, 26, 0.08) 0%, rgba(139, 26, 26, 0.08) 400px, transparent 400px),
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.07) 0%, rgba(212, 165, 116, 0.07) 320px, transparent 320px),
        radial-gradient(circle at 60% 60%, rgba(45, 80, 22, 0.06) 0%, rgba(45, 80, 22, 0.06) 380px, transparent 380px);
    z-index: 0;
}

.report-section > * {
    position: relative;
    z-index: 1;
}

.report-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.report-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Partnerships Section ===== */
.partnerships-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partnership-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.partnership-item i {
    font-size: 2rem;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.partnership-item:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partnership-item:hover i {
    color: var(--green-primary);
    transform: scale(1.2);
}

.status {
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-weight: 400;
    font-style: italic;
}

/* ===== Annual Report Section ===== */
.annual-report-section {
    padding: 5rem 0;
    background: var(--white);
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.report-stat-box {
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.report-stat-box.stat-red {
    background: var(--red-primary);
}

.report-stat-box.stat-gold {
    background: var(--gold);
    color: var(--brown-dark);
}

.report-stat-box.stat-green {
    background: var(--green-primary);
}

.report-stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.report-stat-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.report-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.report-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--brown-dark);
}

.large-stat {
    margin: 3rem 0;
}

.large-stat h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.large-stat p {
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--brown-black);
    color: var(--white);
    padding: 0;
}

.footer-newsletter {
    background: var(--green-primary);
    padding: 3rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-content {
padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.footer-logo h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gold);
    margin: 0;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-section a i {
    font-size: 1rem;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--green-primary);
    border-radius: 5px;
    margin-top: 0.5rem;
}

.social-link:hover {
    background: var(--green-bright);
}

.social-link i {
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: var(--gray-medium);
    margin: 0;
}

.copyright a {
    color: var(--gold);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .top-nav {
        top: 0;
        overflow: hidden;
    }

    .hamburger span {
        background: var(--brown-dark);
    }

    .nav-container {
        overflow: hidden;
        padding: 7px 20px;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .stat-card {
        flex: 1;
        min-width: 150px;
    }

    .about-image-text {
        grid-template-columns: 100%;
        gap: 2rem;
    }
    
    .about-image-text.reverse {
        grid-template-columns: 100%;
        gap: 2rem;
        padding: 2rem 1rem;
        margin-top: 1rem;
    }

    .about-image-text.reverse::before,
    .about-image-text.reverse::after {
        display: none;
    }
    
    .about-image-text.reverse .about-image,
    .about-image-text.reverse .about-text {
        order: 0;
    }

    .about-image-text.reverse .about-image {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .image-widgets {
        top: 10px;
        right: 10px;
        max-width: 200px;
        gap: 0.75rem;
    }

    .widget-box {
        padding: 1rem 1.25rem;
    }

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

    .widget-title {
        font-size: 1.5rem;
    }

    .widget-label {
        font-size: 0.9rem;
    }

    .widget-subtext {
        font-size: 0.75rem;
    }

    .about-image-text.reverse .about-text {
        padding-right: 0;
    }

    .about-image-text.reverse .about-text::before {
        left: -20px;
        height: 60px;
    }

    .about-image-text.reverse .about-text h3 {
        padding-left: 1.5rem;
        font-size: 1.5rem;
    }

    .about-image-text.reverse .about-text h3::before {
        font-size: 3rem;
        top: -5px;
    }

    .about-image-text.reverse .about-text p {
        padding-left: 0.5rem;
        margin-left: 0.5rem;
    }

    .vertical-bar {
        left: -40px;
        width: 80px;
    }

    .vertical-text {
        font-size: 0.85rem;
    }

    .yellow-overlay {
        width: 150px;
        height: 150px;
        top: -20px;
        left: -20px;
    }

    .image-counter {
        bottom: 20px;
        left: 20px;
        padding: 1rem 1.5rem;
    }

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

    .about-text h3 {
        font-size: 1.8rem;
    }

    .action-cards {
        gap: 1rem;
    }

    .action-card {
        padding: 1rem;
    }

    .about-img {
        height: 300px;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

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

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--green-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        color: var(--white);
    }

    .nav-menu a:hover {
        color: var(--gold);
    }

    .nav-menu a::after {
        background: var(--gold);
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 60px;
        max-width: 200px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .union-name {
        font-size: 2rem;
    }

    .union-acronym {
        font-size: 3rem;
    }

    .main-slogan {
        font-size: 1.5rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .mission-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision-column {
        gap: 1.5rem;
    }

    .values {
        margin-top: 0;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 20px;
    }

    .union-name {
        font-size: 1.5rem;
    }

    .union-acronym {
        font-size: 2.5rem;
    }

    .main-slogan {
        font-size: 1.2rem;
    }

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

    .report-form,
    .registration-form {
        padding: 1.5rem;
    }
}
