/* GuruPedia Homepage - FunTeacher Inspired Design */
/* Modern, Clean, Professional dengan warna yang lebih cerah dan friendly */

:root {
    /* Primary Colors - Gurupedia Orange Theme */
    --primary-color: #FF6B00;
    --primary-light: #FF8C33;
    --primary-dark: #E65100;
    --primary-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8C33 100%);
    --primary-gradient-alt: linear-gradient(135deg, #FF6B00 0%, #FF5722 100%);
    --primary-gradient-hover: linear-gradient(135deg, #FF8C33 0%, #FFA726 100%);

    /* Secondary Colors - Gurupedia Premium Blue */
    --secondary-color: #00465c;
    --secondary-light: #008eb0;
    --secondary-dark: #003a4d;
    --secondary-gradient: linear-gradient(135deg, #00465c 0%, #008eb0 100%);

    /* Accent Colors */
    --accent-orange: #FF9800;
    --accent-orange-light: #FFB74D;
    --accent-orange-dark: #F57C00;
    --accent-yellow: #FFC107;
    --accent-yellow-light: #FFD54F;
    --accent-green: #10B981;
    --accent-green-light: #34D399;
    --accent-green-dark: #059669;
    --accent-blue: #00465c;
    --accent-blue-light: #008eb0;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;

    /* Neutral Colors - Warm Tones */
    --white: #ffffff;
    --gray-50: #FFF8F0;
    --gray-100: #FFF3E0;
    --gray-200: #FFE0B2;
    --gray-300: #FFCC80;
    --gray-400: #FFB74D;
    --gray-500: #FF9800;
    --gray-600: #424242;
    --gray-700: #212121;
    --gray-800: #1a1a1a;
    --gray-900: #0d0d0d;

    /* Background Gradients */
    --bg-warm: linear-gradient(180deg, #FFF8F0 0%, #ffffff 100%);
    --bg-gradient-1: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 50%, #FFF8F0 100%);
    --bg-gradient-2: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);

    /* Shadows - More Refined */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 8px 24px rgba(255, 107, 0, 0.2);
    --shadow-blue: 0 8px 24px rgba(33, 150, 243, 0.15);

    /* Border Radius - More Rounded */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 2.5rem;
    --radius-full: 9999px;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand-ft {
    font-family: 'Poppins', sans-serif;
}

body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==================== NAVBAR ==================== */
.navbar-funteacher {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-funteacher.scrolled {
    padding: 0.6rem 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand-ft {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.navbar-brand-ft:hover {
    transform: scale(1.02);
}

.navbar-brand-ft img {
    height: 42px;
    transition: all 0.3s ease;
}

.navbar-brand-ft:hover img {
    filter: drop-shadow(0 5px 15px rgba(37, 99, 235, 0.3));
}

.nav-link-ft {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700) !important;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-decoration: none !important;
}

.nav-link-ft:hover {
    color: var(--primary-color) !important;
}

.nav-link-ft.active {
    color: var(--primary-color) !important;
}

/* Auth Buttons */
.btn-nav-login {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-nav-login:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.btn-nav-register {
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.btn-nav-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    filter: brightness(1.1);
}

/* Dropdown Customization */
.navbar-funteacher .dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 0.75rem;
    margin-top: 10px;
}

.navbar-funteacher .dropdown-item {
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar-funteacher .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ==================== HERO SECTION ==================== */
.hero-funteacher {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-funteacher::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content-ft {
    position: relative;
    z-index: 2;
}

.hero-badge-ft {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.hero-badge-ft i {
    color: var(--accent-yellow);
}

.hero-title-ft {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-title-ft .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-title-ft .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-yellow);
    opacity: 0.5;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle-ft {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-features-ft {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.hero-feature-item i {
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hero-buttons-ft {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1.1rem 2.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
    color: var(--white);
    filter: brightness(1.1);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--gray-800);
    padding: 1.1rem 2.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.15rem;
    border: 2px solid var(--gray-200);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Hero Image/Illustration */
.hero-image-ft {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 5%;
    left: 5%;
    animation-delay: 2s;
}

.floating-card .card-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card .card-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.floating-card .card-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.floating-card .card-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
}

.floating-card .card-text {
    font-size: 0.875rem;
}

.floating-card .card-text strong {
    display: block;
    color: var(--gray-800);
    font-weight: 600;
}

.floating-card .card-text span {
    color: var(--gray-500);
    font-size: 0.8rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==================== SEARCH BOX ==================== */
.search-box-section {
    background: var(--white);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-box-wrapper {
    background: var(--white);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transform: translateY(-20px);
}

.search-box-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.search-box-title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.search-box-title p {
    color: var(--gray-500);
    margin: 0;
}

.search-form-ft {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.search-form-ft .form-group {
    flex: 1;
    min-width: 200px;
}

.search-form-ft label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.search-form-ft .form-select,
.search-form-ft .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: var(--white);
}

.search-form-ft .form-select:focus,
.search-form-ft .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.btn-search-ft {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-search-ft:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* ==================== SECTION STYLES ==================== */
.section-ft {
    padding: 80px 0;
}

.section-header-ft {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-ft {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.section-subtitle-ft {
    font-size: 1.2rem;
    color: var(--gray-500);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-section {
    background: var(--gray-50);
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.why-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.why-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.why-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
}

.why-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.why-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
}

.why-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary-color);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.why-desc {
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}


/* ==================== HOW IT WORKS ==================== */
.how-it-works-ft {
    background: var(--white);
}

.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--gray-200);
    z-index: 0;
}

.step-card-ft {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number-ft {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.step-icon-ft {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.step-title-ft {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.step-desc-ft {
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== SUBJECTS/CATEGORIES ==================== */
.subjects-section {
    background: var(--gray-50);
}

.subject-card-ft {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%;
}

.subject-card-ft:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.subject-icon-ft {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.subject-name-ft {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.subject-count-ft {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.subject-count-ft span {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== STATS SECTION ==================== */
.stats-section-ft {
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section-ft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item-ft {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.stat-icon-ft {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.stat-number-ft {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label-ft {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==================== TOP TUTORS ==================== */
.tutors-section-ft {
    background: var(--white);
}

.tutor-card-ft {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    height: 100%;
}

.tutor-card-ft:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tutor-header-ft {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.tutor-badge-ft {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tutor-photo-ft {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.tutor-body-ft {
    padding: 1.5rem;
}

.tutor-name-ft {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    text-align: center;
}

.tutor-rating-ft {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.tutor-rating-ft i {
    color: var(--accent-yellow);
}

.tutor-rating-ft span {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.tutor-subjects-ft {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.tutor-experience-ft {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.tutor-price-ft {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 1rem;
}

.tutor-price-ft .price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: block;
}

.tutor-price-ft .price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tutor-price-ft .price-unit {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.btn-tutor-profile {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-tutor-profile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section-ft {
    background: var(--gray-50);
}

.testimonial-card-ft {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    position: relative;
}

.testimonial-card-ft:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-rating-ft {
    margin-bottom: 1rem;
}

.testimonial-rating-ft i {
    color: var(--accent-yellow);
}

.testimonial-text-ft {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-ft {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-ft img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-ft .author-info h6 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.testimonial-author-ft .author-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee-section-ft {
    background: var(--white);
}

.guarantee-image-ft {
    position: relative;
}

.guarantee-image-ft img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-2xl);
}

.guarantee-badge {
    position: absolute;
    bottom: 2rem;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guarantee-badge i {
    font-size: 2.5rem;
    color: var(--accent-green);
}

.guarantee-badge .badge-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.guarantee-badge .badge-text span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.guarantee-list-ft {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.guarantee-list-ft li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--gray-700);
}

.guarantee-list-ft li i {
    width: 28px;
    height: 28px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}


/* ==================== CTA SECTIONS ==================== */
.cta-student-section {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-student-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content-ft {
    position: relative;
    z-index: 1;
}

.cta-title-ft {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle-ft {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-cta-light {
    background: var(--white);
    color: var(--gray-800);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
}

/* Teacher CTA */
.cta-teacher-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-teacher-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.teacher-benefits-ft {
    margin-top: 2rem;
}

.benefit-item-ft {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.benefit-item-ft i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.teacher-image-ft {
    text-align: center;
}

.teacher-image-ft img {
    max-width: 400px;
    width: 100%;
    border-radius: var(--radius-2xl);
}

/* ==================== FAQ SECTION ==================== */
.faq-section-ft {
    background: var(--gray-50);
}

.accordion-ft .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-ft .accordion-button {
    font-weight: 600;
    color: var(--gray-800);
    padding: 1.25rem 1.5rem;
    background: var(--white);
}

.accordion-ft .accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-ft .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.accordion-ft .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.footer-ft {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
}

.footer-brand-ft {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.navbar-brand-ft img {
    height: 42px;
    transition: all 0.3s ease;
}

.navbar-brand-ft:hover img {
    filter: drop-shadow(0 5px 15px rgba(37, 99, 235, 0.3));
}

.navbar-brand-ft .brand-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.footer-brand-ft .brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-desc-ft {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links-ft {
    display: flex;
    gap: 0.75rem;
}

.social-link-ft {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link-ft:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-title-ft {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-links-ft {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-ft li {
    margin-bottom: 0.75rem;
}

.footer-links-ft a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-ft a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-ft {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-ft li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-ft li i {
    width: 20px;
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-bottom-ft {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-copyright-ft {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-payment-ft {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-payment-ft i {
    font-size: 1.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero-title-ft {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-funteacher {
        padding: 100px 0 60px;
    }

    .hero-title-ft {
        font-size: 2.5rem;
    }

    .hero-image-ft {
        margin-top: 3rem;
    }

    .floating-card {
        display: none;
    }

    .section-title-ft {
        font-size: 2rem;
    }

    .cta-title-ft {
        font-size: 2rem;
    }

    .steps-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title-ft {
        font-size: 2rem;
    }

    .hero-subtitle-ft {
        font-size: 1rem;
    }

    .hero-features-ft {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons-ft {
        flex-direction: column;
    }

    .hero-buttons-ft .btn-hero-primary,
    .hero-buttons-ft .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .search-form-ft {
        flex-direction: column;
    }

    .search-form-ft .form-group {
        width: 100%;
    }

    .section-title-ft {
        font-size: 1.75rem;
    }

    .stat-number-ft {
        font-size: 2.25rem;
    }

    .guarantee-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }

    .footer-payment-ft {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand-ft {
        font-size: 1.25rem;
    }

    .hero-title-ft {
        font-size: 1.75rem;
    }

    .section-ft {
        padding: 60px 0;
    }

    .search-box-wrapper {
        padding: 1.5rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter animation */
.counter-animate {
    transition: all 0.3s ease;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}