/* ============================================
   Ummah Media Group - Corporate Website
   Brand: Teal #14877A | Deep Teal #0D4F4F | Amber #F5A623
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --teal: #14877A;
    --teal-light: #1a9e8f;
    --teal-glow: rgba(20, 135, 122, 0.4);
    --deep-teal: #0D4F4F;
    --deep-teal-dark: #0a3d3d;
    --amber: #F5A623;
    --amber-glow: rgba(245, 166, 35, 0.3);
    --green: #2ECC71;
    --red: #e74c3c;
    --cyan: #00d4ff;
    --surface: #0f1419;
    --surface-2: #1a1f2e;
    --surface-3: #242b3d;
    --surface-4: #2d364a;
    --text: #f0f2f5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--teal-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

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

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

/* --- Section Commons --- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-label-light { color: var(--amber); }

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(15, 20, 25, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.logo-umg {
    font-size: 22px;
    font-weight: 900;
    color: var(--teal-light);
    letter-spacing: 2px;
}

.logo-divider {
    width: 1px;
    height: 20px;
    background: var(--border-hover);
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 1px;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(20, 135, 122, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal-glow), transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--amber-glow), transparent 70%);
    top: 20%;
    right: -10%;
    animation-delay: -7s;
    opacity: 0.3;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    bottom: -5%;
    left: 30%;
    animation-delay: -14s;
    opacity: 0.25;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(10px, -10px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 135, 122, 0.12);
    border: 1px solid rgba(20, 135, 122, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-light);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}

.hero-title {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.hero-line-1 {
    display: block;
    background: linear-gradient(135deg, var(--text) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--amber) 0%, #f7c948 50%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    box-shadow: 0 4px 20px var(--teal-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--teal-glow);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal-light);
    background: rgba(20, 135, 122, 0.06);
}

.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.hero-stat-plus, .hero-stat-percent {
    font-size: 24px;
    font-weight: 700;
    color: var(--amber);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* --- Scroll Indicator --- */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
}

.scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--teal-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 32px; }
    50% { opacity: 1; height: 48px; }
}

/* --- About Section --- */
.section-about {
    background: var(--surface);
}

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

.about-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    background: rgba(20, 135, 122, 0.1);
    border: 1px solid rgba(20, 135, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About Cards */
.about-visual { position: relative; height: 480px; }

.about-card-stack { position: relative; width: 100%; height: 100%; }

.about-card {
    position: absolute;
    width: 220px;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: 0 12px 40px rgba(20, 135, 122, 0.15);
}

.about-card-1 { top: 20px; left: 20%; }
.about-card-2 { top: 180px; right: 5%; }
.about-card-3 { bottom: 20px; left: 10%; }

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

.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(20, 135, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--teal-light);
}

.card-stat {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.card-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Ecosystem Section --- */
.section-ecosystem {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
}

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

.eco-card {
    position: relative;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eco-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 135, 122, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(20, 135, 122, 0.2);
}

.eco-card-featured {
    background: linear-gradient(135deg, rgba(20, 135, 122, 0.08) 0%, var(--surface-2) 100%);
    border-color: rgba(20, 135, 122, 0.3);
}

.eco-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(20, 135, 122, 0.06), transparent 40%);
    pointer-events: none;
}

.eco-card-inner {
    padding: 32px;
    position: relative;
    z-index: 1;
}

.eco-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.eco-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.eco-card:hover .eco-icon { transform: scale(1.1); }

.eco-icon-man { background: rgba(20, 135, 122, 0.15); color: var(--teal-light); }
.eco-icon-causes { background: rgba(231, 76, 60, 0.12); color: #e74c3c; }
.eco-icon-pass { background: rgba(0, 212, 255, 0.12); color: var(--cyan); }
.eco-icon-jobs { background: rgba(245, 166, 35, 0.12); color: var(--amber); }
.eco-icon-masjid { background: rgba(46, 204, 113, 0.12); color: var(--green); }
.eco-icon-city { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }
.eco-icon-library { background: rgba(52, 152, 219, 0.12); color: #3498db; }
.eco-icon-iswp { background: rgba(231, 76, 60, 0.12); color: #e74c3c; }
.eco-icon-places { background: rgba(245, 166, 35, 0.12); color: var(--amber); }

.eco-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.eco-badge-revenue { background: rgba(245, 166, 35, 0.15); color: var(--amber); }
.eco-badge-live { background: rgba(46, 204, 113, 0.15); color: var(--green); }
.eco-badge-core { background: rgba(0, 212, 255, 0.15); color: var(--cyan); }

.eco-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.eco-tagline {
    font-size: 14px;
    color: var(--teal-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.eco-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.eco-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.eco-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.eco-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.eco-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-light);
    transition: all var(--transition);
}

.eco-link:hover {
    color: var(--amber);
    gap: 10px;
}

/* Ecosystem Connector */
.ecosystem-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
    gap: 24px;
}

.connector-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
}

.connector-hub {
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* --- Impact Section --- */
.section-impact {
    background: var(--surface);
}

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

.impact-card {
    padding: 48px 32px;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--amber));
    opacity: 0;
    transition: opacity var(--transition);
}

