/* ================================================
   MELITALIA ACADEMY HOMEPAGE STYLES
   ================================================
   Author: Melitalia Academy Development Team
   Version: 2.0.0 (Optimized)
   Description: Main stylesheet for homepage_new.blade.php
   ================================================ */

/* ===== CSS RESET & ROOT VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-green: #2e8b57;
    --secondary-green: #22c55e;
    
    /* Accent Colors */
    --accent-red: #dc3545;
    --accent-orange: #f59e0b;
    --accent-pink: #f472b6;
    
    /* Text Colors */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-gradient: #f0fdf4;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
}

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

/* ===== BASE STYLES ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Container Utilities */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* ===== COMPONENT STYLES ===== */

/* Navigation Bar */
.navbar {
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    max-width: 100%;
    overflow: hidden;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.navbar-nav .nav-link.text-primary {
    color: var(--primary-green) !important;
}

/* Buttons */
.btn-outline-primary {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transition: var(--transition);
    border-radius: 25px;
}

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

/* ===== MOBILE NAVBAR ENHANCEMENTS ===== */

/* Custom Mobile Toggler */
.custom-toggler {
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: rgba(46, 139, 87, 0.1);
    transition: var(--transition);
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
    outline: none;
}

.custom-toggler:hover {
    background: rgba(46, 139, 87, 0.15);
    transform: scale(1.05);
}

.toggler-line {
    width: 22px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(46, 139, 87, 0.1);
    }

    .navbar-collapse {
        background: white;
        border-radius: var(--radius-lg);
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(46, 139, 87, 0.1);
        overflow: hidden;
        animation: slideDown 0.3s ease;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        font-weight: 500;
        color: var(--text-dark);
        position: relative;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }

    .navbar-nav .nav-link::after {
        content: '→';
        opacity: 0;
        transform: translateX(-10px);
        transition: var(--transition);
        color: var(--primary-green);
        font-weight: bold;
    }

    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, rgba(46, 139, 87, 0.05), rgba(46, 139, 87, 0.1));
        color: var(--primary-green);
        transform: translateX(8px);
    }

    .navbar-nav .nav-link:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-nav .nav-link.text-primary {
        background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(46, 139, 87, 0.15));
        color: var(--primary-green) !important;
        font-weight: 600;
    }

    .navbar-nav .nav-link.text-primary::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    }

    .navbar-nav .nav-link.text-primary::after {
        opacity: 1;
        transform: translateX(0);
    }

    /* Language Dropdown Mobile Adjustments */
    .language-dropdown {
        margin: 1rem 1.5rem 0 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .language-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        background: rgba(46, 139, 87, 0.05);
        border: 1px solid rgba(46, 139, 87, 0.1);
    }

    .language-menu {
        position: static !important;
        width: 100%;
        margin-top: 8px;
        transform: none !important;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: var(--radius-sm);
    }

    /* Mobile Logo Adjustments */
    .logo-img {
        height: 40px;
        transition: var(--transition);
    }

    .navbar-brand:hover .logo-img {
        transform: scale(1.05);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Extra Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .custom-toggler {
        width: 40px;
        height: 40px;
    }

    .toggler-line {
        width: 20px;
    }

    .navbar-nav .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .language-dropdown {
        margin: 0.75rem 1.25rem 0 1.25rem;
    }

    .language-toggle {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0;
    }

    .logo-img {
        height: 35px;
    }

    .custom-toggler {
        width: 36px;
        height: 36px;
    }

    .toggler-line {
        width: 18px;
        height: 2px;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
    }

    .navbar-nav {
        padding: 0.75rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .language-dropdown {
        margin: 0.5rem 1rem 0 1rem;
    }

    .language-toggle {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

.btn-primary-custom {
    background: var(--primary-green);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background: #22543d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ===== LAYOUT SECTIONS ===== */

/* Hero Section */
.hero-section {
    background: var(--bg-gradient);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero Background Elements */
.left-triangles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.triangle-1,
.triangle-2 {
    position: absolute;
    background: var(--primary-green);
    opacity: 0.1;
}

.blue-curved-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: var(--primary-green);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.8;
}

.purple-side-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 25%;
    height: 100%;
    background: var(--accent-red);
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    border-radius: 50px;
    opacity: 0.3;
}

.shape-1 {
    background: var(--primary-green);
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    transform: rotate(45deg);
}

.shape-2 {
    background: var(--accent-red);
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -5%;
    transform: rotate(-30deg);
    border-radius: 20px 100px;
}

.shape-3 {
    background: var(--secondary-green);
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    transform: rotate(60deg);
}

/* Hero Dashboard Card */
.dashboard-card {
    
    max-height: auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    width: 100%;
    max-width: 100%;
}

.dashboard-card img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}
/* Metric Cards */
.metric-card {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
}

.metric-card-content {
    position: relative;
    z-index: 2;
}

/* Team Avatars */
.team-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    box-shadow: var(--shadow-sm);
}

.team-avatar:first-child {
    margin-left: 0;
}

/* Statistics Section */
.stats-section {
    background: var(--bg-gradient);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.stats-bg-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.1;
}

.stats-bg-shape.left {
    background: var(--primary-green);
    top: 20%;
    left: -100px;
}

.stats-bg-shape.right {
    background: var(--accent-red);
    bottom: 20%;
    right: -100px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stats-card:hover::before {
    left: 100%;
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.stats-icon.blue {
    background: var(--primary-green);
    color: white;
}

.stats-icon.orange {
    background: var(--accent-orange);
    color: white;
}

.stats-icon.purple {
    background: var(--accent-red);
    color: white;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-light);
    position: relative;
}

.about-mockup {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-height: 400px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Section Title - Global */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

/* Courses Section */
.courses-section {
    padding: var(--section-padding);
    background: white;
}

/* Explore Courses Section */
.explore-courses-section {
    padding: var(--section-padding);
    background: white;
    position: relative;
}

.course-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.course-card:hover .course-image img,
.course-card:hover .placeholder-image {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.course-badge.popular {
    background: var(--accent-red);
    color: white;
}

.course-badge.new {
    background: var(--secondary-green);
    color: white;
}

.course-badge.trending {
    background: var(--accent-orange);
    color: white;
}

.course-content {
    padding: 1.5rem;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.course-instructor i {
    color: var(--primary-green);
}

.course-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.course-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.course-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-students,
.course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.course-rating {
    color: #fbbf24;
}

.course-rating i {
    font-size: 0.75rem;
}

.course-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* ================================
   QUALIFIED LESSONS FEATURES SECTION
   ================================ */

.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s ease-in-out infinite;
}

.features-section .section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.features-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 2px;
}

.features-section .text-muted {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(46, 139, 87, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.15);
    border-color: var(--primary-green);
}

/* Feature Numbers */
.feature-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.feature-number.one {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.feature-number.two {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #fbbf24 100%);
}

.feature-number.three {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #ec4899 100%);
}

.feature-number.four {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.feature-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: shimmer 3s ease-in-out infinite;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-primary-custom {
    background: var(--primary-green);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    background: #22543d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.testimonials-section .section-title::before {
    content: '"';
    position: absolute;
    left: -40px;
    top: -20px;
    font-size: 5rem;
    color: var(--primary-green);
    opacity: 0.3;
    font-family: serif;
}

.homepage-arrow {
    width: 100%;
    max-width: 400px;
    height: 180px;
    display: block;
    margin: 0 auto 40px;
    animation: floatArrow 6s ease-in-out infinite;
    flex-wrap: hidden;
    opacity: 0.8;
}

/* Testimonial Cards */
.carousel-inner {
    padding: 40px 20px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-left: 4px solid var(--primary-green);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green), var(--accent-orange));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    opacity: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    border-color: var(--primary-green);
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-rating i {
    margin: 0 1px;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.2);
    animation: starTwinkle 0.6s ease-in-out;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.5;
    font-family: serif;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.5;
    font-family: serif;
}

/* Star Twinkle Animation */
@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ================================
   PLACEMENT GUIDE - FLOWCHART STYLE
   ================================ */

.placement-guide-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.placement-guide-section .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.placement-guide-section .section-badge {
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(46, 139, 87, 0.3);
    margin-bottom: 20px;
}

.placement-guide-section .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.placement-guide-section .section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guide-decorative-line {
    position: relative;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2e8b57, #22c55e, #f59e0b);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.guide-decorative-line .line-dot {
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

/* Flowchart Container */
.flowchart-container {
    position: relative;
    margin: 60px 0;
    padding: 20px 0;
    height: auto;
    margin-bottom: -29px;
    margin-top: -5px;
}

.flowchart-path {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Individual Flowchart Steps */
.flowchart-step {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    padding: 15px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.flowchart-step.step-1 { animation-delay: 0.2s; }
.flowchart-step.step-2 { 
    animation-delay: 0.4s; 
    flex-direction: row-reverse;
}
.flowchart-step.step-3 { animation-delay: 0.6s; }
.flowchart-step.step-4 { 
    animation-delay: 0.8s; 
    flex-direction: row-reverse;
}

/* Step Icon Wrapper */
.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.step-1 .step-icon {
    background: var(--primary-green);
}

.step-2 .step-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.step-3 .step-icon {
    background: linear-gradient(135deg, #f59e0b, #eab308);
}

.step-4 .step-icon {
    background: linear-gradient(135deg, #dc3545, #ef4444);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
}

/* Step Content */
.step-content {
    flex: 1;
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
}

.feature-tag i {
    font-size: 0.75rem;
    opacity: 0.8;
}

.step-1 .feature-tag { background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(34, 197, 94, 0.1)); color: #2e8b57; border-color: rgba(46, 139, 87, 0.2); }
.step-2 .feature-tag { background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1)); color: #22c55e; border-color: rgba(34, 197, 94, 0.2); }
.step-3 .feature-tag { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(234, 179, 8, 0.1)); color: #f59e0b; border-color: rgba(245, 158, 11, 0.2); }
.step-4 .feature-tag { background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(239, 68, 68, 0.1)); color: #dc3545; border-color: rgba(220, 53, 69, 0.2); }

/* ===== SEQUENTIAL FLOW ARROWS ===== */

/* Base Arrow Container */
.flow-arrow {
    position: absolute;
    z-index: 10;
    opacity: 0;
    animation: fadeInArrow 0.8s ease-out forwards;
    pointer-events: none;
}

/* Sequential Arrow Positioning */
.step-1 .flow-arrow {
    top: 50%;
    left: 100%;
    margin-left: 20px;
    transform: translateY(-50%);
    animation-delay: 1.2s;
}

.step-2 .flow-arrow {
    top: 100%;
    left: 50%;
    margin-top: 20px;
    transform: translateX(-50%);
    animation-delay: 1.8s;
}

.step-3 .flow-arrow {
    top: 50%;
    right: 100%;
    margin-right: 20px;
    transform: translateY(-50%) rotate(180deg);
    animation-delay: 2.4s;
}

/* Arrow Line Base */
.arrow-line {
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, 
        var(--primary-green) 0%, 
        var(--secondary-green) 40%, 
        var(--accent-orange) 100%
    );
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 12px rgba(46, 139, 87, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: arrowPulse 2.5s ease-in-out infinite;
}

/* Animated Gradient Flow */
.arrow-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0.4) 70%, 
        transparent 100%
    );
    animation: arrowFlow 3s ease-in-out infinite;
    border-radius: 4px;
}

/* Dynamic Progress Dots */
.arrow-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: arrowDotTravel 2.5s ease-in-out infinite;
    box-shadow: 
        0 0 8px rgba(245, 158, 11, 0.6),
        0 0 16px rgba(245, 158, 11, 0.3);
}



/* Step 2 - Vertical Arrow */
.step-2 .arrow-line {
    width: 6px;
    height: 80px;
    background: linear-gradient(180deg, 
        var(--primary-green) 0%, 
        var(--secondary-green) 40%, 
        var(--accent-pink) 100%
    );
}

.step-2 .arrow-line::before {
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0.4) 70%, 
        transparent 100%
    );
}

.step-2 .arrow-line::after {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    animation: arrowDotTravelVertical 2.5s ease-in-out infinite;
    box-shadow: 
        0 0 8px rgba(244, 114, 182, 0.6),
        0 0 16px rgba(244, 114, 182, 0.3);
}

.step-2 .arrow-head {
    top: auto;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
    border-left-color: var(--accent-pink);
}

.arrow-head {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #22c55e;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    animation: arrowPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.3));
}

.arrow-head::before {
    content: '';
    position: absolute;
    left: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #2e8b57;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Enhanced Arrow Variants for Different Steps */
.step-1 .arrow-line {
    background: linear-gradient(90deg, #2e8b57 0%, #22c55e 100%);
}

.step-1 .arrow-head {
    border-left-color: #22c55e;
}

.step-1 .arrow-head::before {
    border-left-color: #2e8b57;
}

.step-2 .arrow-line {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #f59e0b 100%);
}

.step-2 .arrow-head {
    border-left-color: #f59e0b;
}

.step-2 .arrow-head::before {
    border-left-color: #22c55e;
}

.step-3 .arrow-line {
    background: linear-gradient(90deg, #f59e0b 0%, #eab308 50%, #dc3545 100%);
}

.step-3 .arrow-head {
    border-left-color: #dc3545;
}

.step-3 .arrow-head::before {
    border-left-color: #f59e0b;
}

/* Arrow Hover Effects */
.flowchart-step:hover .arrow-line {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.4);
    animation-duration: 1.5s;
}

.flowchart-step:hover .arrow-head {
    transform: translateY(-50%) scale(1.2);
    animation-duration: 1.5s;
}

/* Flowchart Background Decorations */
.flowchart-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.decoration-dot.dot-1 { top: 15%; left: 10%; animation-delay: 0s; }
.decoration-dot.dot-2 { top: 65%; right: 15%; animation-delay: 1s; }
.decoration-dot.dot-3 { bottom: 20%; left: 20%; animation-delay: 2s; }

.decoration-line {
    position: absolute;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: 2px;
    opacity: 0.5;
}

.decoration-line.line-1 {
    top: 25%;
    right: 5%;
    width: 80px;
    height: 2px;
    transform: rotate(45deg);
}

.decoration-line.line-2 {
    bottom: 30%;
    left: 8%;
    width: 60px;
    height: 2px;
    transform: rotate(-30deg);
}

/* Statistics Section */
.guide-statistics {
    margin: 60px 0 50px;
    padding: 50px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.stats-header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

.stat-card {
    background: #f8fafc;
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #2e8b57, #22c55e);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 0.875rem;
    color: #64748b;
}

/* Call to Action */
.guide-cta {
    margin-top: 60px;
}

.cta-content {
    background: linear-gradient(135deg, #2e8b57, #22c55e);
    padding: 50px 40px;
    border-radius: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary-custom {
    background: white;
    color: #2e8b57;
}

.cta-buttons .btn-primary-custom:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-item i {
    font-size: 16px;
}

/* Background Elements */
.guide-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(34, 197, 94, 0.1));
    animation: float 6s ease-in-out infinite;
}

.bg-circle.circle-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.bg-circle.circle-2 {
    bottom: 15%;
    right: 8%;
    width: 160px;
    height: 160px;
    animation-delay: 3s;
}

.bg-pattern {
    position: absolute;
    opacity: 0.1;
}

.bg-pattern.pattern-1 {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #2e8b57 2px, transparent 2px);
    background-size: 20px 20px;
}

.bg-pattern.pattern-2 {
    bottom: 25%;
    left: 12%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #22c55e 2px, transparent 2px);
    background-size: 15px 15px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes arrowFlow {
    0% {
        left: -200%;
    }
    100% {
        left: 100%;
    }
}

@keyframes arrowPulse {
    0%, 100% {
        box-shadow: 
            0 2px 12px rgba(46, 139, 87, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(46, 139, 87, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}

@keyframes fadeInArrow {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes arrowDotTravel {
    0% {
        left: 10%;
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    100% {
        left: 85%;
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
}

@keyframes arrowDotTravelVertical {
    0% {
        top: 10%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100% {
        top: 85%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
}

@keyframes arrowHeadPulse {
    0%, 100% {
        filter: drop-shadow(2px 2px 4px rgba(245, 158, 11, 0.3));
        transform: translateY(-50%) scale(1);
    }
    50% {
        filter: drop-shadow(3px 3px 8px rgba(245, 158, 11, 0.5));
        transform: translateY(-50%) scale(1.1);
    }
}

/* ===== RESPONSIVE ARROW DESIGN ===== */

/* Large Desktop (1400px+) - Enhanced Arrows */
@media (min-width: 1400px) {
    .arrow-line {
        width: 100px;
        height: 8px;
    }
    
    .step-2 .arrow-line {
        width: 8px;
        height: 100px;
    }
    
}

/* Desktop (992px - 1399px) - Standard Arrows */
@media (max-width: 1399px) and (min-width: 992px) {
    .arrow-line {
        width: 90px;
        height: 7px;
    }
    
    .step-2 .arrow-line {
        width: 7px;
        height: 90px;
    }
}

/* Tablet (768px - 991px) - Smaller Arrows */
@media (max-width: 991px) and (min-width: 768px) {
    .step-1 .flow-arrow,
    .step-3 .flow-arrow {
        top: 100%;
        left: 50%;
        margin-left: 0;
        margin-top: 15px;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .step-2 .flow-arrow {
        transform: translateX(-50%) rotate(90deg);
    }
    
    .arrow-line {
        width: 60px;
        height: 5px;
    }
    
    .step-2 .arrow-line {
        width: 5px;
        height: 60px;
    }
}

/* Mobile (below 768px) - Vertical Flow Only */
@media (max-width: 767px) {
    .flow-arrow {
        display: none !important;
        position: relative !important;
        margin: 20px auto !important;
        width: fit-content;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .step-1 .flow-arrow,
    .step-2 .flow-arrow,
    .step-3 .flow-arrow {
        animation-delay: 0.5s;
    }
    
    .arrow-line {
        width: 4px;
        height: 40px;
        background: linear-gradient(180deg, 
            var(--primary-green) 0%, 
            var(--secondary-green) 50%, 
            var(--accent-orange) 100%
        );
    }
    
    .arrow-line::before {
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.4) 30%, 
            rgba(255, 255, 255, 0.8) 50%, 
            rgba(255, 255, 255, 0.4) 70%, 
            transparent 100%
        );
    }
    
    .arrow-line::after {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        animation: arrowDotTravelVertical 2.5s ease-in-out infinite;
    }
    
    
}

/* Responsive Design */
/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .placement-guide-section {
        padding: 120px 0;
    }
    
    .placement-guide-section .section-title {
        font-size: 4rem;
    }
    
    .flowchart-container {
        margin: 80px 0;
    }
    
    .flowchart-path {
        max-width: 1200px;
        gap: 60px;
    }
    
    .step-content {
        padding: 36px;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 28px;
    }
    
    .guide-statistics {
        margin: 80px 0 60px;
        padding: 60px 40px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .placement-guide-section {
        padding: 100px 0;
    }
    
    .flowchart-path {
        gap: 45px;
    }
    
    .guide-statistics {
        margin: 60px 0 50px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .placement-guide-section {
        padding: 80px 0;
    }
    
    .placement-guide-section .section-header {
        margin-bottom: 50px;
    }
    
    .placement-guide-section .section-title {
        font-size: 3rem;
    }
    
    .flowchart-container {
        margin: 50px 0;
    }
    
    .flowchart-step {
        gap: 20px;
    }
    
    .step-content {
        padding: 24px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    
    .flowchart-path {
        gap: 40px;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-trust-indicators {
        gap: 24px;
    }
    
    .guide-statistics {
        margin: 50px 0 40px;
        padding: 40px 30px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .placement-guide-section {
        padding: 70px 0;
    }
    
    .placement-guide-section .section-header {
        margin-bottom: 40px;
    }
    
    .placement-guide-section .section-title {
        font-size: 2.5rem;
    }
    
    .flowchart-container {
        margin: 40px 0;
        padding: 15px 0;
    }
    
    .flowchart-step {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
        padding: 10px;
    }
    
    .step-content {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .flowchart-path {
        gap: 35px;
        padding: 0 15px;
    }
    
    .guide-statistics {
        padding: 35px 25px;
        margin: 40px 0 35px;
    }
    
    .stats-header {
        margin-bottom: 30px;
    }
    
    .stats-header h3 {
        font-size: 2rem;
    }
    
    .cta-content {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 280px;
        max-width: 100%;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .placement-guide-section {
        padding: 60px 0;
    }
    
    .placement-guide-section .section-header {
        margin-bottom: 35px;
    }
    
    .placement-guide-section .section-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .placement-guide-section .section-subtitle {
        font-size: 1.125rem;
    }
    
    .flowchart-container {
        margin: 35px 0;
        padding: 10px 0;
    }
    
    .flowchart-path {
        gap: 30px;
        padding: 0 10px;
    }
    
    .step-content {
        padding: 18px;
    }
    
    .step-title {
        font-size: 1.375rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .stat-card {
        padding: 24px 16px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .guide-statistics {
        margin: 35px 0 30px;
        padding: 30px 20px;
    }
    
    .stats-header {
        margin-bottom: 25px;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    
    .cta-buttons .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .cta-trust-indicators {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) {
    .placement-guide-section {
        padding: 50px 0;
    }
    
    .placement-guide-section .section-title {
        font-size: 2rem;
    }
    
    .flowchart-container {
        margin: 30px 0;
    }
    
    .flowchart-path {
        gap: 25px;
    }
    
    .step-content {
        padding: 16px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        top: -6px;
        right: -6px;
    }
    
    .guide-statistics {
        padding: 25px 15px;
        margin: 30px 0 25px;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .cta-content {
        padding: 35px 15px;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .placement-guide-section {
        padding: 40px 0;
    }
    
    .placement-guide-section .section-header {
        margin-bottom: 30px;
    }
    
    .placement-guide-section .section-title {
        font-size: 1.875rem;
    }
    
    .placement-guide-section .section-subtitle {
        font-size: 1rem;
    }
    
    .flowchart-container {
        margin: 25px 0;
    }
    
    .flowchart-path {
        gap: 20px;
        padding: 0 5px;
    }
    
    .step-content {
        padding: 14px;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    
    .step-features {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .guide-statistics {
        margin: 25px 0 20px;
        padding: 20px 10px;
    }
    
    .stats-header {
        margin-bottom: 20px;
    }
    
    .stats-header h3 {
        font-size: 1.75rem;
    }
    
    .stats-header p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-sublabel {
        font-size: 0.8rem;
    }
    
    .cta-content {
        padding: 30px 10px;
    }
    
    .cta-title {
        font-size: 1.625rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
}

/* ===== FEATURES & TESTIMONIALS RESPONSIVE DESIGN ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .features-section {
        padding: 120px 0;
    }
    
    .features-section .section-title {
        font-size: 3.5rem;
    }
    
    .feature-card {
        padding: 45px 35px;
    }
    
    .feature-number {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .testimonials-section {
        padding: 120px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 3.3rem;
    }
    
    .testimonial-card {
        padding: 40px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .features-section {
        padding: 100px 0;
    }
    
    .testimonials-section {
        padding: 100px 0;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-section .section-title {
        font-size: 2.8rem;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-number {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
    
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2.6rem;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .features-section {
        padding: 70px 0;
    }
    
    .features-section .section-title {
        font-size: 2.5rem;
    }
    
    .features-section .text-muted {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .feature-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2.3rem;
        margin-bottom: 15px;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .testimonial-avatar {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-section .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .features-section .text-muted {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .feature-number {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .btn-primary-custom {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-role {
        font-size: 0.85rem;
    }
    
    .testimonial-rating {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        padding-left: 15px;
    }
}

/* Mobile Small (below 576px) */
@media (max-width: 575px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-section .section-title {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .features-section .text-muted {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: var(--radius-md);
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .btn-primary-custom {
        padding: 8px 20px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .testimonials-section .text-muted {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 35px;
    }
    
    .testimonial-card {
        padding: 18px;
        margin-bottom: 20px;
        border-radius: var(--radius-md);
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-name {
        font-size: 0.95rem;
    }
    
    .testimonial-role {
        font-size: 0.8rem;
    }
    
    .testimonial-rating {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-left: 10px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.5rem;
    }
}


/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Animation Classes */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.floating-animation:nth-child(2) { animation-delay: -2s; }
.floating-animation:nth-child(3) { animation-delay: -4s; }

.slide-in-left { animation: slideInLeft 1s ease-out; }
.slide-in-right { animation: slideInRight 1s ease-out; }
.slide-in-up { animation: slideInUp 0.8s ease-out; }

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: #f8fffe;
    padding: 60px 0 0;
    color: var(--text-dark);
    position: relative;
    border-top: 2px solid var(--primary-green);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow-x: hidden;
}

.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-widget {
    margin-bottom: 2rem;
    height: 100%;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
    max-width: 100%;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    color: white;
}

.footer-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    word-break: break-word;
}

.contact-item i {
    color: var(--primary-green);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    margin-top: 2rem;
    background: #f1f8f4;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    color: var(--primary-green);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.border-radius-custom {
    border-radius: var(--radius-lg);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktops (1200px+) */
@media (min-width: 1200px) {
    .footer-section {
        padding: 80px 0 0;
    }
    
    .footer-widget {
        margin-bottom: 2.5rem;
    }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .about-title { font-size: 2.5rem; }
}

@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .about-title { font-size: 2.2rem; }
    .geometric-shape { display: none; }
    .blue-curved-shape { width: 50%; }
    .purple-side-shape { width: 20%; }
    
    .logo-img { height: 45px; }
    .dashboard-card { width: 280px; height: 280px; }
    .metric-card { min-width: 140px; }
    
    .footer-section { padding: 50px 0 0; }
    .footer-widget { margin-bottom: 2.5rem; }
}

/* Tablet Devices (768px - 991px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-section { padding-top: 100px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 1.8rem; }
    .about-title { font-size: 1.8rem; }
    .stats-number { font-size: 2.5rem; }
    
    .logo-img { height: 40px; }
    .dashboard-card { 
        width: 250px; 
        height: 250px; 
        margin: 0 auto;
        margin-top: 2rem; 
    }
    
    .metric-card { 
        position: relative !important; 
        top: auto !important; 
        right: auto !important; 
        bottom: auto !important; 
        left: auto !important; 
        margin: 1rem auto; 
    }
    
    .blue-curved-shape, .purple-side-shape { display: none; }
    
    /* Course Cards Tablet */
    .course-card {
        margin-bottom: 2rem;
    }
    
    .course-image {
        height: 220px;
    }
    
    .course-meta {
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* Placement Guide Tablet */
    .placement-steps .col-lg-1 {
        display: none !important;
    }
    
    .placement-step {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Interactive Map Guide Tablet */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .journey-map-container {
        min-height: 600px;
        margin: 4rem 0;
    }
    
    .map-background {
        padding: 3rem 1.5rem;
    }
    
    .journey-stops {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .stop-marker {
        top: -25px;
    }
    
    .marker-ring {
        width: 70px;
        height: 70px;
    }
    
    .marker-center {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .stop-card {
        padding: 2.5rem 1.5rem 1.5rem;
        margin-top: 35px;
    }
    
    .card-header h4 {
        font-size: 1.2rem;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-lg {
        min-width: 280px;
    }
    
    /* Footer Responsive */
    .footer-section {
        text-align: center;
        padding: 40px 0 0;
    }
    
    .footer-widget { margin-bottom: 2rem; }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social { justify-content: center; }
    .footer-contact { align-items: center; }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-links a:hover { padding-left: 0; }
    .footer-bottom .row { text-align: center; }
    .footer-copyright { margin-bottom: 1rem; }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 576px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .section-title { font-size: 1.6rem; }
    .about-title { font-size: 1.6rem; }
    
    .logo-img { height: 35px; }
    .stats-card { margin-bottom: 1rem; }
    .btn-primary-custom { padding: 10px 25px; font-size: 0.9rem; }
    .dashboard-card { width: 200px; height: 200px; }
    
    /* Course Cards Mobile */
    .course-card {
        margin-bottom: 2rem;
    }
    
    .course-image {
        height: 180px;
    }
    
    .course-content {
        padding: 1.25rem;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .course-stats {
        width: 100%;
    }
    
    .course-price {
        align-items: flex-start;
    }
    
    /* Placement Guide Mobile */
    .placement-steps .row {
        text-align: center;
    }
    
    .step-arrow {
        display: none !important;
    }
    
    .placement-step {
        margin-bottom: 1.5rem;
        padding: 1.25rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
    
    /* Interactive Map Guide Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .journey-map-container {
        min-height: 500px;
        margin: 3rem 0;
    }
    
    .map-background {
        padding: 2rem 1rem;
    }
    
    .journey-path {
        display: none; /* Hide SVG on mobile for simplicity */
    }
    
    .journey-stops {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stop-marker {
        top: -20px;
    }
    
    .marker-ring {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }
    
    .marker-center {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        top: -3px;
        right: -3px;
    }
    
    .stop-card {
        padding: 2rem 1.5rem 1.5rem;
        margin-top: 30px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .card-header h4 {
        font-size: 1.3rem;
    }
    
    .difficulty-badge {
        align-self: flex-start;
    }
    
    .stop-features {
        gap: 0.5rem;
    }
    
    .feature-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .map-decorations {
        opacity: 0.5; /* Reduce opacity on mobile */
    }
    
    .stat-card {
        padding: 2rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-sublabel {
        font-size: 0.85rem;
    }
    
    .cta-content {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-lg {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 260px;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .cta-trust-indicators {
        gap: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-section { padding: 30px 0 0; }
    .footer-widget { margin-bottom: 1.5rem; }
    .footer-title { font-size: 1rem; margin-bottom: 1rem; }
    .footer-description { font-size: 0.9rem; line-height: 1.6; }
    .footer-links a { font-size: 0.85rem; }
    
    .contact-item {
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .footer-social { gap: 0.5rem; }
    .footer-bottom { padding: 1rem 0; }
    .footer-copyright { font-size: 0.8rem; }
}

/* Small Mobile Devices (480px - 575px) */
@media (max-width: 480px) {
    .logo-img { height: 30px; }
    .hero-title { font-size: 1.5rem; }
    .navbar { padding: 0.5rem 0; }
    
    /* Course Cards Small Mobile */
    .course-image {
        height: 160px;
    }
    
    .course-content {
        padding: 1rem;
    }
    
    .course-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .course-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .course-stats {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .course-students,
    .course-rating {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .original-price {
        font-size: 0.8rem;
    }
    
    /* Placement Guide Small Mobile */
    .placement-step {
        padding: 1rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .step-description {
        font-size: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Interactive Map Guide Small Mobile */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .journey-map-container {
        min-height: 450px;
        margin: 2.5rem 0;
    }
    
    .map-background {
        padding: 1.5rem 0.75rem;
    }
    
    .stop-marker {
        top: -18px;
    }
    
    .marker-ring {
        width: 55px;
        height: 55px;
    }
    
    .marker-center {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        border-width: 2px;
    }
    
    .stop-card {
        padding: 1.5rem 1rem 1rem;
        margin-top: 28px;
    }
    
    .card-header h4 {
        font-size: 1.2rem;
    }
    
    .difficulty-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
    
    .stop-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-pill {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .stat-card {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .stat-sublabel {
        font-size: 0.8rem;
    }
    
    .cta-content {
        padding: 2rem 1rem;
    }
    
    .cta-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.95rem;
        min-width: 240px;
    }
    
    .trust-item {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .cta-trust-indicators {
        gap: 1rem;
    }
    
    .footer-section { padding: 25px 0 0; }
    .footer-section .container { padding-left: 15px; padding-right: 15px; }
    .footer-bottom { padding: 1rem 0; margin-top: 1rem; }
    .footer-logo-img { height: 40px; }
}

/* Extra Small Devices (360px - 479px) */
@media (max-width: 360px) {
    .logo-img { height: 25px; }
    .hero-title { font-size: 1.3rem; }
    
    /* Course Cards Extra Small */
    .course-image {
        height: 140px;
    }
    
    .course-content {
        padding: 0.75rem;
    }
    
    .course-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .course-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .course-instructor {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .course-meta {
        gap: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .course-students,
    .course-rating {
        font-size: 0.75rem;
    }
    
    .price {
        font-size: 1rem;
    }
    
    .original-price {
        font-size: 0.75rem;
    }
    
    .course-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }
    
    /* Placement Guide Extra Small */
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .placement-step {
        padding: 0.75rem 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-title {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .step-description {
        font-size: 0.7rem;
    }
    
    /* Interactive Map Guide Extra Small */
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .journey-map-container {
        min-height: 400px;
        margin: 2rem 0;
    }
    
    .map-background {
        padding: 1rem 0.5rem;
    }
    
    .stop-marker {
        top: -15px;
    }
    
    .marker-ring {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .marker-center {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-number {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        border-width: 2px;
        top: -2px;
        right: -2px;
    }
    
    .stop-card {
        padding: 1.25rem 0.75rem 0.75rem;
        margin-top: 25px;
    }
    
    .card-header {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
    }
    
    .difficulty-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .stop-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .feature-pill {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .floating-icon {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .map-decorations {
        opacity: 0.3;
    }
    
    .stat-card {
        padding: 1.25rem 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-sublabel {
        font-size: 0.75rem;
    }
    
    .cta-content {
        padding: 1.5rem 0.75rem;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    .trust-item {
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .cta-trust-indicators {
        gap: 0.75rem;
    }
    
    .footer-section { padding: 20px 0 0; }
    .footer-section .container { padding-left: 8px; padding-right: 8px; }
    .footer-widget { margin-bottom: 1rem; }
    .social-link { width: 32px; height: 32px; font-size: 0.8rem; }
    .footer-social { gap: 0.4rem; }
    .contact-item { max-width: 180px; font-size: 0.8rem; }
    .footer-copyright { font-size: 0.75rem; }
}

/* ===== ACCESSIBILITY & PERFORMANCE ===== */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .floating-animation,
    .slide-in-left,
    .slide-in-right,
    .slide-in-up {
        animation: none;
    }
    
    * {
        transition: none !important;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .stats-card,
    .feature-card,
    .testimonial-card {
        border-width: 2px;
    }
    
    .text-muted {
        color: var(--text-dark) !important;
    }
}

/* Print Styles */
@media print {
    .floating-animation,
    .metric-card,
    .geometric-shape,
    .blue-curved-shape,
    .purple-side-shape {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section,
    .stats-section,
    .about-section,
    .courses-section,
    .features-section,
    .testimonials-section,
    .cta-section {
        background: white !important;
        box-shadow: none !important;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

/* ===== LANGUAGE DROPDOWN STYLES ===== */
.language-dropdown {
    position: relative;
    margin-left: 1rem;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(46, 139, 87, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    min-width: 120px;
    justify-content: space-between;
}

.language-toggle:hover {
    background: rgba(46, 139, 87, 0.05);
    border-color: var(--primary-green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.language-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
}

.language-toggle[aria-expanded="true"] {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.language-toggle[aria-expanded="true"] .language-arrow {
    transform: rotate(180deg);
}

.language-flag {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.language-text {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.language-code {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    display: none;
}

.language-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    opacity: 0.7;
}

.language-menu {
    min-width: 200px;
    border: none;
    border-radius: var(--radius-md);
    padding: 8px 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    margin-top: 8px;
    animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.08), rgba(46, 139, 87, 0.12));
    color: var(--primary-green);
    transform: translateX(4px);
}

.language-option.active {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(46, 139, 87, 0.15));
    color: var(--primary-green);
    font-weight: 600;
}

.language-option.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.language-flag-item {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.language-info {
    flex: 1;
    min-width: 0;
}

.language-name {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 2px;
}

.language-code-small {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.language-check {
    color: var(--secondary-green);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .language-dropdown {
        margin-left: 0.5rem;
    }
    
    .language-toggle {
        padding: 8px 12px;
        min-width: 80px;
        gap: 6px;
    }
    
    .language-text {
        display: none;
    }
    
    .language-code {
        display: block;
    }
    
    .language-menu {
        min-width: 160px;
        right: 0;
        left: auto;
    }
    
    .language-option {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .language-name {
        font-size: 0.85rem;
    }
    
    .language-code-small {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .language-toggle {
        padding: 6px 10px;
        min-width: 70px;
        gap: 4px;
    }
    
    .language-flag {
        font-size: 1rem;
    }
    
    .language-code {
        font-size: 0.75rem;
    }
    
    .language-arrow {
        font-size: 0.6rem;
    }
    
    .language-menu {
        min-width: 140px;
    }
    
    .language-option {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .language-flag-item {
        font-size: 1.1rem;
    }
}
