/* ========================================
   iTalents Academy - Creative & Performing Arts
   by ICTC Learning Solutions
   Color Scheme: Pink / Violet / Cyan creative palette
   ======================================== */

:root {
    --primary: #8B5CF6;
    --primary-dark: #6D28D9;
    --primary-deep: #2E1065;
    --primary-light: #A78BFA;
    --primary-soft: #F5F3FF;
    --pink: #EC4899;
    --pink-dark: #BE185D;
    --cyan: #06B6D4;
    --cyan-dark: #0E7490;
    --amber: #F59E0B;
    --amber-dark: #B45309;
    --amber-light: #FDE68A;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --gradient-main: linear-gradient(135deg, #2E1065 0%, #6D28D9 45%, #EC4899 85%, #F59E0B 120%);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header { background: #FFFFFF; color: var(--text-white); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-md); }

.header-top { background: #FFFFFF; display: flex; align-items: center; justify-content: center; padding: 10px 0; }

.header-nav { background: var(--gradient-main); position: relative; }

.nav { display: flex; justify-content: center; align-items: center; padding-top: 8px; padding-bottom: 8px; }

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

.nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: center; }

.nav-links a {
    color: var(--text-white); font-weight: 700; padding: 8px 16px; border-radius: var(--radius-full);
    transition: var(--transition); text-shadow: 0 0 8px rgba(236, 72, 153, 0.45), 0 0 18px rgba(236, 72, 153, 0.25);
}

.nav-links a:hover { background: rgba(255, 255, 255, 0.15); text-shadow: 0 0 10px rgba(245, 158, 11, 0.9), 0 0 24px rgba(245, 158, 11, 0.6); }

.nav-links a.ictc-home {
    background: linear-gradient(135deg, #DC2626 0%, #7F1D1D 50%, #000000 100%);
    color: #FFFFFF; font-weight: 800; border: 2px solid #FFFFFF; text-shadow: none;
}

.nav-links a.ictc-home:hover {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #111111 100%);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5); transform: translateY(-2px); text-shadow: none;
}

.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero { background: var(--gradient-main); color: var(--text-white); padding: 100px 0; position: relative; overflow: hidden; }

.hero::before {
    content: ''; position: absolute; top: -40%; right: -15%; width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%); border-radius: 50%;
}

.hero::after {
    content: ''; position: absolute; bottom: -35%; left: -10%; width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, transparent 70%); border-radius: 50%;
}

.hero-content { text-align: center; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.hero-badge {
    display: inline-block; padding: 6px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase; background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.5); color: var(--amber-light); margin-bottom: 18px;
}

.hero-text h2 { font-size: 3rem; line-height: 1.12; margin-bottom: 18px; font-weight: 800; letter-spacing: -0.5px; }

.hero-text h2 span { background: linear-gradient(135deg, #FDE68A, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-text p { font-size: 1.2rem; opacity: 0.94; margin-bottom: 30px; line-height: 1.8; max-width: 720px; margin-left: auto; margin-right: auto; }

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }

.hero-stats { display: flex; gap: 44px; margin-top: 42px; justify-content: center; flex-wrap: wrap; }

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

.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--amber); }

.stat-label { font-size: 0.9rem; opacity: 0.92; }

/* Floating talent words */
.float-talents { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.float-talents span {
    position: absolute; font-size: 1.05rem; font-weight: 800; color: rgba(255, 255, 255, 0.14);
    letter-spacing: 0.5px; animation: floatUp 16s linear infinite;
}

@keyframes floatUp { 0% { transform: translateY(110vh); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-15vh); opacity: 0; } }

/* ========================================
   BUTTONS
   ======================================== */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius-full); font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); border: none; text-align: center; }

.btn-primary { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%); color: var(--primary-deep); }

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45); }

.btn-secondary { background: transparent; color: var(--text-white); border: 2px solid var(--text-white); }

.btn-secondary:hover { background: var(--text-white); color: var(--primary); }
.btn-instagram { background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%); color: var(--text-white); border: none; display: inline-flex; align-items: center; gap: 8px; }

.btn-pink { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%); color: #fff; }

.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45); }

.btn-cyan { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%); color: #fff; }

.btn-cyan:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }

.btn-outline:hover { background: var(--primary); color: var(--text-white); }

/* ========================================
   SECTION STYLES
   ======================================== */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-soft { background: var(--primary-soft); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
    display: inline-block; padding: 6px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700;
    background: var(--primary-soft); color: var(--primary); margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase;
}

.section-header h2 { font-size: 2.4rem; color: var(--text-dark); margin-bottom: 15px; font-weight: 800; letter-spacing: -0.5px; }

.section-header h2 span { background: linear-gradient(135deg, var(--pink), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 680px; margin: 0 auto; }

/* ========================================
   PROGRAM TRACKS
   ======================================== */
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.program-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); display: flex; flex-direction: column; }

.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.program-head { height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; position: relative; overflow: hidden; transition: var(--transition); }

.program-card:hover .program-head { border-radius: 0; }

.program-head .flag { font-size: 44px; line-height: 1; margin-bottom: 6px; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)); }

.program-head h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: 0.3px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); text-align: center; padding: 0 10px; }

.program-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.program-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; flex: 1; }

.resources-box { border: 2px dashed var(--border-color); border-radius: var(--radius-md); padding: 16px; text-align: center; background: var(--bg-light); margin-top: auto; }

