/*  onts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

/* Global Variables */
:root {
    /* Brand Colors */
    --primary: #FF6600;
    --primary-dark: #cc5200;
    --primary-light: #ff8533;
    --secondary: #1a1a1a;
    --text-main: #2d2d2d;
    --text-light: #666666;
    --bg-body: #FAFAFA;
    --bg-white: #ffffff;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-orange: 0 10px 20px rgba(255, 102, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.35);
}

.btn-blue {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-blue:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* Top Bar */
.top-bar {
    background: var(--bg-white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.contact-info i {
    color: var(--primary);
}

/* Header (Floating Pill) */
.site-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-pill);
    padding: 12px 32px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.site-header.scrolled {
    top: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    color: var(--secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 220px;
    padding: 8px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-main);
}

.dropdown li a:hover {
    background: #FFFAF5;
    /* Slight orange tint */
    color: var(--primary);
}

.dropdown li a::after {
    display: none;
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 102, 0, 0.05) 0%, #ffffff 70%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.vision-box {
    margin-top: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 600px;
}

.vision-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Vision Banner */
.vision-banner {
    padding: 40px 0 80px;
}

.vision-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 500px;
    box-shadow: var(--shadow-lg);
}

.vision-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s ease;
}

.vision-card:hover .vision-bg {
    transform: scale(1.05);
}

.vision-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vision-overlay h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* WAPL ID Section */
.wapl-id-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: #FFF0E6;
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.text-content strong {
    color: var(--secondary);
    font-weight: 600;
}

.video-preview {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    background: #000;
}

.video-preview img {
    width: 100%;
    display: block;
    transition: var(--transition);
    opacity: 0.8;
}

.video-preview:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    transition: var(--transition);
    z-index: 5;
}

.video-preview:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: white;
    color: var(--primary);
}

.video-preview::after {
    content: 'Click to Watch on YouTube';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transition: var(--transition);
}

.video-preview:hover::after {
    opacity: 1;
    bottom: 30px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #111;
    /* Dark theme contrast */
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
}

.benefits-section h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.icon-circle img {
    width: 40px;
    filter: brightness(0) invert(1);
}

.benefit-item p {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Support Section */
.support-section {
    padding: 100px 0;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.check-list li {
    padding-left: 32px;
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list li::before {
    content: '\f058';
    /* fa-circle-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 1.25rem;
}

.split-layout.reverse-mobile {
    grid-template-columns: 1.2fr 1fr;
    /* Text wider logic */
}

.image-content img {
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Program Section */
.program-section {
    padding: 100px 0;
    background: #FFF5F0;
    /* Very light orange tint */
}

/* Programs List */
.programs-list-section {
    padding: 100px 0;
}

.programs-list-section .section-title {
    margin-bottom: 100px;
}

.program-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.program-row:last-child {
    margin-bottom: 0;
}

.program-image {
    position: relative;
}

.program-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.program-row:hover .program-image::before {
    top: 10px;
    left: -10px;
}

.program-image img {
    box-shadow: var(--shadow-lg);
}

.program-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.program-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Footer */
.site-footer {
    background: #000;
    color: white;
    padding: 80px 0 0;
}

.footer-widget h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.footer-widget p,
.footer-widget a {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-widget a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: rotate(360deg);
}

.footer-bottom {
    padding: 32px 0;
    border-top: 1px solid #222;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        top: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .logo img {
        height: 32px;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .split-layout,
    .program-row {
        grid-template-columns: 1fr !important;
        /* Force stack */
        gap: 40px;
    }

    .program-row.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .split-layout.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        height: 300px;
    }

    .vision-overlay h2 {
        font-size: 1.75rem;
    }

    .video-wrapper {
        margin-top: 24px;
    }
}