/* =====================================================
   LP KURSUS IELTS - GOLDEN ONLINE CLASS
   Optimized by Teguh Gunawan
   ===================================================== */

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 20px; }

/* =====================================================
   HEADER - Background #1A6DE5
   ===================================================== */
#header-privat { background: #1A6DE5; position: sticky; top: 0; z-index: 99999; font-family: 'Plus Jakarta Sans', sans-serif; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
#header-privat .header-container { max-width: 1200px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }
#header-privat .header-logo img { height: 45px; width: auto; }
#header-privat .header-nav { display: flex; }
#header-privat .nav-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
#header-privat .nav-menu > li { position: relative; }
#header-privat .nav-menu > li > a { display: flex; align-items: center; gap: 6px; padding: 10px 16px; color: #FFFFFF; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.3s ease; border-radius: 8px; }
#header-privat .nav-menu > li > a:hover { background: rgba(255, 255, 255, 0.15); }
#header-privat .nav-menu > li > a i { font-size: 12px; transition: transform 0.3s ease; }
#header-privat .has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
#header-privat .has-submenu:hover > a i { transform: rotate(180deg); }
#header-privat .submenu { position: absolute; top: 100%; left: 0; background: #FFFFFF; min-width: 200px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); list-style: none; margin: 0; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100000; }
#header-privat .submenu li a { display: block; padding: 12px 20px; color: #1a1a1a; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s ease; }
#header-privat .submenu li a:hover { background: #EBF4FF; color: #1A6DE5; }

/* Header Mobile Toggle */
#header-privat .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 8px; }
#header-privat .mobile-toggle .bar { width: 24px; height: 2px; background: #FFFFFF; transition: all 0.3s ease; border-radius: 2px; }
#header-privat .mobile-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#header-privat .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
#header-privat .mobile-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Header Mobile Navigation */
#header-privat .mobile-nav { display: none; background: #FFFFFF; border-radius: 0 0 16px 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
#header-privat .mobile-nav.active { max-height: 600px; }
#header-privat .mobile-menu { list-style: none; margin: 0; padding: 16px 0; }
#header-privat .mobile-menu > li > a, #header-privat .mobile-menu > li > .submenu-toggle { display: flex; align-items: center; padding: 14px 24px; color: #1a1a1a; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.2s ease; cursor: pointer; background: transparent; border: none; width: 100%; text-align: left; }
#header-privat .mobile-menu .menu-icon { width: 22px; margin-right: 12px; color: #1A6DE5; }
#header-privat .mobile-menu > li > a > span, #header-privat .mobile-menu > li > .submenu-toggle > span { flex-grow: 1; }
#header-privat .mobile-menu > li > .submenu-toggle > .arrow { color: #666; transition: transform 0.3s ease; margin-left: auto; }
#header-privat .mobile-menu > li > a:hover, #header-privat .mobile-menu > li > .submenu-toggle:hover { background: #EBF4FF; }
#header-privat .mobile-submenu { list-style: none; margin: 0; padding: 0; background: #F8FAFF; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
#header-privat .mobile-submenu.active { max-height: 300px; }
#header-privat .mobile-submenu li a { display: block; padding: 12px 24px 12px 60px; color: #4b5563; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s ease; }
#header-privat .mobile-submenu li a:hover { background: #EBF4FF; color: #1A6DE5; }

/* Header Mobile CTA */
#header-privat .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 16px 24px; padding: 14px 24px; background: linear-gradient(135deg, #1A6DE5, #0D5BCE); color: #FFFFFF !important; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 10px; box-shadow: 0 4px 15px rgba(26, 109, 229, 0.25); }

/* Header Placement Test Button */
#header-privat .nav-btn-pto { background: #FFD700; color: #1a1a1a !important; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
#header-privat .nav-btn-pto:hover { background: #e6c200; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4); }
#header-privat .mobile-btn-pto { background: #FFD700; color: #1a1a1a !important; border-radius: 8px; margin-top: 10px; }
#header-privat .mobile-btn-pto span { color: #1a1a1a; }
#header-privat .mobile-btn-pto .menu-icon { color: #1a1a1a; }

/* Header Responsive */
@media (max-width: 968px) {
    #header-privat .header-nav { display: none; }
    #header-privat .mobile-toggle { display: flex; }
    #header-privat .mobile-nav { display: block; }
}
@media (max-width: 480px) {
    #header-privat .header-logo img { height: 38px; }
    #header-privat .header-container { padding: 10px 16px; }
}

