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

        :root {
            --primary: #1b4332;
            --primary-light: #2d6a4f;
            --accent: #d4a373;
            --accent-light: #e9c89b;
            --bg: #faf8f5;
            --bg-alt: #f0ece4;
            --text: #2d2d2d;
            --text-light: #6b6b6b;
            --white: #ffffff;
            --radius: 16px;
        }

        html {
            scroll-behavior: smooth;
        }

        .text-center {
            text-align: center;
        }
        
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'DM Serif Display', serif;
            font-weight: 400;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250, 248, 245, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 76px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-brand .logo-mark {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 22px;
            color: var(--accent);
            font-weight: 400;
        }

        .brand-text {
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 1px;
            color: var(--primary);
        }

        .brand-text small {
            display: block;
            font-weight: 400;
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-light);
            transition: color 0.3s;
        }

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

        /* Dropdown */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown>a {
            cursor: pointer;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 180px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.3s;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 20px;
            font-size: 15px;
            color: var(--text-light) !important;
            transition: all 0.2s;
        }

        .nav-dropdown-menu a:hover {
            color: var(--primary) !important;
            background: var(--bg-alt);
        }

        .nav-btn {
            background: var(--primary);
            color: var(--white) !important;
            padding: 10px 28px;
            border-radius: 100px;
            font-weight: 700 !important;
            font-size: 15px !important;
            transition: all 0.3s;
        }

        .nav-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(27, 67, 50, 0.2);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile Nav Drawer */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--white);
            z-index: 1000;
            padding: 100px 40px;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            font-size: 20px;
            color: var(--text);
            font-weight: 500;
        }

        .mobile-submenu {
            padding-left: 20px;
            display: none;
            flex-direction: column;
            gap: 15px;
            margin-top: 10px;
        }

        .mobile-submenu.active {
            display: flex;
        }

        .mobile-submenu a {
            font-size: 16px !important;
            color: var(--text-light) !important;
        }

        /* Dropdown Overlay */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
            background: var(--bg);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 70vh;
        }

        .hero-left {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-alt);
            border-radius: 100px;
            padding: 8px 20px 8px 8px;
            margin-bottom: 28px;
        }

        .hero-badge .dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .hero-badge span {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
        }

        .hero h1 {
            font-size: clamp(42px, 5vw, 72px);
            line-height: 1.1;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .hero h1 .highlight {
            position: relative;
            display: inline-block;
        }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 12px;
            background: var(--accent-light);
            z-index: -1;
            border-radius: 4px;
            opacity: 0.6;
        }

        .hero-desc {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.8;
            max-width: 480px;
            margin-bottom: 36px;
        }

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

        .btn-fill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-fill:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(27, 67, 50, 0.25);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: gap 0.3s;
            cursor: pointer;
        }

        .btn-ghost:hover {
            gap: 14px;
        }

        /* Hero Right - Image Slider */
        .hero-right {
            position: relative;
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
            max-width: 500px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 24px 50px rgba(27, 67, 50, 0.15);
        }

        .slider-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: sliderFade 12s infinite;
        }

        .slider-img:nth-child(1) {
            animation-delay: 0s;
        }

        .slider-img:nth-child(2) {
            animation-delay: 4s;
        }

        .slider-img:nth-child(3) {
            animation-delay: 8s;
        }

        @keyframes sliderFade {
            0% {
                opacity: 0;
                transform: scale(1.05);
            }

            10% {
                opacity: 1;
                transform: scale(1);
            }

            33% {
                opacity: 1;
                transform: scale(1);
            }

            43% {
                opacity: 0;
                transform: scale(1.05);
            }

            100% {
                opacity: 0;
                transform: scale(1.05);
            }
        }

        .mosaic-float {
            position: absolute;
            background: var(--white);
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            z-index: 3;
        }

        .mosaic-float.left {
            bottom: 60px;
            left: -20px;
        }

        .mosaic-float.right {
            top: 60px;
            right: -20px;
        }

        .float-number {
            font-family: 'DM Serif Display', serif;
            font-size: 36px;
            color: var(--primary);
            line-height: 1;
        }

        .float-label {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 4px;
        }

        /* ===== IMPACT STRIP ===== */
        .impact-strip {
            background: var(--primary);
            padding: 48px 0;
            margin: 0;
            position: relative;
            overflow: hidden;
        }

        .impact-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(90deg, transparent, transparent 25%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 50%);
        }

        .impact-items {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .impact-item .number {
            font-family: 'DM Serif Display', serif;
            font-size: 48px;
            color: var(--accent);
            line-height: 1;
        }

        .impact-item .label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            margin-top: 8px;
            font-weight: 500;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(27, 67, 50, 0.08);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(32px, 3.5vw, 48px);
            color: var(--primary);
            line-height: 1.2;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .srv-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 32px;
            transition: all 0.4s;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .srv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-color: var(--accent);
        }

        .srv-card .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
        }

        .srv-card:nth-child(1) .icon-wrap {
            background: #e8f5e9;
        }

        .srv-card:nth-child(2) .icon-wrap {
            background: #fff3e0;
        }

        .srv-card:nth-child(3) .icon-wrap {
            background: #e3f2fd;
        }

        .srv-card h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .srv-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 700;
            font-size: 13px;
            transition: gap 0.3s;
        }

        .card-link:hover {
            gap: 12px;
            color: var(--accent);
        }

        /* ===== ABOUT / STORY ===== */
        .story {
            padding: 100px 0;
            background: var(--bg);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .story-img-wrap {
            position: relative;
        }

        .story-img {
            width: 100%;
            border-radius: var(--radius);
            aspect-ratio: 3/4;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .story-badge-box {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--accent);
            border-radius: var(--radius);
            padding: 28px 32px;
            color: var(--white);
        }

        .story-badge-box .big {
            font-family: 'DM Serif Display', serif;
            font-size: 42px;
            line-height: 1;
        }

        .story-badge-box .small {
            font-size: 13px;
            font-weight: 500;
        }

        .story-text h2 {
            font-size: clamp(32px, 3.5vw, 46px);
            color: var(--primary);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .story-text p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 16px;
        }

        /* Vision/Mission pills */
        .vm-pills {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .vm-pill {
            background: var(--bg-alt);
            padding: 20px 24px;
            border-radius: 12px;
            flex: 1;
            min-width: 200px;
            border-left: 4px solid var(--primary);
        }

        .vm-pill h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .vm-pill p {
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        /* ===== ANNOUNCEMENT BAR ===== */
        .announcement-bar {
            background-color: var(--primary);
            color: var(--accent);
            text-align: center;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.025em;
            border-bottom: 1px solid rgba(197, 160, 89, 0.2);
            position: relative;
            z-index: 1000;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 100px 0;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(212, 163, 115, 0.08);
        }

        .testimonials .section-tag {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent);
        }

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

        .test-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .test-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            padding: 36px 28px;
        }

        .test-quote {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }

        .test-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .test-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            font-size: 16px;
        }

        .test-name {
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
        }

        .test-role {
            color: rgba(255, 255, 255, 0.4);
            font-size: 12px;
        }

        /* ===== CTA ===== */
        .cta {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .cta-box {
            background: var(--white);
            border-radius: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.06);
        }

        .cta-content {
            padding: 60px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-content h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .cta-content p {
            color: var(--text-light);
            font-size: 15px;
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .cta-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary);
            padding: 80px 0 32px;
        }

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

        .footer h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            line-height: 1.8;
        }

        .footer ul {
            list-style: none;
        }

        .footer li {
            margin-bottom: 10px;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-right {
                display: none;
            }

            .impact-items {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .story-grid {
                grid-template-columns: 1fr;
            }

            .test-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                grid-template-columns: 1fr;
            }

            .cta-img {
                min-height: 250px;
            }

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

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-left {
            animation: fadeUp 0.8s ease-out;
        }

        .hero-right {
            animation: fadeUp 0.8s ease-out 0.2s both;
        }

        /* ===== APPLY MODAL ===== */
        .apply-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .apply-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .am-content {
            background: var(--white);
            border-radius: 20px;
            width: 90%;
            max-width: 440px;
            padding: 32px;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.3s ease;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
        }

        .apply-modal.active .am-content {
            transform: scale(1);
        }

        .am-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
            transition: color 0.2s;
        }

        .am-close:hover {
            color: var(--primary);
        }

        .am-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .am-icon {
            width: 64px;
            height: 64px;
            background: rgba(27, 67, 50, 0.05);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 32px;
        }

        .am-header h3 {
            color: var(--primary);
            font-size: 22px;
            margin-bottom: 8px;
        }

        .am-header p {
            color: var(--text-light);
            font-size: 14px;
        }

        .am-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .am-opt {
            display: flex;
            align-items: center;
            padding: 16px;
            border: 2px solid transparent;
            background: var(--bg-alt);
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .am-opt:hover {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        .am-opt-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            margin-right: 16px;
            transition: all 0.2s;
        }

        .am-opt:hover .am-opt-icon {
            background: var(--primary);
            color: var(--white);
        }

        .am-opt-text h4 {
            color: var(--text);
            margin-bottom: 4px;
            font-size: 15px;
            transition: color 0.2s;
        }

        .am-opt:hover .am-opt-text h4 {
            color: var(--primary);
        }

        .am-opt-text p {
            color: var(--text-light);
            font-size: 12px;
            margin: 0;
        }
/* ===== INNER PAGE HERO ===== */
.inner-hero {
    background: linear-gradient(-45deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    position: relative;
    padding: 120px 0 120px;
    overflow: hidden;
    text-align: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,163,115,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.inner-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    border-radius: 50%;
}

.inner-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.inner-hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.inner-hero h1 {
    font-size: clamp(40px, 4.5vw, 56px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.inner-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 550px;
}

/* ===== ORGANIZATION ===== */
.org-section { padding: 100px 0; background: var(--white); }
.org-section:nth-child(even) { background: var(--bg); }

.org-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.org-header .section-tag { display: block; background: none; color: var(--text-light); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; margin-bottom: 16px; font-weight: 600; }
.org-header .section-title { font-size: 40px; color: var(--primary); margin: 0; line-height: 1.2; }

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

.org-card {
    background: var(--white);
    border-top: 4px solid var(--primary);
    padding: 40px 32px;
    transition: transform 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}
.org-section:nth-child(even) .org-card { background: var(--bg-alt); }
.org-card:hover { transform: translateY(-4px); }

.org-role {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 16px;
}

.org-name {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--primary);
    line-height: 1.3;
}

.org-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .org-list-grid { grid-template-columns: 1fr; } }

.org-table-wrap {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
}

.org-table-header {
    background: var(--primary);
    color: var(--white);
    padding: 24px 32px;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
}

.org-table-header.accent {
    background: rgba(212, 163, 115, 0.1);
    color: var(--primary);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.org-table { width: 100%; border-collapse: collapse; }
.org-table td {
    padding: 20px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 16px;
    color: var(--text);
}
.org-table tr:last-child td { border-bottom: none; }
.org-table td.role-col {
    color: var(--text-light);
    width: 45%;
}
.org-table td.name-col {
    font-weight: 600;
    color: var(--primary);
}


/* ===== ABOUT PAGE UNIQUE STYLING ===== */
.about-intro-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; padding: 100px 0; }
@media (max-width: 992px) { .about-intro-split { grid-template-columns: 1fr; gap: 40px; text-align: center; } }

.about-img-frame { position: relative; padding-bottom: 20px; padding-right: 20px; aspect-ratio: 4 / 5; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 2; position: relative; }
.about-img-frame::after { 
    content: ''; position: absolute; bottom: 0; right: 0; width: 70%; height: 70%; 
    background: var(--accent); border-radius: var(--radius); opacity: 0.1; z-index: 1; 
}

.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
@media (max-width: 576px) { .about-features { grid-template-columns: 1fr; } }

.feat-item { border-left: 2px solid var(--accent); padding-left: 24px; }
.feat-item h4 { font-size: 18px; color: var(--primary); margin-bottom: 12px; }
.feat-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.values-premium { background: var(--bg-alt); padding: 100px 0; }
.values-grid-premium { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(0,0,0,0.05); }
@media (max-width: 992px) { .values-grid-premium { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .values-grid-premium { grid-template-columns: 1fr; } }

.value-box { background: var(--bg-alt); padding: 60px 40px; text-align: center; transition: all 0.3s ease; }
.value-box:hover { background: var(--white); transform: translateY(-10px); z-index: 10; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.value-num { font-size: 48px; font-family: 'DM Serif Display', serif; color: var(--primary); opacity: 0.1; margin-bottom: -20px; display: block; }
.value-box h3 { font-size: 24px; color: var(--primary); font-family: 'DM Serif Display', serif; margin-bottom: 16px; }
.value-box p { font-size: 14px; color: var(--text-light); }


/* ===== PREMIUM FORM STYLING ===== */
.form-container-premium { background: var(--white); border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.08); overflow: hidden; }

.tab-nav-premium { display: flex; background: var(--bg-alt); padding: 8px; border-radius: 16px; margin: 0 40px 40px; }
.tab-btn-premium { 
    flex: 1; padding: 16px; border: none; background: none; font-weight: 600; color: var(--text-light); 
    cursor: pointer; border-radius: 12px; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.tab-btn-premium.active { background: var(--white); color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.form-step-indicator { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.step-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); opacity: 0.2; }
.step-dot.active { opacity: 1; width: 30px; border-radius: 10px; }

.form-group-premium { margin-bottom: 24px; }
.form-group-premium label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 10px; opacity: 0.6; }
.form-group-premium input, .form-group-premium select, .form-group-premium textarea {
    width: 100%; padding: 16px 20px; border: 1px solid rgba(0,0,0,0.06); background: var(--bg-alt); border-radius: 12px;
    font-family: inherit; font-size: 15px; transition: all 0.3s ease;
}
.form-group-premium input:focus, .form-group-premium select:focus, .form-group-premium textarea:focus {
    outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 8px 24px rgba(212, 163, 115, 0.1);
}

.form-section-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--primary); margin-bottom: 30px; border-bottom: 1px solid var(--bg-alt); padding-bottom: 15px; }