.impact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 135, 122, 0.3);
}

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

.impact-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.impact-number span {
    background: linear-gradient(135deg, var(--teal-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.impact-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Advertise Section --- */
.section-advertise {
    padding: 80px 0;
}

.advertise-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 80px;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--deep-teal-dark) 50%, #0a3535 100%);
    border: 1px solid rgba(20, 135, 122, 0.3);
}

.advertise-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(245, 166, 35, 0.06) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 60% at 70% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 50%, black 20%, transparent 70%);
}

.advertise-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.advertise-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.advertise-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.advertise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.adv-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.adv-feature svg { color: var(--green); flex-shrink: 0; }

/* --- Team Section --- */
.section-team {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

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

.team-card {
    padding: 36px 24px;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 135, 122, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.team-card-ceo {
    background: linear-gradient(135deg, rgba(20, 135, 122, 0.08), var(--surface-2));
    border-color: rgba(20, 135, 122, 0.2);
}

.team-avatar {
    margin: 0 auto 20px;
}

.team-avatar-inner {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--deep-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 auto;
    box-shadow: 0 4px 20px var(--teal-glow);
}

.team-avatar-revenue { background: linear-gradient(135deg, var(--amber), #d4900a); box-shadow: 0 4px 20px var(--amber-glow); }
.team-avatar-ops { background: linear-gradient(135deg, var(--teal), #0a5c5c); }
.team-avatar-marketing { background: linear-gradient(135deg, var(--green), #1a8a4a); box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3); }
.team-avatar-it { background: linear-gradient(135deg, #9b59b6, #6c3483); box-shadow: 0 4px 20px rgba(155, 89, 182, 0.3); }

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--teal-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-dept {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

.team-dept-engineering { background: rgba(0, 212, 255, 0.12); color: var(--cyan); }
.team-dept-revenue { background: rgba(245, 166, 35, 0.12); color: var(--amber); }
.team-dept-ops { background: rgba(20, 135, 122, 0.12); color: var(--teal-light); }
.team-dept-marketing { background: rgba(46, 204, 113, 0.12); color: var(--green); }
.team-dept-it { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }

/* --- Contact Section --- */
.section-contact {
    background: var(--surface);
}

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

.contact-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-channel {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.channel-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    background: rgba(20, 135, 122, 0.1);
    border: 1px solid rgba(20, 135, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
}

.contact-channel h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-channel a {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-channel a:hover { color: var(--amber); }

/* --- Contact Form --- */
.contact-form-wrap {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 135, 122, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--surface-2);
    color: var(--text);
}

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

.form-status {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* --- Footer --- */
.footer {
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

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

.footer-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-light);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

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

.footer-col a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Bismillah --- */
.bismillah {
    text-align: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--deep-teal-dark) 0%, var(--deep-teal) 100%);
    border-bottom: 1px solid rgba(20, 135, 122, 0.2);
    position: relative;
    z-index: 1001;
}

.bismillah-text {
    font-size: 22px;
    color: var(--amber);
    opacity: 0.9;
    letter-spacing: 2px;
    line-height: 1.8;
}

/* --- Ramadan Banner --- */
.ramadan-banner {
    background: linear-gradient(90deg, #1a6b3c 0%, #0D4F4F 50%, #1a6b3c 100%);
    padding: 10px 24px;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
    animation: ramadanGlow 4s ease-in-out infinite;
}

@keyframes ramadanGlow {
    0%, 100% { box-shadow: 0 2px 20px rgba(46, 204, 113, 0); }
    50% { box-shadow: 0 2px 20px rgba(46, 204, 113, 0.15); }
}

.ramadan-banner.hidden { display: none; }

.ramadan-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ramadan-star {
    color: var(--amber);
    font-size: 18px;
    animation: twinkle 2s ease-in-out infinite;
}

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

.ramadan-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.ramadan-text strong {
    color: var(--amber);
    font-weight: 700;
}

.ramadan-cta {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    background: var(--green);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.ramadan-cta:hover {
    background: #27ae60;
    color: white;
    transform: scale(1.05);
}

.ramadan-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color var(--transition);
}

.ramadan-close:hover { color: white; }

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { height: 300px; display: none; }
    .advertise-card { padding: 48px; }
    .advertise-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }
    .nav-links.open .nav-link { font-size: 24px; }

    .nav-toggle { display: flex; z-index: 1001; }

    .hero { padding: 100px 24px 60px; min-height: auto; }
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 28px; }
    .hero-stat-divider { height: 24px; }
    .hero-scroll { display: none; }

    .ecosystem-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .advertise-card { padding: 32px; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
}