/* =====================================================
   FOOTER - Background #1A6DE5
   ===================================================== */
#footer-privat { background: #1A6DE5; color: #FFFFFF; padding: 60px 0 0; font-family: 'Plus Jakarta Sans', sans-serif; }
#footer-privat .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
#footer-privat .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
#footer-privat .footer-brand { display: flex; flex-direction: column; }
#footer-privat .footer-logo img { height: 50px; width: auto; margin-bottom: 16px; }
#footer-privat .footer-desc { color: rgba(255, 255, 255, 0.85); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
#footer-privat .footer-desc strong { color: #FFFFFF; }
#footer-privat .footer-social { display: flex; gap: 12px; }
#footer-privat .social-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #FFFFFF; text-decoration: none; transition: all 0.3s ease; }
#footer-privat .social-icon:hover { background: rgba(255, 255, 255, 0.1); }
#footer-privat .social-icon:hover i { color: #FBBF24; transform: scale(1.2); }
#footer-privat .social-icon i { font-size: 18px; transition: all 0.3s ease; }
#footer-privat .footer-title { font-size: 18px; font-weight: 700; color: #FFFFFF; margin-bottom: 20px; }
#footer-privat .footer-menu { list-style: none; margin: 0; padding: 0; }
#footer-privat .footer-menu li { margin-bottom: 12px; }
#footer-privat .footer-menu a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
#footer-privat .footer-menu a:hover { color: #FBBF24; }
#footer-privat .footer-menu a i { font-size: 10px; color: rgba(255, 255, 255, 0.5); transition: all 0.3s ease; }
#footer-privat .footer-menu a:hover i { color: #FBBF24; transform: translateX(3px); }
#footer-privat .contact-list { list-style: none; margin: 0; padding: 0; }
#footer-privat .contact-list li { margin-bottom: 16px; }
#footer-privat .contact-list a { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
#footer-privat .contact-list a:hover { color: #FFFFFF; }
#footer-privat .contact-icon { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
#footer-privat .contact-list a:hover .contact-icon { background: rgba(255, 255, 255, 0.1); }
#footer-privat .contact-list a:hover .contact-icon i { color: #FBBF24; transform: scale(1.15); }
#footer-privat .contact-icon i { color: #FFFFFF; font-size: 14px; transition: all 0.3s ease; }
#footer-privat .footer-bottom { padding: 20px 0; text-align: center; }
#footer-privat .footer-bottom p { color: rgba(255, 255, 255, 0.7); font-size: 14px; margin: 0; }

/* Footer Responsive */
@media (max-width: 968px) {
    #footer-privat .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    #footer-privat .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
    #footer-privat { padding: 40px 0 0; }
    #footer-privat .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    #footer-privat .footer-brand { grid-column: span 1; text-align: center; align-items: center; }
    #footer-privat .footer-social { justify-content: center; }
    #footer-privat .footer-links, #footer-privat .footer-contact { text-align: center; }
    #footer-privat .contact-list a { justify-content: center; }
}

/* =====================================================
   SECTION 1: HERO
   ===================================================== */