/* ===== CONTACT PAGE UNIQUE STYLING ===== */
.contact-grid-premium { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; padding: 100px 0; }
@media (max-width: 992px) { .contact-grid-premium { grid-template-columns: 1fr; gap: 40px; } }

.contact-info-panel { background: var(--primary); color: var(--white); padding: 60px; border-radius: 24px; position: relative; overflow: hidden; }
.contact-info-panel::before { 
    content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; 
    background: var(--accent); opacity: 0.1; border-radius: 50%; 
}

.contact-card-v2 { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 40px; }
.contact-card-v2 .icon { 
    width: 48px; height: 48px; min-width: 48px; background: rgba(255,255,255,0.1); 
    display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 20px; 
}
.contact-card-v2 h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; font-weight: 700; }
.contact-card-v2 p, .contact-card-v2 a { font-size: 16px; color: var(--white); opacity: 0.9; text-decoration: none; line-height: 1.6; }

.contact-form-premium { background: var(--white); padding: 40px; border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.08); }

.map-full-width { height: 450px; background: #e5e5e5; border-radius: 24px; position: relative; overflow: hidden; margin-top: 60px; border: 1px solid rgba(0,0,0,0.05); }
.map-placeholder-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; background: rgba(255,255,255,0.8); backdrop-filter: blur(5px); }