.resources-box .soon-icon { font-size: 22px; display: block; margin-bottom: 6px; }

.resources-box h5 { font-size: 0.92rem; color: var(--text-dark); margin-bottom: 4px; font-weight: 700; }

.resources-box p { font-size: 0.82rem; color: var(--text-light); }

/* program head gradient variants */
.prog-acting { background: linear-gradient(135deg, #2E1065 0%, #8B5CF6 100%); }
.prog-modeling { background: linear-gradient(135deg, #BE185D 0%, #EC4899 100%); }
.prog-singing { background: linear-gradient(135deg, #B45309 0%, #F59E0B 100%); }
.prog-dancing { background: linear-gradient(135deg, #0E7490 0%, #06B6D4 100%); }
.prog-drawing { background: linear-gradient(135deg, #4C1D95 0%, #9333EA 100%); }
.prog-graphology { background: linear-gradient(135deg, #7C2D12 0%, #EA580C 100%); }
.prog-photography { background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%); }
.prog-vlogging { background: linear-gradient(135deg, #831843 0%, #F43F5E 100%); }
.prog-content { background: linear-gradient(135deg, #6B21A8 0%, #A855F7 100%); }
.prog-culinary { background: linear-gradient(135deg, #9A3412 0%, #F97316 100%); }
.prog-makeup { background: linear-gradient(135deg, #BE123C 0%, #FB7185 100%); }
.prog-voice { background: linear-gradient(135deg, #1E40AF 0%, #60A5FA 100%); }
.prog-dj { background: linear-gradient(135deg, #111827 0%, #4B5563 100%); }
.prog-guitar { background: linear-gradient(135deg, #047857 0%, #10B981 100%); }
.prog-piano { background: linear-gradient(135deg, #312E81 0%, #6366F1 100%); }
.prog-drums { background: linear-gradient(135deg, #7F1D1D 0%, #EF4444 100%); }

/* ========================================
   WHY CHOOSE US
   ======================================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.feature-card { background: var(--bg-white); padding: 30px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); }

.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--pink) 0%, var(--primary) 100%); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; color: #fff; }

.feature-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; }

/* ========================================
   HOW IT WORKS / LEARNING PATH
   ======================================== */
.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.path-step { text-align: center; position: relative; padding: 20px; }

.path-step .step-num { width: 52px; height: 52px; background: linear-gradient(135deg, var(--pink) 0%, var(--primary) 100%); color: #fff; border-radius: var(--radius-full); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35); }

.path-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.path-step p { font-size: 0.88rem; color: var(--text-light); }

/* ========================================
   BLOGS
   ======================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.blog-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }

.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 46px; color: #fff; }

.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.blog-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 12px; align-self: flex-start; background: var(--primary-soft); color: var(--primary); }

.blog-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 14px; align-items: center; }
.blog-meta i { margin-right: 4px; color: var(--primary-light); }

.blog-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; line-height: 1.45; }
.blog-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; flex: 1; }

.blog-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--primary); }
.blog-link:hover { gap: 12px; color: var(--primary-dark); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.testimonial-card { background: var(--bg-white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); transition: var(--transition); }

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.testimonial-card .quote { font-size: 0.95rem; color: var(--text-dark); font-style: italic; line-height: 1.8; margin-bottom: 18px; }

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

.testimonial-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--primary)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }

.testimonial-author h5 { font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ========================================
   FAQ
   ======================================== */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 14px; overflow: hidden; }

.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; font-size: 1.02rem; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }

.faq-question .faq-icon { color: var(--primary); transition: transform 0.3s ease; }

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer { display: none; padding: 0 24px 20px; font-size: 0.94rem; color: var(--text-light); line-height: 1.8; }

.faq-item.open .faq-answer { display: block; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section { background: var(--gradient-main); color: var(--text-white); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }

.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, transparent 70%); border-radius: 50%; }

.cta-content { position: relative; z-index: 1; }

.cta-section h2 { font-size: 2.4rem; margin-bottom: 16px; font-weight: 800; }
.cta-section p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: linear-gradient(135deg, #15032B 0%, #2E1065 100%); color: var(--text-white); padding: 60px 0 30px; }

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

.footer-brand h3 { font-size: 1.5rem; margin-bottom: 15px; }
.footer-brand p { opacity: 0.8; line-height: 1.8; font-size: 0.9rem; }

.footer-links h4 { font-size: 1.05rem; margin-bottom: 20px; color: var(--amber); }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { opacity: 0.8; transition: var(--transition); font-size: 0.9rem; }
.footer-links ul li a:hover { opacity: 1; color: var(--amber); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 28px; text-align: center; opacity: 0.7; font-size: 0.85rem; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1100px) {
    .program-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-text h2 { font-size: 2.4rem; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .path-grid, .blog-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary-deep); flex-direction: column; padding: 20px; gap: 14px; border-radius: 0 0 14px 14px; }
    .nav-links.active { display: flex; }
    .nav-links a { width: 100%; text-align: center; }
    .mobile-menu-btn { display: block; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
    .header-top { justify-content: flex-start; }
    .hero { padding: 60px 0; }
    .hero-text h2 { font-size: 1.9rem; }
    .hero-text p { font-size: 1.05rem; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 2rem; }
    .program-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .hero-text h2 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .features-grid, .path-grid, .blog-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 1.7rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