.hero-section { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #dbeafe 100%); padding: 60px 20px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.badge { display: inline-flex; align-items: center; padding: 0.5rem 1rem; background-color: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); border-radius: 9999px; border: 1px solid rgba(255, 255, 255, 0.25); margin-bottom: 1.5rem; }
.badge-dot { height: 0.5rem; width: 0.5rem; border-radius: 9999px; background-color: #10b981; margin-right: 0.5rem; animation: pulse 2s infinite; }
.badge-text { font-size: 0.875rem; font-weight: 500; color: white; }
.hero-content h1 { font-size: 48px; font-weight: 800; color: #ffffff; margin-bottom: 24px; line-height: 1.1; }
.hero-content h1 .highlight { background: linear-gradient(135deg, #fbbf24, #f59e0b); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 20px; color: #e0f2fe; margin-bottom: 40px; max-width: 95%; font-weight: 400; line-height: 1.7; }
.hero-buttons { display: flex; gap: 20px; margin-top: 32px; }
.btn-primary { padding: 18px 36px; background: linear-gradient(135deg, #2563eb, #1d4ed8); color: white; border-radius: 12px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3); border: 2px solid transparent; position: relative; overflow: hidden; }
.btn-primary:hover { background: linear-gradient(135deg, #1d4ed8, #1e40af); color: white; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4); }
.btn-outline { padding: 16px 36px; background-color: transparent; color: white; border: 2px solid #1D4ED8; border-radius: 12px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; }
.btn-outline:hover { background: linear-gradient(135deg, #1D4ED8, #3b82f6); color: white; border-color: #3b82f6; transform: translateY(-3px); }
.btn-icon { margin-left: 12px; transition: transform 0.3s ease; }
.btn-primary:hover .btn-icon, .btn-outline:hover .btn-icon { transform: translateX(4px); }
.hero-image-container { position: relative; height: 500px; z-index: 1; display: flex; justify-content: center; align-items: center; border: 3px solid rgba(96, 165, 250, 0.3); border-radius: 25px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); }
.hero-main-image { width: 100%; max-width: 450px; height: auto; border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); animation: floatUpDown 6s ease-in-out infinite; position: relative; z-index: 2; }
.floating-element { position: absolute; z-index: 1; animation-duration: 8s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; }
.element-1 { width: 90px; height: 90px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); border-radius: 24px; top: 40px; left: 30px; transform: rotate(45deg); animation-name: floatTopLeft; }
.element-2 { width: 70px; height: 70px; background: linear-gradient(135deg, #60a5fa, #3b82f6); border-radius: 50%; bottom: 80px; left: 60px; animation-name: floatBottomLeft; }
.element-3 { width: 50px; height: 60px; background: linear-gradient(135deg, #fbbf24, #f59e0b); border-radius: 16px; top: 80px; right: 50px; transform: rotate(15deg); animation-name: floatTopRight; }
.element-4 { width: 80px; height: 80px; background: linear-gradient(135deg, #1e40af, #1e3a8a); border-radius: 28px; bottom: 40px; right: 80px; transform: rotate(30deg); animation-name: floatBottomRight; }
.chat-bubble { position: absolute; background: linear-gradient(135deg, #ffffff, #f8fafc); border-radius: 20px; padding: 16px 20px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); z-index: 3; display: flex; align-items: center; }
.chat-bubble-1 { top: 120px; right: -30px; animation: floatChat1 10s ease-in-out infinite; }
.chat-bubble-2 { bottom: 60px; left: -40px; animation: floatChat2 12s ease-in-out infinite; }
.chat-bubble-icon { font-size: 24px; color: #3b82f6; margin-right: 8px; }
.chat-bubble-text { font-size: 14px; font-weight: 600; color: #1e40af; }
.hero-section .bg-shape { position: absolute; z-index: 0; opacity: 0.4; }
.hero-section .bg-shape-1 { top: -120px; right: -120px; width: 350px; height: 350px; border-radius: 50%; background: linear-gradient(45deg, rgba(96, 165, 250, 0.3), rgba(59, 130, 246, 0.3)); animation: rotateClockwise 20s linear infinite; }
.hero-section .bg-shape-2 { bottom: -180px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: linear-gradient(45deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.3)); animation: rotateCounterClockwise 25s linear infinite; }

/* =====================================================
   SECTION 2: ALUR BELAJAR
   ===================================================== */
.learning-flow-section { padding: 80px 20px; text-align: center; background-color: #f8f9fa; }
.learning-flow-section h2 { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 10px; }
.learning-flow-section .subtitle { font-size: 18px; color: #666; margin-bottom: 60px; }
.timeline-container-final { display: flex; justify-content: space-between; position: relative; max-width: 900px; margin: 0 auto; align-items: stretch; }
.timeline-container-final::before { content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 3px; background-color: #e0e0e0; z-index: 1; }
.timeline-item-final { display: flex; flex-direction: column; align-items: center; width: 23%; position: relative; z-index: 2; }
.timeline-icon-wrapper-final { margin-bottom: 25px; }
.timeline-icon-final { width: 40px; height: 40px; border-radius: 50%; background-color: #ccc; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; border: 3px solid #f8f9fa; transition: all 0.3s ease; }
.timeline-card-final { background-color: white; border-radius: 12px; padding: 25px 20px; text-align: center; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); border: 1px solid #e9ecef; width: 100%; transition: all 0.3s ease; flex-grow: 1; display: flex; flex-direction: column; }
.card-header-final { min-height: 54px; display: flex; align-items: center; justify-content: center; }
.card-header-final h4 { font-size: 18px; font-weight: 600; color: #333; margin: 0; }
.card-body-final .iconify { color: #5EA3FA; margin: 15px auto; display: block; transition: transform 0.3s ease; }
.card-footer-final p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }
.timeline-item-final:hover .timeline-icon-final { background-color: #5EA3FA; transform: scale(1.1); }
.timeline-item-final:hover .timeline-card-final { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(94, 163, 250, 0.2); border-color: #5EA3FA; }
.timeline-item-final:hover .iconify { transform: scale(1.15); }

/* =====================================================
   SECTION 3: ASPEK IELTS (FEATURES)
   ===================================================== */
.final-features-section { padding: 100px 20px; background: linear-gradient(180deg, #FFFFFF 0%, #E8F1FF 100%); }
.final-features-container { max-width: 1200px; margin: 0 auto; text-align: center; }
#page-section-header { margin-bottom: 60px; }
#page-section-header .section-title { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 10px; }
#page-section-header .section-subtitle { font-size: 18px; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* Desktop: Show Grid, Hide Swiper */
.final-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.final-features-swiper { display: none !important; }

.final-feature-card { background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 20px; padding: 30px; text-align: left; backdrop-filter: blur(10px); box-shadow: 0 2px 8px 2px rgba(94, 163, 250, 0.15); transition: all 0.3s ease; position: relative; overflow: hidden; }
.final-feature-card:hover { transform: translateY(-8px); box-shadow: 0 4px 12px 2px rgba(94, 163, 250, 0.25); }
.final-card-icon-bg { width: 60px; height: 60px; border-radius: 16px; background-color: #5EA3FA; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: white; box-shadow: 0 4px 15px rgba(94, 163, 250, 0.4); }
.final-card-title { font-size: 20px; font-weight: 600; color: #1E3A5F; margin: 0 0 10px 0; }
.final-card-description { font-size: 15px; color: #556781; line-height: 1.6; margin: 0; }

/* Swiper Styles (for mobile) */
.final-features-swiper .swiper-wrapper { padding-bottom: 20px; }
.final-features-swiper .swiper-slide { height: auto; padding: 5px; }
.final-features-swiper .swiper-pagination { position: relative !important; margin-top: 20px; bottom: auto !important; }
.final-features-swiper .swiper-pagination-bullet { width: 10px; height: 10px; background: #ccc; opacity: 1; }
.final-features-swiper .swiper-pagination-bullet-active { background-color: #5EA3FA !important; width: 30px; border-radius: 5px; }
.final-features-swiper .swiper-button-next, .final-features-swiper .swiper-button-prev { color: #5EA3FA !important; background-color: rgba(255, 255, 255, 0.8); border-radius: 50%; width: 44px; height: 44px; }
.final-features-swiper .swiper-button-next::after, .final-features-swiper .swiper-button-prev::after { font-size: 18px !important; font-weight: bold; }

/* =====================================================
   SECTION 4: PROGRAM PACKAGES
   ===================================================== */
#ielts-program-section-final-v2 .program-section-v4 { padding: 80px 20px; background: linear-gradient(180deg, #E8F1FF 0%, #FFFFFF 100%); }
#ielts-program-section-final-v2 #page-section-header-v3 { text-align: center; margin-bottom: 3rem; }
#ielts-program-section-final-v2 #page-section-header-v3 .section-title { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 10px; }
#ielts-program-section-final-v2 #page-section-header-v3 .section-subtitle { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.6; }
#ielts-program-section-final-v2 .cards-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
#ielts-program-section-final-v2 .package-card { position: relative; background-color: white; border-radius: 1.5rem; overflow: hidden; border: 2px solid transparent; transition: all 0.4s ease; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; }
#ielts-program-section-final-v2 .package-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px 0 rgba(94, 163, 250, 0.3); border-color: #5EA3FA; }
#ielts-program-section-final-v2 .package-card.popular { border-color: #3B73C4; border-width: 3px; }
#ielts-program-section-final-v2 .popular-badge { position: absolute; top: 1.5rem; right: -3.5rem; background: white; color: #3B73C4; font-weight: 700; padding: 0.25rem 3rem; transform: rotate(45deg); font-size: 0.875rem; z-index: 10; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
#ielts-program-section-final-v2 .card-header { background: linear-gradient(135deg, #5EA3FA, #3A8EF9); color: white; text-align: center; padding: 2rem 1.5rem; position: relative; overflow: hidden; }
#ielts-program-section-final-v2 .card-header.pro { background: linear-gradient(135deg, #4A88E3, #3B73C4); }
#ielts-program-section-final-v2 .card-header.ultimate { background: linear-gradient(135deg, #3A8EF9, #1E3A5F); }
#ielts-program-section-final-v2 .card-header-overlay { position: absolute; inset: 0; background-color: white; opacity: 0.1; transform: skewY(12deg) translateX(-100%); transition: transform 1s ease; }
#ielts-program-section-final-v2 .package-card:hover .card-header-overlay { transform: skewY(12deg) translateX(0); }
#ielts-program-section-final-v2 .card-header-title { font-size: 1.5rem; font-weight: 700; margin: 0; color: white !important; }
#ielts-program-section-final-v2 .card-content { padding: 2rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
#ielts-program-section-final-v2 .program-description { margin-bottom: 2rem; padding: 1.5rem; background: #f0f6ff; border-radius: 1rem; border-left: 4px solid #5EA3FA; }
#ielts-program-section-final-v2 .program-description p { color: #4b5563; font-size: 0.95rem; line-height: 1.6; margin: 0; }
#ielts-program-section-final-v2 .features-container { margin-bottom: 2rem; flex-grow: 1; }
#ielts-program-section-final-v2 .features-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #f0f6ff; }
#ielts-program-section-final-v2 .features-title { color: #5EA3FA; font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; }
#ielts-program-section-final-v2 .features-title i { margin-right: 8px; }
#ielts-program-section-final-v2 .features-count { background: linear-gradient(135deg, #5EA3FA, #3A8EF9); color: white; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
#ielts-program-section-final-v2 .feature-list { min-height: 200px; }
#ielts-program-section-final-v2 .feature-list ul { list-style: none; padding: 0; margin: 0; }
#ielts-program-section-final-v2 .feature-item { display: flex; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid #f3f4f6; transition: all 0.3s ease; }
#ielts-program-section-final-v2 .feature-item::marker { content: none; display: none; }
#ielts-program-section-final-v2 .feature-item:hover { background: #f0f6ff; transform: translateX(5px); }
#ielts-program-section-final-v2 .feature-item:last-child { border-bottom: none; }
#ielts-program-section-final-v2 .check-icon { flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: linear-gradient(135deg, #5EA3FA, #3A8EF9); display: flex; align-items: center; justify-content: center; margin-right: 1rem; }
#ielts-program-section-final-v2 .check-icon i { color: white; font-size: 0.75rem; }
#ielts-program-section-final-v2 .feature-text { color: #374151; font-size: 0.95rem; font-weight: 500; }
#ielts-program-section-final-v2 .register-button { display: flex; width: 100%; justify-content: center; align-items: center; border-radius: 1rem; padding: 1rem 1.5rem; font-size: 1rem; font-weight: 700; background: linear-gradient(135deg, #5EA3FA, #3A8EF9); color: white; border: none; cursor: pointer; transition: all 0.3s ease; text-decoration: none; box-shadow: 0 4px 15px rgba(94, 163, 250, 0.3); margin-top: auto; }
#ielts-program-section-final-v2 .register-button:hover { background: linear-gradient(135deg, #3A8EF9, #2c79e0); transform: translateY(-2px); color: white; }
#ielts-program-section-final-v2 .register-button.pro { background: linear-gradient(135deg, #4A88E3, #3B73C4); }
#ielts-program-section-final-v2 .register-button.pro:hover { background: linear-gradient(135deg, #3B73C4, #2c5a9e); }
#ielts-program-section-final-v2 .register-button i { margin-left: 8px; }

/* =====================================================
   SECTION 5: TESTIMONI
   ===================================================== */
#testimonial-marquee-section { padding: 80px 20px; overflow-x: hidden; background-color: #fff; }
#testimonial-marquee-section .testimonial-container { max-width: 1200px; margin: 0 auto; }
#testimonial-marquee-section .testimonial-header { text-align: center; margin-bottom: 3rem; }
#testimonial-marquee-section .testimonial-title { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 10px; }
#testimonial-marquee-section .testimonial-subtitle { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.6; }
#testimonial-marquee-section .marquee-wrapper { display: flex; flex-direction: column; gap: 1rem; }
#testimonial-marquee-section .marquee-wrapper:hover .marquee-group { animation-play-state: paused; }
#testimonial-marquee-section .marquee { display: flex; overflow: hidden; user-select: none; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
#testimonial-marquee-section .marquee-group { flex-shrink: 0; display: flex; align-items: center; gap: 1rem; min-width: 100%; animation: scroll 30s linear infinite; }
#testimonial-marquee-section .marquee.marquee-reverse .marquee-group { animation-direction: reverse; }
#testimonial-marquee-section .testimonial-image-item { flex: 0 0 auto; width: 300px; padding: 5px; }
#testimonial-marquee-section .testimonial-image-item img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; aspect-ratio: 1 / 1; object-fit: cover; }
#testimonial-marquee-section .testimonial-image-item:hover img { transform: scale(1.05); box-shadow: 0 10px 30px rgba(94, 163, 250, 0.3); }

/* =====================================================
   SECTION 6: LOGO COMPANY
   ===================================================== */
#logo-company-goc { padding: 80px 20px; background-color: #ffffff; overflow: hidden; }
#logo-company-goc .section-header { text-align: center; max-width: 1200px; margin: 0 auto 3rem; }
#logo-company-goc .section-header h2 { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 10px; }
#logo-company-goc .section-header p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.6; }
#logo-company-goc .trusted-carousel-container { max-width: 1200px; margin: 0 auto; }
#logo-company-goc .swiper { padding-bottom: 40px; }
#logo-company-goc .swiper-slide { height: 296px; }
#logo-company-goc .grid-container { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 130px); gap: 20px; height: 100%; }
#logo-company-goc .trusted-carousel-item { display: flex; align-items: center; justify-content: center; padding: 16px; border: 2px solid #e5e7eb; border-radius: 12px; background-color: #ffffff; transition: all 0.3s ease; }
#logo-company-goc .trusted-carousel-item:hover { border-color: #4590F2; box-shadow: 0 6px 20px rgba(69, 144, 242, 0.12); }
#logo-company-goc .trusted-carousel-item img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.3s ease; }
#logo-company-goc .trusted-carousel-item:hover img { transform: scale(1.05); }
#logo-company-goc .swiper-pagination-bullet { width: 10px; height: 10px; background-color: #ddd; opacity: 1; }
#logo-company-goc .swiper-pagination-bullet-active { background-color: #4590F2; width: 30px; border-radius: 5px; }

/* =====================================================
   SECTION 7: FAQ
   ===================================================== */
#faq-section-wrapper { background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%); padding: 80px 20px; }
#faq-section-wrapper .faq-container { max-width: 800px; margin: 0 auto; }
#faq-section-wrapper .faq-header { text-align: center; margin-bottom: 3rem; }
#faq-section-wrapper .faq-title-uyy { font-size: 36px !important; font-weight: 700 !important; color: #333 !important; margin-bottom: 10px !important; }
#faq-section-wrapper .faq-subtitle-uyy { font-size: 18px; color: #666; line-height: 1.6; }
#faq-section-wrapper .faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
#faq-section-wrapper .faq-item { background-color: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 12px; transition: all 0.3s ease; }
#faq-section-wrapper .faq-item:hover { border-color: #5EA3FA; box-shadow: 0 4px 20px rgba(94, 163, 250, 0.1); }
#faq-section-wrapper .faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.5rem; background: none; border: none; text-align: left; font-size: 1.1rem; font-weight: 600; color: #2D3748; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; }
#faq-section-wrapper .faq-question span { padding-right: 1rem; }
#faq-section-wrapper .faq-question i { flex-shrink: 0; transition: transform 0.3s ease; color: #5EA3FA; }
#faq-section-wrapper .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
#faq-section-wrapper .faq-answer p { padding: 0 1.5rem 1.5rem 1.5rem; margin: 0; font-size: 1rem; color: #4A5568; line-height: 1.7; }
#faq-section-wrapper .faq-item.active .faq-question { color: #5EA3FA; }
#faq-section-wrapper .faq-item.active .faq-question i { transform: rotate(180deg); }
#faq-section-wrapper .faq-item.active .faq-answer { max-height: 300px; }

/* =====================================================
   SECTION 8: CTA WHATSAPP
   ===================================================== */
#cta-whatsapp-section { padding: 60px 20px; background: linear-gradient(135deg, #1C76F7 0%, #0D5BCE 50%, #1C76F7 100%); position: relative; overflow: hidden; }
#cta-whatsapp-section .container { max-width: 1000px; margin: 0 auto; position: relative; z-index: 10; }
#cta-whatsapp-section .bg-shape { position: absolute; opacity: 0.08; z-index: 0; }
#cta-whatsapp-section .bg-shape-1 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); border-radius: 50%; top: -150px; left: -150px; animation: float 8s ease-in-out infinite; }
#cta-whatsapp-section .bg-shape-2 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%); border-radius: 50%; bottom: -100px; right: -100px; animation: float 6s ease-in-out infinite reverse; }
#cta-whatsapp-section .bg-shape-3 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 70%); border-radius: 50%; top: 40%; right: 8%; animation: ctaPulse 4s ease-in-out infinite; }
#cta-whatsapp-section .bg-shape-4 { width: 120px; height: 120px; background-image: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px); background-size: 20px 20px; top: 15%; left: 5%; animation: float 7s ease-in-out infinite; }
#cta-whatsapp-section .bg-shape-5 { width: 100px; height: 100px; background-image: radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px); background-size: 15px 15px; bottom: 20%; left: 8%; animation: ctaPulse 5s ease-in-out infinite; }
#cta-whatsapp-section .bg-shape-6 { width: 140px; height: 140px; background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1); border-radius: 20px; top: 60%; right: 15%; transform: rotate(25deg); animation: rotate 15s linear infinite; }
#cta-whatsapp-section .bg-shape-7 { width: 100px; height: 100px; background: rgba(251,191,36,0.08); border: 2px solid rgba(251,191,36,0.12); border-radius: 50%; top: 10%; right: 25%; animation: float 9s ease-in-out infinite; }
#cta-whatsapp-section .bg-shape-8 { width: 200px; height: 60px; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 10px, transparent 10px, transparent 20px); bottom: 30%; right: 5%; transform: rotate(-15deg); animation: slideRight 12s linear infinite; }
#cta-whatsapp-section .cta-card { display: grid; grid-template-columns: 1fr 1.2fr; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2); }
#cta-whatsapp-section .cta-illustration { background: linear-gradient(135deg, #1C76F7 0%, #0D5BCE 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px 40px; position: relative; overflow: hidden; }
#cta-whatsapp-section .cta-illustration::before { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; top: -50px; left: -50px; }
#cta-whatsapp-section .illustration-icon { width: 120px; height: 120px; background: rgba(255, 255, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 2; }
#cta-whatsapp-section .illustration-icon i { font-size: 50px; color: #fff; }
#cta-whatsapp-section .illustration-title { font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 12px; }
#cta-whatsapp-section .illustration-subtitle { font-size: 15px; color: rgba(255, 255, 255, 0.9); text-align: center; line-height: 1.6; }
#cta-whatsapp-section .cta-content { padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
#cta-whatsapp-section .cta-header { margin-bottom: 30px; }
#cta-whatsapp-section .cta-title { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
#cta-whatsapp-section .cta-title span { color: #1C76F7; }
#cta-whatsapp-section .cta-subtitle { font-size: 15px; color: #666; line-height: 1.6; }
#cta-whatsapp-section .whatsapp-btn { width: 100%; padding: 16px 24px; background: linear-gradient(135deg, #25D366 0%, #1DA851 100%); color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
#cta-whatsapp-section .whatsapp-btn:hover { background: linear-gradient(135deg, #1DA851 0%, #128C7E 100%); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); color: #fff; }
#cta-whatsapp-section .whatsapp-btn i { font-size: 22px; }
#cta-whatsapp-section .cta-note { margin-top: 16px; font-size: 13px; color: #888; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
#cta-whatsapp-section .cta-note i { color: #25D366; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes floatUpDown { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.02); } }
@keyframes floatTopLeft { 0%, 100% { transform: translate(0, 0) rotate(45deg); } 50% { transform: translate(15px, 15px) rotate(45deg); } }
@keyframes floatBottomLeft { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-15px, -15px); } }
@keyframes floatTopRight { 0%, 100% { transform: translate(0, 0) rotate(15deg); } 50% { transform: translate(-12px, 18px) rotate(15deg); } }
@keyframes floatBottomRight { 0%, 100% { transform: translate(0, 0) rotate(30deg); } 50% { transform: translate(18px, -12px) rotate(30deg); } }
@keyframes floatChat1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-15px, 8px) scale(1.05); } }
@keyframes floatChat2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(15px, -8px) scale(1.05); } }
@keyframes rotateClockwise { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateCounterClockwise { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 1rem)); } }
@keyframes float { 0%, 100% { transform: translateY(0px) translateX(0px); } 50% { transform: translateY(-20px) translateX(10px); } }
@keyframes ctaPulse { 0%, 100% { transform: scale(1); opacity: 0.08; } 50% { transform: scale(1.1); opacity: 0.12; } }
@keyframes rotate { 0% { transform: rotate(25deg); } 100% { transform: rotate(385deg); } }
@keyframes slideRight { 0% { transform: translateX(0) rotate(-15deg); } 100% { transform: translateX(50px) rotate(-15deg); } }

/* =====================================================
   RESPONSIVE - TABLET (max-width: 992px)
   ===================================================== */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { text-align: center; order: 2; }
    .hero-content h1 { font-size: 40px; }
    .hero-content p { max-width: 100%; font-size: 18px; }
    .hero-buttons { justify-content: center; }
    .hero-image-container { height: 380px; order: 1; }
    .hero-main-image { max-width: 350px; }
    .final-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ===================================================== */
@media (max-width: 768px) {
    .hero-section { padding: 50px 20px; }
    .hero-content h1 { font-size: 32px; margin-bottom: 20px; }
    .hero-content p { font-size: 16px; margin-bottom: 32px; }
    .hero-buttons { flex-direction: column; gap: 16px; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; padding: 16px 24px; }
    .hero-image-container { height: 300px; }
    .hero-main-image { max-width: 280px; }
    .element-1, .element-2, .element-3, .element-4 { transform: scale(0.7); }
    .chat-bubble { padding: 12px 16px; }
    .chat-bubble-icon { font-size: 20px; }
    .chat-bubble-text { font-size: 12px; }
    
    /* Timeline Mobile */
    .timeline-container-final { flex-direction: column; align-items: center; }
    .timeline-container-final::before { left: 50%; top: 5%; bottom: 5%; width: 3px; height: 90%; transform: translateX(-50%); }
    .timeline-item-final { width: 80%; max-width: 300px; margin-bottom: 40px; }
    .timeline-item-final:last-child { margin-bottom: 0; }
    .card-header-final { min-height: auto; }
    
    /* Features: Hide Grid, Show Swiper */
    .final-features-grid { display: none !important; }
    .final-features-swiper { display: block !important; padding-bottom: 50px; }
    
    /* CTA Section */
    #cta-whatsapp-section .cta-card { grid-template-columns: 1fr; }
    #cta-whatsapp-section .cta-illustration { padding: 40px 30px; }
    #cta-whatsapp-section .illustration-icon { width: 100px; height: 100px; }
    #cta-whatsapp-section .illustration-icon i { font-size: 40px; }
    #cta-whatsapp-section .illustration-title { font-size: 22px; }
    #cta-whatsapp-section .cta-content { padding: 40px 30px; }
    #cta-whatsapp-section .cta-title { font-size: 24px; }
    #cta-whatsapp-section .bg-shape-6, #cta-whatsapp-section .bg-shape-7, #cta-whatsapp-section .bg-shape-8 { display: none; }
    
    /* Section Titles */
    .learning-flow-section h2,
    #page-section-header .section-title,
    #ielts-program-section-final-v2 #page-section-header-v3 .section-title,
    #testimonial-marquee-section .testimonial-title,
    #logo-company-goc .section-header h2,
    #faq-section-wrapper .faq-title-uyy { font-size: 28px !important; }
    
    .learning-flow-section .subtitle,
    #page-section-header .section-subtitle,
    #ielts-program-section-final-v2 #page-section-header-v3 .section-subtitle,
    #testimonial-marquee-section .testimonial-subtitle,
    #logo-company-goc .section-header p,
    #faq-section-wrapper .faq-subtitle-uyy { font-size: 16px; }
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ===================================================== */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .hero-image-container { height: 250px; }
    .hero-main-image { max-width: 240px; }
    .element-1, .element-2, .element-3, .element-4 { transform: scale(0.6); }
    #testimonial-marquee-section .testimonial-image-item { width: 250px; }
}