/* ===== ACTIVITY HUB PREMIUM STYLING ===== */
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 992px) { .activity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .activity-grid { grid-template-columns: 1fr; } }

.activity-card { 
    background: var(--white); border-radius: 20px; overflow: hidden; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.05); transition: all 0.4s ease; 
    display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.03);
}
.activity-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.1); }

.activity-image-wrap { height: 240px; position: relative; overflow: hidden; }
.activity-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.activity-card:hover .activity-image-wrap img { transform: scale(1.1); }

.activity-badge {
    position: absolute; top: 20px; right: 20px; padding: 6px 14px; 
    background: var(--white); color: var(--primary); font-size: 11px; 
    font-weight: 700; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px;
}

.activity-body { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
.activity-body h3 { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--primary); margin-bottom: 12px; }
.activity-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.signature-text {
    font-family: 'Satisfy', cursive;
    font-size: 36px;
    color: var(--primary);
    margin: 10px 0 0;
}

.president-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    padding-left: 40px;
}

.president-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--accent);
    opacity: 0.3;
}

.president-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-group-file {
    margin-bottom: 24px;
}

.form-group-file label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
    opacity: 0.6;
}

.form-group-file input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px dashed rgba(0,0,0,0.1);
    background: var(--bg-alt);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group-file input[type="file"]:hover {
    border-color: var(--accent);
    background: var(--white);
}

.form-file-note {
    font-size: 12px;
    color: var(--accent);
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

/* ===== PRESIDENT MESSAGE REDESIGN ===== */
.president-message-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.president-avatar-wrap {
    margin-bottom: 40px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}

.president-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--white);
}

.president-avatar-wrap:hover {
    transform: scale(1.05);
}

.president-avatar-wrap::after {
    content: '🔍';
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.president-avatar-wrap:hover::after {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
